@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
/*
300: light
400: regular
700: bold
*/

html,
body {
    margin:0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif, verdana, arial;
    color: #070707;
    font-size: 16px;
    line-height: 24px;
}

html {
    scroll-behavior: smooth;
}

.w-full {
    width: 100%;
}

a,
a:hover,
a:focus,
a:visited {
    outline:none;
    text-decoration: none;
}

.txt-light {
    font-weight:300;
}

.txt-regular {
    font-weight: 400;
}

.txt-bold {
    font-weight:700;
}

.bg-clr-black {
    background-color:#070707;
}

.bg-clr-white {
    background-color:#ffffff;
}

.bg-clr-grey {
    background-color:#ecf0f3;
}

.bg-clr-red {
    background-color: #ed1b24;
}

.bg-clr-green {
    background-color:#21e600;
}

.bg-clr-facebook {
    background-color: #0070bb;
}

.bg-clr-google-red {
    background-color: #f05a23;
}

.bg-clr-grad-gw {
    background-image: linear-gradient(to bottom, #070707, #ffffff);
}

.clr-default {
    color: #070707;
}

.clr-white {
    color: #ffffff;
}

.clr-grey {
    color: #BDCCD4;
}

.clr-red {
    color:#ed1b24;
}

.clr-green {
    color:#21e600;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.transition-03s {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.txt-shadow-dark {
    -webkit-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    -moz-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    -ms-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    -o-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.txt-note {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
}

.txt-disclaimer {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 16px;
}

.txt-source {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
}

ol,
ul {
    padding-left:20px;
}

.list-roman-lower {
    list-style-type: lower-roman;
}

.list-alpha-lower {
    list-style-type: lower-alpha;
}

.ahref-inline {
    outline: none;
    border: none;
    text-decoration: underline;
}

.btn-cust-container {
    display: inline-block;
}

.btn-cust {
    display: inline-block;
    margin: 20px auto;
    padding: 6px 30px;
    border: 2px solid rgba(0,0,0,0);
    text-align: center;
}

.btn-cust.bclr-white {
    border-color: #ffffff;
}

.btn-cust.bclr-black {
    border-color: #070707;
}

.btn-cust.bclr-green {
    border-color: #21e600;
}

.btn-cust.crounded {
    border-radius: 50px;
}

.btn-cust.bgclr-black-clr-green {
    background-color: #070707;
    color:#21e600;
}

.btn-cust.bgclr-black-clr-white {
    background-color: #070707;
    color:#ffffff;
}

.btn-cust.bgclr-green-clr-white {
    background-color: #21e600;
    color:#ffffff;
}

.btn-cust.bgclr-green-clr-black {
    background-color: #21e600;
    color:#070707;
}

.btn-cust.bgclr-black-clr-green:hover {
    border: 2px solid #070707;
    background-color: #21e600;
    color:#070707;
}

.btn-cust.bgclr-black-clr-white:hover {
    border: 2px solid #ffffff;
    background-color: #21e600;
    color:#ffffff;
}

.btn-cust.bgclr-green-clr-white:hover {
    border: 2px solid #21e600;
    background-color: #ffffff;
    color:#21e600;
}

.btn-cust.bgclr-green-clr-black:hover {
    border: 2px solid #21e600;
    background-color: #070707;
    color:#21e600;
}

.btn-cust a {
    outline: none;
    text-decoration: none;
}

/* nav Start */
#logo-brand {
    display: block;
}

#logo-brand-xs {
    display: block;
}

#sec-nav-main {
    background-color: transparent; /*#070707*/
    box-shadow: 0px 0px 10px rgba(0,0,0,0.0);

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-cust {
    padding: 0px 0px;
}

.navbar-main-btn-group {
    margin-top:20px; 

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#navbar-main .nav-item {
    
}

#navbar-main .nav-item a,
#navbar-main .nav-item a:hover,
#navbar-main .nav-item a:focus {
    text-decoration: none;
    outline: none;
}

.navbar-toggler {
    outline: none !important;
}

