@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,700&display=swap');
/*
400: regular
500: medium
600: semi bold
700: bold
*/

html,
body {
    margin:0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: 'Work Sans', verdana, arial;
    color: #4B4B49;
    font-size: 16px;
    line-height: 24px;
}

html {
    scroll-behavior: smooth;
}

.w-max-600 {
    margin: auto !important;
    width: 100% !important;
    max-width: 600px !important;
}

.w-max-800 {
    margin: auto !important;
    width: 100% !important;
    max-width: 800px !important;
}

.w-max-900 {
    margin: auto !important;
    width: 100% !important;
    max-width: 900px !important;
}

.w-max-1000 {
    margin: auto !important;
    width: 100% !important;
    max-width: 1000px !important;
}

.w-max-1100 {
    margin: auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

.w-max-1200 {
    margin: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
}

.divider-line {
    width: 100%;
    height: 2px;
    background-color: #F1F1E9;
}

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

.bg-clr-green {
    background-color:#93b50a !important;
}

.bg-clr-green-light {
    background-color: #f1f1e8 !important;
}

.bg-clr-brown-light {
    background-color: #F1F1E9 !important;
}

.bg-clr-grey-2 {
    background-color:#f2f2f2 !important;
}

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

.bg-clr-green-gradient {
    background-image: linear-gradient(to right, #345705, #66af0a) !important;
}

.clr-default {
    color: #4B4B49 !important;
}

.clr-white {
    color: #ffffff !important;
}

.clr-green {
    color:#66AE0A !important;
}

.clr-grey {
    color: #7d7d7d !important;
}

.clr-grey-dark {
    color:#4B4B49 !important;
}

.float-right {
    float: right !important;
}

.border-radius-tl-10 {
    border-top-left-radius: 10px;
}

.border-radius-tr-10 {
    border-top-right-radius: 10px;
}

.txt-regular {
    font-weight: normal !important;
}

.txt-bold {
    font-weight: bold !important;
}

.txt-center {
    text-align: center;
}

.txt-left {
    text-align: left;
}

.txt-right {
    text-align: right;
}

.border-bottom-grey-light {
    border-bottom: 1px solid #F1F1E9;
}

.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-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;
}

.txt-upper {
    text-transform: uppercase;
}

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;
}

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

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

#sec-nav-main {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);

    -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 20px;
    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-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: 18px;
    line-height: 22px;
    color:#313131;

    -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-lang .caption-mmenu {
    font-size: 16px;
    line-height: 20px;
}

.btn-mmenu:hover .caption-mmenu {
    color:#93b50a;
}

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

.btn-mmenu.active {
    background-color:#93b50a;
}

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

.btn-mmenu-sub:hover .caption-mmenu {
    color:#93b50a;
}

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

.btn-mmenu-sub.active {
    border-radius: 6px;
    /* border-bottom: 1px solid #93b50a; */
    background-color: rgba(0, 0, 0, 0.02);
}

.btn-mmenu-sub.active .caption-mmenu {
    color:#93b50a;
}

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

    -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: 70px;

    -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;
}

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

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

    padding:10px 20px 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;
}

.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: "";
}


@media (max-width: 640px) {
    .navbar-main-btn-group {
        gap: 5px;
        margin-bottom: 20px;
    }
}

@media (min-width:991px) {
    #sec-nav-main.compact {
        background-color: #ffffff;
        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.3);
    }
    
    #sec-nav-main.compact #logo-brand {
        
    }
    
    #sec-nav-main.compact #logo-brand-xs {
        
    }
    
    #sec-nav-main.compact .navbar-brand-logo,
    #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: #313131;
        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: #93b50a;
    }

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

    #sec-nav-main.compact .btn-mmenu-sub.active .caption-mmenu {
        color: #93b50a;
    }

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

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

.section {
    position: relative;
    margin: auto;
    padding: 40px 0px 40px 0px;
}

.e-fade-in {
    opacity: 0;
}

.e-fade-in.show {
    opacity: 1;

    -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;
}

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

h2  {
    margin: 0px 0px;
    font-size: 34px;
    line-height: 44px;
    font-weight: normal;
}

.sec-content-container {
    margin-bottom: 40px;
}

.sec-content-container:last-child {
    margin-bottom: 10px;
}

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

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

.sec-title-body {
    display: inline-block;
    position: relative;
    margin-bottom: 26px;
}

.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-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-content-title-2  {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #909090;
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    
}

.cont-tmb-container {
    margin: 30px 0px;
    width: 100%;
    max-width: 600px;
}

.cont-tmb-container img {
    margin: auto;
    width: 100%;
}

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