.btn-mmenu {
    position: relative;
    padding: 10px 14px;
    height: auto;
    border-radius: 8px;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.btn-mmenu-mt-xs {
    margin-top: 0px;
}

.btn-mmenu-sub {
    position: relative;
    padding: 10px 20px;
    height: auto;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.caption-mmenu {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color:#BDCCD4;
    letter-spacing: 2px;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.caption-mmenu.lang-bm {
    font-size: 14px;
    line-height: 20px;
}

#btn-mmenu-prepaid.btn-mmenu {
    padding: 5px 14px;
    height: auto;
    border:1px solid #21e600;
    border-radius: 50px;
    
}

#btn-mmenu-prepaid .caption-mmenu,
#btn-mmenu-more .caption-mmenu {
    color:#21e600;
}

.ico-mmenu {
    padding: 3px 0px 3px 10px;
}

.ico-mmenu .caption-mmenu {
    height: 30px;
}

.ico-mmenu .caption-mmenu img {
    height: 100%;
}

.btn-mmenu:hover .caption-mmenu {
    color:#21e600;
}

.btn-mmenu.active.isBtn {
    cursor: default;
}

.btn-mmenu.active {
    /*background-color:#21e600;*/
}

.btn-mmenu.active .caption-mmenu {
    color:#21e600;
}

.btn-mmenu-sub:hover .caption-mmenu {
    color:#21e600;
}

.btn-mmenu-sub.active.isBtn {
    cursor: default;
}

.btn-mmenu-sub.active {
    /*border-bottom:1px solid #21e600;*/
}

.btn-mmenu-sub.active .caption-mmenu {
    color:#21e600 !important;
}

.navbar-brand-logo {
    position: relative;
    overflow: hidden;
    height: 40px;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand-logo .logo-brand-group img {
    height: 40px;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo-brand-group {
    position: relative;
    top: 0%;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
/*
.dropdown:hover>.dropdown-menu {
    display: block;
    -webkit-animation: anim-dropdown 0.3s ease-out 0s forwards;
    -moz-animation: anim-dropdown 0.3s ease-out 0s forwards;
    -ms-animation: anim-dropdown 0.3s ease-out 0s forwards;
    -o-animation: anim-dropdown 0.3s ease-out 0s forwards;
    animation: anim-dropdown 0.3s ease-out 0s forwards;
}

.dropdown-menu {
    
}

@-webkit-keyframes anim-dropdown {
    0% {
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

@-moz-keyframes anim-dropdown {
    0% {
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

@-ms-keyframes anim-dropdown {
    0% {
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

@-o-keyframes anim-dropdown {
    0% {
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

@keyframes anim-dropdown {
    0% {
        opacity: 0;
        margin-top: 10px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}


*/

.dropdown-toggle::after {
    display: none;
}

.menu-lang-container {
    position: absolute;
    top:60%;
    right:0px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    padding:10px 30px 10px 20px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color:#79772a;
    color:#ffffff;
}

.menu-lang-container-collapsed {
    display:inline-block;
    padding:10px 20px;
    border-radius: 8px;
    background-color:#79772a;
    color:#ffffff;
}

.lbl-lang {
    color:#ffffff;
}

.lbl-lang.active {
    text-decoration: underline;
}

a.lbl-lang,
a:hover.lbl-lang,
a:visited.lbl-lang,
a:focus.lbl-lang {
    color:#ffffff;
}

.dropdown-menu {
    padding:.5rem;
    min-width: 16rem;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(6,28,33,0.8), rgba(16,37,42,0.9));
}

.breadcrumb-container .breadcrumb {
    padding:0px;
    background-color: transparent;
}

.breadcrumb-container .breadcrumb-item::before {
    font-family: 'FontAwesome';
    content: "\f105";
}

.breadcrumb-container .breadcrumb-item:first-child:before {
    font-family: 'FontAwesome';
    content: "";
}

.row-dropdown {
    margin-left: 0px;
    margin-right: 0px;
}

.col-dropdown-cust {
    position: relative;
    padding-left:5px;
    padding-right:5px;
}

.btn-cust-menu-login {
    margin: auto auto 10px auto;
    border-radius: 4px;
    border:none;
    width: 100%;
    font-size: 14px;
}

#btn-menu-login-facebook.btn-cust-menu-login,
#btn-menu-login-google.btn-cust-menu-login {
    padding: 5px;
    font-size: 12px;
    line-height: 12px;
    color: #ffffff;
}

.txt-note-dropdown {
    font-size: 12px;
    line-height: 18px;
}

.btn-cust-header-signup {
    position: absolute;
    right:10px;
    bottom: 0px;
}

.divider-dropdown {
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.col-dropdown-cta-cart {

}

.col-dropdown-cta-cart:first-child {
    border-right: 1px solid #ffffff;
}

.btn-dropdown-cta-cart {
    font-size: 14px;
}

.card-dropdown-cart-container {

}

.card-dropdown-cart {
    position: relative;
    min-height: 70px;
}

.card-dropdown-cart-prod-close {
    position: absolute;
    right: 0px;
    top: 5px;
    font-size: 12px;
    line-height: 12px;
}

.card-dropdown-cart-prod-close a,
.card-dropdown-cart-prod-close a:hover,
.card-dropdown-cart-prod-close a:focus,
.card-dropdown-cart-prod-close a:visited {
    color:#ffffff;
}

.card-dropdown-cart-prod-tmb {
    position: absolute;
    max-width: 90px;
}

.card-dropdown-cart-prod-tmb img {
    width: 100%;
}

.card-dropdown-cart-prod-detail {
    padding-left: 94px;
}

.card-dropdown-cart-prod-total {
    font-size: 14px;
}

.card-dropdown-cart-prod-title {
    font-size: 12px
}

.dropdown-menu-cust {

}

#dropdown-cont-cart.dropdown-menu-cust {
    width: 280px;
}
/* nav End */

/* nav sub Start */
.efx-trans-all {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav-menu-secondary-container {
    display: none;
}

.nav-menu-secondary {
    
}

.nav-menu-secondary-group {
    position: fixed;
    top: 0px;
    right: -300px;
    padding:10px 30px 30px 30px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
}

.nav-menu-secondary-bg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    z-index: 9990;
}

#nav-menu-secondary.active {
}

#nav-menu-secondary.active .nav-menu-secondary-group {
    right: 0px;
}

#nav-menu-secondary.active .nav-menu-secondary-bg {
    opacity: 1;
}

.btn-nav-menu-secondary {
    padding: 5px;
}

#btn-mmenu-more-close.btn-nav-menu-secondary {
    font-size: 30px;
}

#btn-mmenu-more-close.btn-nav-menu-secondary:hover,
.btn-nav-menu-secondary:hover {
    color:#21e600;
}

.btn-nav-menu-secondary.active {
    color:#21e600;
    cursor: default;
}

.pb-nav-menu-secondary {
    padding-bottom: 30px;
}

.nav-menu-secondary-connect {
    margin: 30px auto;
}
/* nav sub End */

.pg-space-top {
    height: 80px;
}

.keyvis-container {
    height: 580px;
}

#sec-keyvis-home {
    background: url('../images/home/keyvis-main.jpg') no-repeat center center;
    background-size: cover;
}

.section {
    position: relative;
    margin: auto;
    padding: 50px 0px 50px 0px;
    /*border-bottom: 1px solid #818b8c;*/
}

.e-fade-in {
    opacity: 0;
    position: relative;
    top: 40px;
}

.e-fade-in.show {
    opacity: 1;
    top: 0px;

    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.section-body-container {
    position: relative;
    top:-80px;
}

.section.section-keyvis {
    margin-top: 100px;
    width: 100%;
    height: 380px;
}

.section.section-keyvis-card {
    padding: 0px 0px 40px 0px;
}

.keyvis-card-info {
    padding: 30px 50px;
    border-bottom: 10px solid #313131;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    background-color: #ffffff;
}

.isBtn {
    cursor:pointer;
}

.mp-0 {
    margin: 0px !important;
    padding: 0px !important;
}

.ptb-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.pg-h1 {
    position: absolute;
    opacity: 0;
}

h1 {
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
    color: #4b4b49;
}

h2  {
    margin: 0px 0px;
    font-size: 36px;
    line-height: 46px;
    font-weight: normal;
}

.sec-title-body h1,
.sec-title-body h2 {
    margin: 0px 0px;
    font-size: 46px;
    line-height: 56px;
    
}

.sec-title-body h3 {
    margin: 0px 0px;
    font-size: 36px;
    line-height: 46px;
    
}

.sec-title-container {
    margin-bottom: 20px;
}

.sec-title-body {
    position: relative;
    margin-bottom: 30px;
}

.sec-title-main {
    margin: 0px 100px;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: #FF2121;
}

.sec-title-box {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 30px;
    background-color: #C90000;

    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
}

.title-box-left {
    left: 0px;
}

.title-box-right {
    right:0px;
}

.sec-img-container {
    margin: auto;
}

.sec-img-container img {
    width: 100%;
}

.sec-desc-main {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 28px;
}

.sec-body-container {

}

.sec-content-title-container {

}

.sec-content-title {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
}

.sec-txt {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 26px;
}

.sec-body-desc {
    
}

.footer-part {
    display: inline-block;
    font-size: 14px;
}

.part-left {
    float:left;
    text-align: left;
}

.part-right {
    float:right;
    text-align: right;
}

.section.section-goto {
    padding: 0px 0px 0px 0px;
}

.section.section-goto .sec-body-container {
    text-align: center;
}

.btn-box-gen {
    display: inline-block;
    margin: auto;
    padding: 10px 40px;
    border: 2px solid #C90000;
    background-color: #ffffff;
    color:#C90000;
    text-align: center;
    font-weight: 600;

    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.btn-box-gen:hover {
    background-color: #C90000;
    color:#ffffff;
}

.link-email,
.link-email:hover,
.link-email:visited {
    border: none;
    outline: none;
    color:#FF2121;
    text-decoration: underline;
}

.embed-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    background-color: #313131;
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
} 
    
.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
    position: absolute; top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}