.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;
    line-height: 36px;
    font-weight: normal;
    text-transform: uppercase;
}

.box-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #93b50a;
    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 {
    position: relative;
}

.exp-card-col {
}

.exp-card-col-photo {
    position: absolute;
    top: 30px;
    margin: auto;
    max-width: 140px;
}

.exp-card-col-photo img {
    width: 100%;
}

.exp-card-col-detail {
    padding-left: 150px;
    min-height: 150px;
}

.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: #93b50a;
    color: #ffffff;
    text-align: center;
}

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

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

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

/* keyvis Start */
.keyvis-container {
    height: 180px;
}

@media (max-width: 640px) {
    .keyvis-container {
        height: auto;
    }
}

@media (min-width: 641px) and (max-width: 820px) {
    .keyvis-container {
        height: 180px;
    }
}
/* keyvis End */

/* keyvis tagline Start */
.keyvis-tagline-container {
    margin-top: 0px;
}

.keyvis-tagline-title-main {
    margin-bottom: 10px;
    font-size: 46px;
    line-height: 46px;
    font-weight: bold;
    color: #ffffff;
}

.keyvis-tagline-title {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 40px;
    color: #ffffff;
}

.keyvis-tagline-divider {
    margin: 10px 0px;
    width: 100%;
    border-bottom: 2px solid transparent;
}

.keyvis-tagline-desc {
    color: #ffffff;
}

.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: #ffffff;
}

@media (max-width: 640px) {
    .keyvis-tagline-container {
        margin-top: 130px;
        padding: 20px;
        background-color: #f1f1e9;
    }

    .keyvis-tagline-title-main,
    .keyvis-tagline-title,
    .keyvis-tagline-desc {
        color: #4B4B49;
    }

    .keyvis-tagline-title-main {
        font-size: 18px;
        line-height: 22px;
    }
    
    .keyvis-tagline-title {
        font-size: 14px;
        line-height: 16px;
    }

    .keyvis-tagline-desc {
        font-size: 12px;
        line-height: 16px;
    }
    
}

@media (min-width: 641px) and (max-width: 820px) {
    .keyvis-tagline-container {
        margin-top: 10px;
    }
    
    .keyvis-tagline-title-main {
        font-size: 22px;
        line-height: 22px;
    }
    
    .keyvis-tagline-title {
        font-size: 16px;
        line-height: 16px;
    }
}
/* keyvis tagline End */

/* flex Start */
.sec-flex-row {
    display: flex;
}