.alink-footer,
.alink-footer:visited {
    color:#ffffff;
    text-decoration: none;
    border: none;
    outline: none;
}

.alink-footer:hover {
    color:#FF2121;
    text-decoration: none;
    border: none;
    outline: none;
}

.progressBar {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: rgba(255,255,255,0.5);
    z-index: 20;
}

.theBar {
    width:100%;
    height:6px;
    background-color:#FF2121;
}

.box-container {

}

.box-body {
    padding:30px;
}

.box-title-panel {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: normal;
    text-transform: uppercase;
}

#sec-panel-shariah .box-title-panel {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: normal;
    text-transform: uppercase;
}

.box-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #21e600;
    font-size: 22px;
    font-weight: normal;
    text-transform: uppercase;
}
    
.box-desc {

}

.box-desc ul {
    padding-left: 20px;
}

.box-shadow-cust {
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.exp-card {

}

.exp-question-container {
    position: relative;
}

.btn-exp-question {

}

.exp-question-num {
    position: absolute;
}

.exp-question {
    padding-right: 40px;
    font-size: 22px;
    font-weight: normal;
}

.exp-btn-expand {
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    padding: 4px;
    width: 32px;
    height: 32px;
    background-color: #21e600;
    color: #ffffff;
    text-align: center;
}

.exp-answer-container {
    position: relative;
    overflow: hidden;
    height: 0px;
}

.exp-answer {
    padding: 15px;
    border-top: 3px solid #21e600;
}

.expand .exp-question {
    margin-bottom: 15px;
}

/* table Start */
.space-h-15 {
    clear: both;
    height: 15px;
}

.tb-general-container {
    border-top: 4px solid #21e600;
}

.tb-general {

}

.tb-general-card {
    padding: 0px 20px;
}

.tb-general-card:nth-child(even) {
    background-color: #F1F1E9;
}

.row-tb-general {
    border-bottom: 1px solid #F1F1E9;
}

.col-tb-general {
    padding: 10px 20px;
}

.col-tb-general:first-child {
    padding: 10px 20px;
    border-right: 1px solid #21e600;
}
/* table End */

.sec-title-h3 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 40px;
}

/* prepaid Start */
#sec-package-prepaid.section {
    background-image: linear-gradient(to right, #01fffd, #20e708);
}

#slick-package-prepaid.slick-slider-container {
    margin: 40px auto 40px auto;
}

.slide-package-container {

}

.slide-package {
    position: relative;
    margin: 30px 15px 15px 15px;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
}

.slide-package-popular {
    position: absolute;
    top: -20px;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 100%;
    z-index: 1;
}

.slide-package-popular {
    margin-top: 0px;
    padding:10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.slide-package-popular .slide-package-desc {
    margin-bottom: 0px;
}

.slide-package-body {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 30px;
    background-color: #ffffff;
}

.slide-package-price {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 44px;
}

.slide-package-desc {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
}

.slide-package-card {
    margin-top: 30px;
    margin-bottom: 30px;
}

.slide-package-card img {
    width: 100%;
}

.package-card {
    position: relative;
    margin: auto;
    padding: 15px;
    width: 200px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
}

#package-prepaid-2000 .package-card {
    background: url("../images/landing/bg-package-prepaid-1.jpg") no-repeat center center;
    background-size: cover;
}

#package-prepaid-5000 .package-card {
    background: url("../images/landing/bg-package-prepaid-2.jpg") no-repeat center center;
    background-size: cover;
}

#package-prepaid-10000 .package-card {
    background: url("../images/landing/bg-package-prepaid-3.jpg") no-repeat center center;
    background-size: cover;
}

.package-card-category {
    font-size: 10px;
    line-height: 10px;
}

.package-card-value {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 24px;
    line-height: 24px;
}

.package-card-value-RM {
    font-size: 16px;
    line-height: 16px;
}

.slide-package-footer {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 15px 30px;
    background-color: #061c20;
}

.btn-cta-package-buy {
    font-size: 28px;
    line-height: 28px;
}

.btn-cta-package-buy.clr-green:hover {
    color:#ffffff;
}

a .btn-cta-package-buy {
    outline: none;
    text-decoration: none;
}

.panel-package-prepaid-quote {
    position: relative;
    border-radius: 8px;
    background-color: #061c20;
    text-align: center;
}

.col-prepaid-quote-cust {
}

.prepaid-quote-txt {
    margin: auto 50px auto auto;
    display: inline-block;
}

.prepaid-quote-price {
    font-size: 28px;
    line-height: 28px;
}
/* prepaid End */

/* sitemap Start */
#sec-sitemap.section {
    background-color: #071c21;
}

.col-sitemap-cust {
    border-left: 1px dotted #818b8c;;
}

.sitemap-card {

}

.sitemap-card-body {

}

.sitemap-card-body-sub-1 {

}

.sitemap-card-title {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
}

.sitemap-card-desc {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
}

.sitemap-card-btn-group {
    margin: 20px auto;
}

.sitemap-card-btn-group-connect {
    margin: 0px auto 20px auto;
}

.btn-sitemap {

}

.btn-sitemap a,
.btn-sitemap a:visited,
.btn-sitemap a:focus {
    color: #BDCCD4;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.btn-sitemap a:hover {
    color: #ffffff;
}

.social-btn-group {
    margin: 10px auto;
}

.btn-social {
    display: inline-block;
    position: relative;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #21e600;
}

.btn-social a,
.btn-social a:hover,
.btn-social a:visited,
.btn-social a:focus {
    color: #070707;
    text-decoration: none;
}

.btn-social i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 20px;
}

#btn-newsletter-subscribe.btn-outline-secondary {
    color: #070707;
    border-radius: 0px;
    border-color: transparent;
    background-color: #21e600;
}

.input-group>.custom-select:not(:last-child), 
.input-group>.form-control:not(:last-child) {
    border-radius: 0px;
}

/* sitemap End */

/* footer Start */
#sec-footer.section {
    padding: 30px 0px;
    border-bottom: 10px solid #ffffff;
    background-image: linear-gradient(to bottom, #e8edf0, #ffffff, #ffffff);
    background-color: #ffffff;
    color: #333333;
}

.col-footer-cust {

}

.col-footer-cust:first-child {
    border-right: 1px dotted #818b8c;
}

.footer-col {
    display: block;
    position: relative;
    height: 100%;
}

.footer-logo {

}

.footer-logo img {
    width: 100%;
}

.footer-txt-copyright {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
}

.footer-txt-developed {
    border-top: 1px solid #ededed;
    width: 100%;
    font-size: 12px;
    line-height: 16px;
}
/* footer End */

/* error Start */
body.pg-error {
    padding: 50px;
    background: url('../images/bg-err-404.jpg') no-repeat center center;
    background-size: cover;
}

#sec-error.section {
    border-bottom: none;
}

.error-body {
}

.error-title-main {
    margin-bottom: 30px;
    font-size: 140px;
    line-height: 180px;
}