.flex-4-6 {
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.flex-10 {
    flex-direction: column;
}

.sec-flex-col {

}

.flex-10 .sec-flex-col {
    width: 100%;
}

.flex-4-6 .sec-flex-col:nth-child(1) {
    width: 450px;
}

.flex-4-6 .sec-flex-col:nth-child(2) {
    flex: 1;
}

.flex-4-6 .sec-flex-col:nth-child(1) .sec-content-title {
    text-align: left;
}

@media (max-width: 820px) {
    .flex-4-6 {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0px;
    }

    .flex-4-6 .sec-flex-col:nth-child(1) {
        width: 100%;
    }
    
    .flex-4-6 .sec-flex-col:nth-child(2) {
        width: 100%;
    }
}
/* flex End */

/* UI Start */
.btn-cta-lbl-arrow {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.btn-cta-lbl {
}

.btn-cta-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #66AE0A;
    background-color: #66AE0A;
    color: #ffffff;

    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.btn-cta-arrow span {
    font-size: 14px;
    line-height: 14px;
}

.ahref-btn-cta {
    display: inline-block;
}

.ahref-btn-cta,
.ahref-btn-cta:hover {
    text-decoration: none !important;
}

.ahref-btn-cta:hover .btn-cta-lbl-arrow .btn-cta-arrow {
    background-color: #ffffff;
    color: #66AE0A;
}

.txt-overflow {
	max-width: 200px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
/* UI End */

/* text Start */
.sec-title-h3 {
    margin-bottom: 30px;
    color: #909090;
    font-size: 24px;
    line-height: 32px;
    font-weight: normal;
}

@media (max-width: 640px) {
    .sec-title-h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ver-bm .sec-title-h3 {
        font-size: 19px;
        line-height: 28px;
    }
}
/* text End */

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

.tb-general-container {
    border-top: 4px solid #93b50a;
}

.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 #93b50a;
}
/* table general End */

/* table Start */
.tb-container {
    overflow-x: auto;
}

.tb-box {
}

.tb {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

.tr {
}

tr.tr-efx:nth-child(odd) {
    background-color: #ffffff;
}

tr.tr-efx:nth-child(even) {
    background-color: #f1f1e9;
}

.td {
    padding: 10px 20px;
    border: 1px solid #d7d7d7;
}

.td-header {
    color: #ffffff;
    font-weight: bold;
}

.border-bottom-green {
    border-bottom-color: #66AE0A;
}
/* table End */

/* footer Start */
#sec-footer.section {
    /* border-bottom: 10px solid #79772a; */
    background-color: #f1f1e9;
    color: #333333;
}

.footer-member-container {

}

.row-member {
    justify-content: center;
    /* padding-top: 30px;
    border-top: 2px solid #c7d882; */
}

.col-member {
    padding-left:20px;
    padding-right:20px;
    border-right: 2px solid rgba(0,0,0,0.1);
}

.col-member:last-child {
    border-right: none;
}

.footer-member-category {
    margin-bottom: 10px;
    font-size:14px;
    line-height:14px;
    text-align: center;
}

.footer-member {

}

.col-footer-logo {

}

.footer-member-logo {
    margin-bottom: 10px;
    text-align: center;
}

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

.footer-member-regno {
    font-size:10px;
    line-height: 10px;
    text-align: center;
}

.footer-note {
    font-size: 8px;
}

.sec-footer-title {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.sec-footer-body {
}

.sec-footer-footer {
    position: relative;
    padding: 10px 10px 20px 10px;
    background-color: #4b4b49;
    color: #ffffff;

    font-size: 12px;
    line-height: 16px;
}

.sec-footer-footer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    position: relative;
}

.sec-footer-footer-part {

}

.footer-part-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.sec-footer-footer-part a {
    color: #ffffff;
    text-decoration: none;
    border: none;
    outline: none;
}

.sec-footer-footer-part a:hover {
    color: #93b50a;
    text-decoration: none;
    border: none;
    outline: none;
}

@media (max-width: 640px) {
    .sec-footer-footer-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .sec-footer-footer-part {
        text-align: center;
    }

    .footer-part-flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .col-footer-logo {
        margin-bottom: 20px;
    }

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

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

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

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

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

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

@media (min-width: 641px) and (max-width: 820px) {
    .sec-footer-footer-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}
/* footer End */

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

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

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

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

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

.btn-modal-ok-cust {
    padding: 10px 40px;
    border-radius: 20px;
    background-color: #93b50a;
    color: #ffffff;
}

@media (max-width: 640px) {
    .modal-phb .modal-title {
        font-size: 24px;
        line-height: 30px;
    }
}
/* modal End */

@media (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: 22px;
        line-height: 30px;
        padding: 0px 20px;
    }

    .sec-title-body h2 {
        font-size: 24px;
        line-height: 32px;
        padding: 0px 0px;
    }

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

    .box-body {
        padding: 20px;
    }

    .exp-card-col-photo {
        top: 20px;
    }

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

    .modal-phb .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:28px;
        line-height: 36px;
    }

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

    .box-body {
        padding: 20px;
    }

    .exp-card-col-photo {
        top: 20px;
    }

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

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

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

    .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) {
    .col-member {
        padding-left:10px;
        padding-right:10px;
    }

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

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

}

@media (max-width:1024px) {
    .caption-mmenu {
        text-align: center;
    }
}

@media (max-width:990px) {
    #sec-nav-main #logo-brand {
        display: block;
        opacity: 1;
    }
    
    #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;
    }

    #sec-keyvis-solution {
        background: url('../images/solution/keyvis-solution-xs.jpg') no-repeat center center;
        background-size: cover;
    }
    
    #sec-keyvis-urp {
        background: url('../images/urp/keyvis-urp-xs.jpg') no-repeat center center;
        background-size: cover;
    }
    
    #sec-keyvis-about {
        background: url('../images/about/keyvis-about-xs.jpg') no-repeat center center;
        background-size: cover;
    }
    
    #sec-keyvis-faq {
        background: url('../images/faq/keyvis-faq-xs.jpg') no-repeat center center;
        background-size: cover;
    }
    
    #sec-keyvis-contact {
        background: url('../images/contact/keyvis-contact-xs.jpg') no-repeat center center;
        background-size: cover;
    }

    .navbar-brand-logo {
        
    }

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

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

    .btn-mmenu {
        height: auto;
    }

    .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 h2 {
        margin: 0px;
    }

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

@media (max-width:640px) {
    .sec-content-container {
        margin-bottom: 10px;
    }

    .sec-content-title {
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
    }

    .sec-content-title-2  {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 20px;
        
    }
}

@media (min-width:1201px) {

}