.error-form-container {
    margin: 40px auto;
    max-width: 300px;
}
/* error End */

/* modal Start */
.modal-ahb .modal-content {
    padding: 20px 40px;
    background: url(../images/modal-bg.png) no-repeat right bottom;
    background-size: contain;
    background-color: #f1f1e8;
}

.modal-ahb .modal-header,
.modal-ahb .modal-body,
.modal-ahb .modal-footer {
    padding:0px;
}

.modal-ahb .modal-header .close {
    font-size: 50px;
    font-weight: normal;
    outline: none;
}

.modal-ahb .modal-title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 32px;
}

.modal-ahb .modal-title-sub {
    font-size: 20px;
    line-height: 26px;
}

.btn-modal-ok-cust {
    padding: 10px 40px;
    border-radius: 20px;
    background-color: #21e600;
    color: #ffffff;
}
/* modal End */

/* slick Start */
.slick-dots {
    bottom:0px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #21e600;
    background-color: #21e600;
}

#slide-package-prepaid .slick-dots {
    position: relative;
}
/* slick End */

@media (max-width:320px) {
    .footer-member-container .footer-member-logo img {
        width:auto;
        height:20px;
    }
}

@media (max-width:480px) {
    html,
    body {
        font-size: 14px;
        line-height: 22px;
    }

    .section {
        padding:20px 0px 20px 0px;
    }

    .section.section-keyvis {
        height: 200px;
    }

    .section.section-goto {
        padding: 0px 0px 30px 0px;
    }

    h1 {
        font-size:28px;
        line-height: 38px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
        padding: 0px 20px;
    }

    .sec-title-body h1,
    .sec-title-body h2 {
        font-size: 30px;
        line-height: 38px;
        padding: 0px 0px;
    }

    .sec-title-body h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .keyvis-container {
        height: auto;
    }

    #sec-keyvis-home {
        background: url('../images/home/keyvis-main-xs.jpg') no-repeat center center;
        background-position-y: top;
        background-size: contain;
    }

    .sec-desc-main {
        font-size:18px;
        line-height: 24px;
    }

    .box-body {
        padding: 20px;
    }

    .exp-question {
        font-size: 18px;
        line-height: 24px;
    }

    .txt-note {
        font-size: 12px;
        line-height: 16px;
    }
    
    .txt-source {
        font-size: 12px;
        line-height: 16px;
    }

    .footer-txt-developed {
        border-top: none;
    }

    .footer-part {
        font-size: 11px;
    }

    .footer-txt-copyright {
        position: relative;
        top:10px;
        bottom: 0px;
    }

    .modal-ahb .modal-content {
        padding:20px;
    }

    .col-tb-general {
        padding: 10px 10px;
    }
    
    .col-tb-general:first-child {
        padding: 10px 10px;
    }

    
}

@media (min-width:481px) and (max-width:640px) {
    html,
    body {
        font-size: 14px;
        line-height: 22px;
    }

    .section {
        padding:20px 0px 20px 0px;
    }

    .section.section-keyvis {
        height: 250px;
    }

    .section.section-goto {
        padding: 0px 0px 30px 0px;
    }

    h1 {
        font-size:28px;
        line-height: 38px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
        padding: 0px 20px;
    }

    .sec-title-body h1,
    .sec-title-body h2 {
        font-size: 30px;
        line-height: 38px;
        padding: 0px 0px;
    }

    .sec-title-body h3 {
        font-size: 25px;
        line-height: 30px;
        padding: 0px 0px;
    }

    .keyvis-container {
        height: 280px;
    }

    .sec-desc-main {
        font-size:18px;
        line-height: 24px;
    }

    .box-body {
        padding: 20px;
    }

    .exp-question {
        font-size: 20px;
        line-height: 26px;
    }

    .footer-part {
        font-size: 12px;
    }

    .col-member {
        margin-top:15px;
        margin-bottom:15px;
        padding:0px 15px;
    }

    .col-member:nth-child(2) {
        border-right: none;
    }

    .col-member:nth-child(3) {
        padding:15px;
        border-top: 2px solid #070707;
        border-bottom: 2px solid #070707;
        border-right: none;
    }

    .footer-txt-developed {
        border-top: none;
    }

    .footer-txt-copyright {
        position: relative;
        top:10px;
        bottom: 0px;
    }

    .footer-member-logo img {
        width:auto;
        height: 40px;
    }

    .modal-ahb .modal-content {
        padding:20px 30px;
    }
}

@media (min-width:641px) and (max-width:768px) {
    html,
    body {
        font-size: 16px;
        line-height: 24px;
    }

    .section {
        padding:30px 0px 30px 0px;
    }

    .section.section-keyvis {
        height: 300px;
    }

    .section.section-goto {
        padding: 0px 0px 30px 0px;
    }

    h1 {
        font-size:36px;
        line-height: 46px;
    }

    h2 {
        font-size:35px;
        line-height: 42px;
    }

    .sec-title-body h1,
    .sec-title-body h2 {
        font-size:35px;
        line-height: 42px;
    }

    .sec-title-body h3 {
        font-size:30px;
        line-height: 36px;
    }

    .keyvis-container {
        height: 300px;
    }

    .box-body {
        padding: 20px;
    }

    .exp-question {
        font-size: 20px;
        line-height: 26px;
    }

    .footer-part {
        font-size: 12px;
    }

    .col-member {
        padding-left:15px;
        padding-right:15px;
    }

    .footer-txt-developed {
        border-top: none;
    }

    .footer-member-logo {
        margin-bottom:4px;
    }

    .footer-member-logo img {
        width:auto;
        height: 12px;
    }
}

@media (min-width:769px) and (max-width:992px) {
    
}

@media (min-width:769px) and (max-width:1024px) {
    #navbar-main .nav-item {
        padding: 0px 15px;
    }

    .keyvis-container {
        height: 420px;
    }

    .col-member {
        padding-left:25px;
        padding-right:25px;
    }

    .footer-member-logo img {
        width:auto;
        height: 20px;
    }
}

@media (min-width:993px) and (max-width:1200px) {

}

@media (max-width: 1366px) {
    .caption-mmenu {
        letter-spacing: 1px;
    }
}

@media (max-width:1024px) {
    #sec-nav-main {
        padding:0px;
        background-color: #070707;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
    }

    .dropdown-menu {
        padding: 1px 0px;
    }

    .btn-mmenu-sub {
        background-color: #ffffff;
    }

    .caption-mmenu {
        text-align: center;
    }

    #navbar-main {
        background-color: #ffffff;
    }
}

@media (max-width:990px) {
    #sec-nav-main #logo-brand {
        display: none;
        opacity: 0;
    }
    
    #sec-nav-main #logo-brand-xs {
        display: block;
        opacity: 1;
    }
    
    #sec-nav-main .navbar-brand-logo,
    #sec-nav-main .navbar-brand-logo .logo-brand-group img {
        height: 30px;
        width: auto;
    }

    .pg-space-top {
        height: 40px;
    }
    
    .keyvis-bg-container {
        top:40px !important;
    }

    .navbar-brand-logo {
        
    }

    #navbar-main {
        position: relative;
        border-top: 1px solid #ededed;
        background-color: #ffffff;
    }

    .caption-mmenu {
        color:#070707;
        text-align: left;
    }

    .btn-mmenu {
        padding: 5px 14px;
        height: auto;
    }

    .btn-mmenu-mt-xs {
        margin-top: 10px;
    }

    .dropdown-menu {
        /*padding: .5rem;*/
        min-width: 16rem;
        background-color: rgba(0,0,0,0.0);
    }

    .section.section-keyvis {
        margin-top: 40px;
    }

    .section-body-container {
        top:0px;
    }

    .keyvis-card-info {
        padding: 30px 0px;
        border-bottom: none;
        box-shadow: 0 4px 2px -2px rgba(0,0,0,0.2);
    }

    .sec-title-body {
        display: block;
    }

    h2 {
        margin: 0px;
    }

    .sec-title-body h1,
    .sec-title-body h2 {
        margin: 0px;
    }

    .footer-part {
        display: block;
    }
    
    .part-left,
    .part-right {
        float:none;
        text-align: center;
    }
}

@media (max-width:768px) {
    
    .col-sitemap-cust {
        margin-top: 10px;
        border-left: none;
        border-bottom:1px dotted #818b8c;
    }
}

@media (max-width:640px) {
    .panel-package-prepaid-quote {
        padding: 15px;
    }

    .prepaid-quote-txt {
        margin: auto;
    }

    .btn-cta-prepaid-quote.btn-cust {
        margin: 20px auto 10px auto;
    }
}

@media (min-width:1201px) {

}

@media (min-width: 1441px) {
    .navbar-cust {
        padding: 20px 20px 0px 20px;
    }
}

@media (min-width: 1600px) {
    .navbar-cust {
        padding: 20px 100px 0px 100px;
    }
}

@media (min-width: 1800px) {
    .navbar-cust {
        padding: 20px 200px 0px 200px;
    }
}

@media (min-width:991px) {
    #sec-nav-main.compact {
        background-color: #071c21;
        background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0));
        box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
    }

    #sec-nav-main.compact .navbar-cust {
        /*padding-top: 4px;*/
    }
    
    #sec-nav-main.compact #logo-brand {
        
    }
    
    #sec-nav-main.compact #logo-brand-xs {
        
    }
    
    #sec-nav-main.compact .navbar-brand-logo  {
        /*height: 30px;*/
    }

    #sec-nav-main.compact .logo-brand-group img {
        /*height: 30px;*/
        width: auto;
    }

    #sec-nav-main.compact .logo-brand-group {
        /*top:-100%;*/
    }
    
    #sec-nav-main.compact .navbar-main-btn-group {
        /*margin-top: 0px;
        border-top: none;*/
    }
    
    #sec-nav-main.compact .btn-mmenu {
        /*height: auto;*/
    }
    
    #sec-nav-main.compact .caption-mmenu {
        color: #ffffff;
        text-shadow: none;
        /*font-size:14px;*/
    }

    #sec-nav-main.compact .lbl-lang {
        /*font-size:14px;*/
    }

    #sec-nav-main.compact .btn-mmenu,
    #sec-nav-main.compact .menu-lang-container {
        /*padding-top:2px;
        padding-bottom:2px;*/
    }
    
    #sec-nav-main.compact .caption-mmenu:hover {
        color: #21e600;
    }

    #sec-nav-main.compact .btn-mmenu.active .caption-mmenu {
        color: #21e600;
    }

    #sec-nav-main.compact .menu-lang-container {
        /*top:50%;*/
    }

    #sec-nav-main.compact #btn-mmenu-prepaid .caption-mmenu,
    #sec-nav-main.compact #btn-mmenu-more .caption-mmenu {
        color:#21e600;
    }

    #sec-nav-main.compact .ico-mmenu {
        /*padding: 0px 0px 0px 10px;*/
    }

    #sec-nav-main.compact .ico-mmenu .caption-mmenu {
        /*height: 26px;*/
    }

    #sec-nav-main.compact .ico-mmenu .caption-mmenu img {
        /*height:100%;*/
    }
}

@media (min-width: 1025px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        -webkit-animation: anim-dropdown 0.3s ease-out 0s forwards;
        -moz-animation: anim-dropdown 0.3s ease-out 0s forwards;
        -ms-animation: anim-dropdown 0.3s ease-out 0s forwards;
        -o-animation: anim-dropdown 0.3s ease-out 0s forwards;
        animation: anim-dropdown 0.3s ease-out 0s forwards;
    }
    
    .dropdown-menu {
        
    }
    
    @-webkit-keyframes anim-dropdown {
        0% {
            opacity: 0;
            margin-top: 10px;
        }
        100% {
            opacity: 1;
            margin-top: 0px;
        }
    }
    
    @-moz-keyframes anim-dropdown {
        0% {
            opacity: 0;
            margin-top: 10px;
        }
        100% {
            opacity: 1;
            margin-top: 0px;
        }
    }
    
    @-ms-keyframes anim-dropdown {
        0% {
            opacity: 0;
            margin-top: 10px;
        }
        100% {
            opacity: 1;
            margin-top: 0px;
        }
    }
    
    @-o-keyframes anim-dropdown {
        0% {
            opacity: 0;
            margin-top: 10px;
        }
        100% {
            opacity: 1;
            margin-top: 0px;
        }
    }
    
    @keyframes anim-dropdown {
        0% {
            opacity: 0;
            margin-top: 10px;
        }
        100% {
            opacity: 1;
            margin-top: 0px;
        }
    }
}

