@charset "UTF-8";

:root {
    --primary-color: #0080E9;
    --secondary-color: #B716CB;
    --green-color: #8DC44D;
    --light-color: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Max Container Width */
.container-fluid { width: min(100%, 2048px); }
.max-w-content { max-width: 2048px; }

/* scroll */
html { scroll-padding-top: 100px !important; }

/* Font Family */
/* paragraph, link and button */
body, p, div, span, a, button, li {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: 14px; /* fallback jika tak support clamp */
    /* font-size: clamp(12px, 11px + 0.125vw, 14px); */
}
body, div, p {
    line-height: 1.7;
}
p {
    margin: 0 0 1.6em 0;
}
ul.list-item {
    margin-top: 10px;
    list-style: circle;
    padding-left: 17px;
}


/* Headline */
h1 {
    font-size: 36px; /* fallback jika tak support clamp */
    /* font-size: clamp(34px, 33px + 0.125vw, 36px);  */
}
/* Heading */
h2, h3, h4, h5 { 
    font-size: 36px; /* fallback jika tak support clamp */
    /* font-size: clamp(34px, 33px + 0.125vw, 36px); */
}

.headline {
    font-size: 36px; /* fallback jika tak support clamp */
    /* font-size: clamp(34px, 33px + 0.125vw, 36px); */
    font-weight: bold;
    margin-bottom: 15px;
}
.sub-headline {
    /* font-size: 22px;
    font-size: clamp(20px, 19px + 0.125vw, 22px);
    margin-bottom: 15px; */
}
.post-title {
    /* medium */
    font-size: 18px; /* fallback jika tak support clamp */
    /* font-size: clamp(20px, 19px + 0.125vw, 22px); */
}

/* Font Size */
/* A minimum of 16 pixels is generally recommended for body text to ensure readability, 
especially for users with visual impairments, and headings should be around 1.3 times larger than that */
.fs-xs { 
    font-size: 0.5625rem; /* fallback jika tak support clamp */
    /* font-size: clamp(0.5625rem, 0.55rem + 0.0625vw, 0.625rem);  */
}
.fs-sm { 
    font-size: 0.625rem; /* fallback jika tak support clamp */
    /* font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);  */
}
.fs-reg { 
    font-size: 14px; /* fallback jika tak support clamp */
    /* font-size: clamp(16px, 15px + 0.125vw, 18px);  */
}
.fs-md { 
    font-size: 18px; /* fallback jika tak support clamp */
    /* font-size: clamp(20px, 19px + 0.125vw, 22px);  */
}
.fs-sub-headline {
    font-size: 22px;
}
.fs-lg { 
    font-size: 36px; /* fallback jika tak support clamp */
    /* font-size: clamp(34px, 33px + 0.125vw, 36px);   */
}
.fs-xl { 
    font-size: 40px; /* fallback jika tak support clamp */
    /* font-size: clamp(38px, 37px + 0.125vw, 40px);  */
} 
.fs-xxl { 
    font-size: 45px; /* fallback jika tak support clamp */
    /* font-size: clamp(43px, 42px + 0.125vw, 45px); */
}

/* circle number */
span.number-green {
  background: var(--green-color);
   border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
}

/* Stock up and down */
span.text-up, span.text-down {
    vertical-align: top;
    font-size: 14px;
    font-weight: bold;
}
span.text-up {
    color: green;
}
span.text-up::before {
    font-family: "Font Awesome 5 Free";
    content: "\f102\00a0";
    font-weight: bold;
    color: green;
}
span.text-down {
    color: var(--primary-color);
}
span.text-down::before {
    font-family: "Font Awesome 5 Free";
    content: "\f103\00a0";
    font-weight: bold;
    color: var(--primary-color);
}

/* hyperlink */
a { 
    text-decoration: none;
    color: #333; 
}
a:hover {
    color: var(--primary-color);
}
.btn-more {
    color: var(--primary-color);
    font-weight: bold;
}
.btn-more:hover {
    color: black;
}

/* btn line */
.btn-line-purple, .btn-line-purple:hover, .btn-line-purple:active {
    display: inline-block;
    border: solid 3px var(--secondary-color);
    padding: 5px 6px;
    border-radius: 0px;
    color: var(--secondary-color) !important;
    font-weight: bold !important;
}
/* .btn-line-purple:hover, .btn-line-purple:active {
    border: solid 3px black;
    color: black;
} */

.btn-line-dark {
    display: inline-block;
    border: solid 2px #333;
    padding: 5px 10px;
    border-radius: 0px;
    color: #333;
}
.btn-line-dark:hover, .btn-line-dark:active {
    border: solid 2px var(--primary-color);
    color: var(--primary-color);
}

.btn-line-green {
    display: inline-block;
    border: solid 2px #8DC44D;
    padding: 5px 10px;
    border-radius: 0px;
    color: #8DC44D;
}
.btn-line-green:hover, .btn-line-green:active {
    border: solid 2px black;
    color: black;
}

.btn-purple {
    display: inline-block;
    border: solid 2px var(--secondary-color);
    background-color: var(--secondary-color);
    color: #FFF;
    padding: 5px 10px;
    border-radius: 3px;
}
.btn-purple:hover, .btn-purple:active {
     border: solid 2px var(--secondary-color);
    background-color: var(--secondary-color);
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.btn-green {
    display: inline-block;
    border: solid 2px #8DC44D;
    background-color: #8DC44D;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 0px;
}
.btn-green:hover, .btn-green:active {
    border-right: solid 2px #FFF;
    background-color: #8DC44D;
    color: #FFF;
}

/* main color */
.bg-transparent, ul.bg-transparent li { background-color: transparent !important;}
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-green { background-color: var(--green-color) !important; }
.bg-abu { background-color: #C8C8C8;}
.bg-blue { background-color: #E2EEFB; }
.color-primary { color: var(--primary-color) !important; }
.color-secondary { color: var(--secondary-color) !important; }
.text-red { color: var(--primary-color) }
.text-green { color: var(--green-color); }
.text-orange { color: #FFCA2A; }
.text-navy { color: navy; }
.text-blue { color: #0080E9 }


/* width */
.wd-0 { width: 0%; }
.wd-5 { width: 5%; }
.wd-10 { width: 10%; }
.wd-15 { width: 15%; }
.wd-20 { width: 20%; }
.wd-25 { width: 25%; }
.wd-30 { width: 30%; }
.wd-35 { width: 35%; }
.wd-40 { width: 40%; }
.wd-45 { width: 45%; }
.wd-50 { width: 50%; }
.wd-55 { width: 55%; }
.wd-60 { width: 60%; }
.wd-65 { width: 65%; }
.wd-70 { width: 70%; }
.wd-75 { width: 75%; }
.wd-80 { width: 80%; }
.wd-85 { width: 85%; }
.wd-90 { width: 90%; }
.wd-95 { width: 95%; }
.wd-100 { width: 100%; }



/* global Spacer start form small device */
.hs-0 { height: 0px; }
.hs-5 { height: 5px; }
.hs-10 { height: 10px; }
.hs-15 { height: 15px; }
.hs-20 { height: 20px; }
.hs-25 { height: 25px; }
.hs-30 { height: 30px; }
.hs-35 { height: 35px; }
.hs-40 { height: 40px; }
.hs-45 { height: 45px; }
.hs-50 { height: 50px; }
.hs-55 { height: 55px; }
.hs-60 { height: 60px; }
.hs-65 { height: 65px; }
.hs-70 { height: 70px; }
.hs-75 { height: 75px; }
.hs-80 { height: 80px; }
.hs-85 { height: 85px; }
.hs-90 { height: 90px; }
.hs-95 { height: 95px; }
.hs-100 { height: 100px; }
.hs-105 { height: 105px; }
.hs-110 { height: 110px; }
.hs-115 { height: 115px; }
.hs-120 { height: 120px; }
.hs-125 { height: 125px; }
.hs-130 { height: 130px; }
.hs-135 { height: 135px; }
.hs-140 { height: 140px; }
.hs-145 { height: 145px; }
.hs-150 { height: 150px; }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    .wd-md-0 { width: 0%; }
    .wd-md-5 { width: 5%; }
    .wd-md-10 { width: 10%; }
    .wd-md-15 { width: 15%; }
    .wd-md-20 { width: 20%; }
    .wd-md-25 { width: 25%; }
    .wd-md-30 { width: 30%; }
    .wd-md-35 { width: 35%; }
    .wd-md-40 { width: 40%; }
    .wd-md-45 { width: 45%; }
    .wd-md-50 { width: 50%; }
    .wd-md-55 { width: 55%; }
    .wd-md-60 { width: 60%; }
    .wd-md-65 { width: 65%; }
    .wd-md-70 { width: 70%; }
    .wd-md-75 { width: 75%; }
    .wd-md-80 { width: 80%; }
    .wd-md-85 { width: 85%; }
    .wd-md-90 { width: 90%; }
    .wd-md-95 { width: 95%; }
    .wd-md-100 { width: 100%; }

    .hs-md-0 { height: 0px; }
    .hs-md-5 { height: 5px; } 
    .hs-md-10 { height: 10px; }
    .hs-md-15 { height: 15px; }
    .hs-md-20 { height: 20px; }
    .hs-md-25 { height: 25px; }
    .hs-md-30 { height: 30px; }
    .hs-md-35 { height: 35px; }
    .hs-md-40 { height: 40px; }
    .hs-md-45 { height: 45px; }
    .hs-md-50 { height: 50px; }
    .hs-md-55 { height: 55px; }
    .hs-md-60 { height: 60px; }
    .hs-md-65 { height: 65px; }
    .hs-md-70 { height: 70px; }
    .hs-md-75 { height: 75px; }
    .hs-md-80 { height: 80px; }
    .hs-md-85 { height: 85px; }
    .hs-md-90 { height: 90px; }
    .hs-md-95 { height: 95px; }
    .hs-md-100 { height: 95px; }
    .hs-md-105 { height: 105px; }
    .hs-md-110 { height: 110px; }
    .hs-md-115 { height: 115px; }
    .hs-md-120 { height: 120px; }
    .hs-md-125 { height: 125px; }
    .hs-md-130 { height: 130px; }
    .hs-md-135 { height: 135px; }
    .hs-md-140 { height: 140px; }
    .hs-md-145 { height: 145px; }
    .hs-md-150 { height: 150px; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

    .wd-lg-0 { width: 0%; }
    .wd-lg-5 { width: 5%; }
    .wd-lg-10 { width: 10%; }
    .wd-lg-15 { width: 15%; }
    .wd-lg-20 { width: 20%; }
    .wd-lg-25 { width: 25%; }
    .wd-lg-30 { width: 30%; }
    .wd-lg-35 { width: 35%; }
    .wd-lg-40 { width: 40%; }
    .wd-lg-45 { width: 45%; }
    .wd-lg-50 { width: 50%; }
    .wd-lg-55 { width: 55%; }
    .wd-lg-60 { width: 60%; }
    .wd-lg-65 { width: 65%; }
    .wd-lg-70 { width: 70%; }
    .wd-lg-75 { width: 75%; }
    .wd-lg-80 { width: 80%; }
    .wd-lg-85 { width: 85%; }
    .wd-lg-90 { width: 90%; }
    .wd-lg-95 { width: 95%; }
    .wd-lg-100 { width: 100%; }

    .hs-lg-0 { height: 0px; }
    .hs-lg-5 { height: 5px; }
    .hs-lg-10 { height: 10px; }
    .hs-lg-15 { height: 15px; }
    .hs-lg-20 { height: 20px; }
    .hs-lg-25 { height: 25px; }
    .hs-lg-30 { height: 30px; }
    .hs-lg-35 { height: 35px; }
    .hs-lg-40 { height: 40px; }
    .hs-lg-45 { height: 45px; }
    .hs-lg-50 { height: 50px; }
    .hs-lg-55 { height: 55px; }
    .hs-lg-60 { height: 60px; }
    .hs-lg-65 { height: 65px; }
    .hs-lg-70 { height: 70px; }
    .hs-lg-75 { height: 75px; }
    .hs-lg-80 { height: 80px; }
    .hs-lg-85 { height: 85px; }
    .hs-lg-90 { height: 90px; }
    .hs-lg-95 { height: 95px; }
    .hs-lg-100 { height: 100px; }
    .hs-lg-105 { height: 105px; }
    .hs-lg-110 { height: 110px; }
    .hs-lg-115 { height: 115px; }
    .hs-lg-120 { height: 120px; }
    .hs-lg-125 { height: 125px; }
    .hs-lg-130 { height: 130px; }
    .hs-lg-135 { height: 135px; }
    .hs-lg-140 { height: 140px; }
    .hs-lg-145 { height: 145px; }
    .hs-lg-150 { height: 150px; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

    .wd-xl-0 { width: 0%; }
    .wd-xl-5 { width: 5%; }
    .wd-xl-10 { width: 10%; }
    .wd-xl-15 { width: 15%; }
    .wd-xl-20 { width: 20%; }
    .wd-xl-25 { width: 25%; }
    .wd-xl-30 { width: 30%; }
    .wd-xl-35 { width: 35%; }
    .wd-xl-40 { width: 40%; }
    .wd-xl-45 { width: 45%; }
    .wd-xl-50 { width: 50%; }
    .wd-xl-55 { width: 55%; }
    .wd-xl-60 { width: 60%; }
    .wd-xl-65 { width: 65%; }
    .wd-xl-70 { width: 70%; }
    .wd-xl-75 { width: 75%; }
    .wd-xl-80 { width: 80%; }
    .wd-xl-85 { width: 85%; }
    .wd-xl-90 { width: 90%; }
    .wd-xl-95 { width: 95%; }
    .wd-xl-100 { width: 100%; }

    .hs-xl-0 { height: 0px; }
    .hs-xl-5 { height: 5px; }
    .hs-xl-10 { height: 10px; }
    .hs-xl-15 { height: 15px; }
    .hs-xl-20 { height: 20px; }
    .hs-xl-25 { height: 25px; }
    .hs-xl-30 { height: 30px; }
    .hs-xl-35 { height: 35px; }
    .hs-xl-40 { height: 40px; }
    .hs-xl-45 { height: 45px; }
    .hs-xl-50 { height: 50px; }
    .hs-xl-55 { height: 55px; }
    .hs-xl-60 { height: 60px; }
    .hs-xl-65 { height: 65px; }
    .hs-xl-70 { height: 70px; }
    .hs-xl-75 { height: 75px; }
    .hs-xl-80 { height: 80px; }
    .hs-xl-85 { height: 85px; }
    .hs-xl-90 { height: 90px; }
    .hs-xl-95 { height: 95px; }
    .hs-xl-100 { height: 100px; }
    .hs-xl-105 { height: 105px; }
    .hs-xl-110 { height: 110px; }
    .hs-xl-115 { height: 115px; }
    .hs-xl-120 { height: 120px; }
    .hs-xl-125 { height: 125px; }
    .hs-xl-130 { height: 130px; }
    .hs-xl-135 { height: 135px; }
    .hs-xl-140 { height: 140px; }
    .hs-xl-145 { height: 145px; }
    .hs-xl-150 { height: 150px; }
}

/* Navbar */
#TopNav .nav-item:hover > a, #TopNav .nav-item > a.active {
    color: var(--secondary-color);
}
#TopNav .navbar-nav a {
    font-weight: 500;
    font-size: .6rem; /* fallback jika tak support clamp */
    font-size: 14px;
    color: #5E5E5E;
}
#TopNav .dropdown > .dropdown-menu {
    border-radius: 0px !important;
}
.navbar-nav .dropdown > a.nav-link.dropdown-toggle::after {
    vertical-align: middle;
    top: 0px;
    border: 0px !important;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 1em;
    position: relative;
    left: -3px;
    bottom: 0;
}

/* .navbar-nav .dropdown > .dropdown-toggle.show::after {  transform: rotate(180deg);  } */

#TopNav .dropdown-item:hover, 
#TopNav .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #333;
}  

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > a {
    position: relative !important;
    padding-right: 35px;
}
.dropdown-submenu > a:after {
    border-top: 0px !important;
    position: absolute !important;
    color: grey;
    min-height: 1.2em;
    width: 1.2em;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    line-height: 1.3em;
    text-align: center;
    content: "▶";
    font-size: 11px;
}
.dropdown-submenu .dropdown-menu {
    top: -7px;
    left: 100%;
    margin-left: .05rem;
    margin-right: .05rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.nav-container .navbar-brand img {
    height: 35px;
}
.navbar .navbar-collapse{
    margin-top: 0px;
}

/* .has-megamenu .dropdown-toggle.show + .megamenu, 
.has-megamenu:hover .megamenu-md {
    margin-top: 25px;
}
*/

.btn-lang {
    border: 1px solid #333 !important; 
    overflow-x: hidden;
    width: 70px;
}
.btn-lang a {
    border: 0px !important;
    padding: 0px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.btn-lang a.active {
    background-color: var(--primary-color);
    color: #FFF !important;
}
.btn-lang a:first-child.active {
    border-right: 1px solid #333 !important;
}
.btn-lang a:last-child.active {
    border-left: 1px solid #333 !important;
}

 
/* link cover */
.link-cover {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
}
.btn-player {
    position: absolute;
    width: 70px; 
    top: 50%; 
    margin-top:-35px; 
    left:50%; 
    margin-left:-35px;
} 

/* header */
.header-bg {
    margin-top: 60px;
}
.header-bg .header-caption {
    height: 25vh;
}

/* Tabs */
.nav-tabs .nav-link {
    color: grey;
}
.tab-content {
    padding-top: 1em;
}
.tab-content>.tab-pane {
    visibility: visible;
    width: 100%;
    opacity: 0;
    transition: opacity .5s ease 0s;
}
.tab-content>.active {
    opacity: 100%;
}

/* modal */
div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 0;
}
div:where(.swal2-container) button:where(.swal2-close):focus {
    box-shadow: none !important;
}
.swal-small {
    width: 800px !important;
    max-width: 90vw;
}
.swal-medium {
    width: 900px !important;
}
.swal-wide {
    width: 80vw !important;
    padding-top: 0px;
    padding-bottom: 0px;
}
.modal-inner {
    width: 95%;
}

/* modal pdf */
.pdf-wrapper {
    width: 96%;
    margin: 0 auto;
}
#pdf-viewer {
    width: 100%;
    height: 550px;
    padding-top: 20px;
    padding-bottom: 0px;
}


/* wrapper */
.card {
    border-radius: 0px;
}

/* select 2 */
.select2-container--default .select2-selection--single {
    border-radius: 0px !important;
}


/* Footer */
.footer-member-logo {
    background-color: #D0D0D0;
}
.footer-member-logo img {
    height: 15px;
}
.footer-copyrights {
    background-color: #514D4D;
    color: #FFF;
}

/* Footer */
.borderless li  {
    border: 0 !important;
    border-top: 0;
    border-bottom: 0;
}



















/* Responsive Style */
/* Small devices such as large phones (px and up) */
@media only screen and (min-width: 320px) {
    .swal-small,
    .swal-medium,  
    .swal-wide {
        width: 98vw !important;
    }
    .modal_detail {
        width: 95%;
    }
    
    .nav-container .navbar-brand img {
        height: 35px;
    }

}

/* Small devices such as large phones (px and up) */
@media only screen and (min-width: 640px) { }

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 768px) {
    .swal-small,
    .swal-medium, 
    .swal-wide {
        width: 80vw !important;
    }
    .modal_detail {
        width: 95%;
    }
}

@media (max-width: 900px){
    .has-megamenu .megamenu {
        position: absolute !important;
        transform: translateX(-100%);
        transition: .3s ease-out;
        left: 0px;
        display: block !important;
        margin-top: 0px !important;
        top: 0px !important;
        min-height: 100vh;
    }
    .has-megamenu .dropdown-toggle.show + .megamenu {
        transform: translateX(0%);
        overflow-y: auto;
        height: 100vh;
        padding-bottom: 50px !important;
    }
    .dropdown-submenu > a:after {
        transform: rotate(90deg);
        top: 20%;
    }

    /* modal */
    .swal-small {
        width: 800px !important;
    }
    .swal-medium {
        width: 800px !important;
    }
    .swal-wide {
        width: 80vw !important;
    }
    .modal-inner {
        width: 95%;
    }

}

/*  up to 1000px */
@media (max-width: 990px){
    .navbar .container-fluid {
        position: relative;
    }
    .navbar .navbar-collapse {
        position: absolute;
        right: 0px;
        left: 0px;
        background: white;
        top: 54px;
        height: auto;
        padding: 10px;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    }
    .navbar-nav li {
        padding-left: 10px;
        padding-right: 10px;
    }
    .nav-container {
        justify-content: right !important;
    }
    .nav-container .navbar-brand {
        margin-right: auto;
    }
    .navbar-toggler {
        order: 2;
        margin-left: 25px;
    }
    .group-search-lang {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .dropdown-item:focus, .dropdown-item:hover {
        background-color: transparent;
    }

    /* modal */
    .swal-small {
        width: 800px !important;
    }
    .swal-medium {
        width: 900px !important;
    }
    .swal-wide {
        width: 80vw !important;
    }
    .modal-inner {
        width: 95%;
    }

    
}

@media (min-width: 992px) {

    #TopNav {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    #TopNav .nav-container .navbar-brand img {
        height: 50px;
    }

    /* menu highlights */
    #TopNav .nav-item.dropdown > a:hover, 
    #TopNav .nav-item.dropdown:hover > a, 
    #TopNav .nav-item.dropdown.active > a {
        color: var(--secondary-color);
    }
    /* dropdown hover */
    #TopNav .navbar-collapse > .navbar-nav {
        height: 60px;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        /* margin-left: 100px; */
        /* margin-right: auto; */
    }
    #TopNav ul.navbar-nav > li:not(:last-child) {
        margin-right: 25px;
    }
    #TopNav ul.navbar-nav > li {
        height: 60px;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }
    #TopNav .dropdown-menu > li {
        height: 100%;
        padding: 5px 3px;
    }
    #TopNav .dropdown:hover > .dropdown-menu {
        display: block;
        top: 60px !important;
        margin-top: 0px !important;
    }
    #TopNav .dropdown-submenu:hover > .dropdown-menu { 
        display: block;
    }

    #TopNav .dropdown-submenu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #TopNav .navbar a.dropdown-toggle.disabled {
        color: var(--bs-nav-link-color) !important;
    }
    #TopNav .navbar a.dropdown-toggle.disabled:hover{
        color: var(--bs-nav-link-hover-color) !important;
    }

    .nav-l-side, .nav-r-side { width: 12% ; }
    #TopNav .btn-lang {
        margin-right: 5px;
    }
    #TopNav .btn-lang a {
        font-size: .7rem;
        padding: 3px 2px;
    }


    /* modal */
    .swal-small {
        width: 800px !important;
    }
    .swal-medium {
        width: 900px !important;
    }
    .swal-wide {
        width: 80vw !important;
    }
    .modal-inner {
        width: 95%;
    }

}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 1024px) and (orientation: landscape) {
    #TopNav ul.navbar-nav > li:not(:last-child) {
        margin-right: 30px;
    }
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 1280px) {
    #TopNav ul.navbar-nav > li:not(:last-child) {
        margin-right: 30px;
    }
}

/* Largest devices such as desktops (1350px and up) */
@media only screen and (min-width: 1350px) {
    #TopNav ul.navbar-nav > li:not(:last-child) {
        margin-right: 35px;
    }
}

/* Largest devices such as desktops (1500px and up) */
@media only screen and (min-width: 1500px) {
    #TopNav ul.navbar-nav > li:not(:last-child) {
        margin-right: 60px;
    }
}











/* Owl Carousel */
.owl-carousel .item {
    margin-left: 10px;
}
.owl-carousel .item:first-child {
    margin-left: 0;
} 
.owl-carousel .item {
    padding: 0px 10px 20px 10px;
}
/* .owl-carousel .owl-wrapper { 
    width: 100% !important; 
} */
.owl-carousel .owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}
.owl-carousel .owl-controls .owl-buttons .owl-prev{
    background: #fff;
    position: absolute;
    top:-13%;
    left:15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    /* transition: background 0.5s ease 0s; */
}
.owl-carousel .owl-controls .owl-buttons .owl-next{
    background: #fff;
    position: absolute;
    top:-13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    /* transition: background 0.5s ease 0s; */
}
.owl-carousel .owl-controls .owl-buttons .owl-prev:after,
.owl-carousel .owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #333;
    font-size:30px;
}
.owl-carousel .owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}

/* owl nav */
.owl-prev span, .owl-next span {
    color: var(--secondary-color) !important;
}
.owl-prev span:hover, 
.owl-next span:hover {
    color: #8199A3;
}
.owl-prev, .owl-next {
    position: absolute;
    top: -7%;
    height: 100%;
}
.owl-prev {
    left: -15px;
}
.owl-next {
    right: -15px;
}
.owl-next span, .owl-prev span {
    color: var(--secondary-color)
}

/* removing blue outline from buttons */
button:focus, button:active {
    outline: none;
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.owl-dots {
    text-align: center;
    padding-top: 15px;
}
.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #D9D9D9 !important;
    margin: 0 3px;
}
.owl-dots button.owl-dot.active {
    background-color: var(--secondary-color) !important;
}
.owl-dots button.owl-dot:focus {
    outline: none;
}
/* ENd owl nav */

/* Button  */ 
.btn-sc-line {
    font-weight: normal !important;
    border: 3px solid;
    border-color: var(--main-color);
    color: var(--main-color);
    border-radius: 20px;
    padding: 0.375rem 1rem;
    min-width: 160px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}
.btn-sc-line:hover {
    border-color: var(--main-color);
    color: white;
    background-color: var(--main-color);
}

/* btn main color */
.btn-main, .btn-main:active, .btn-main:focus {
    background-color: var(--main-color) !important;
    color: white !important;
    border-color: var(--main-color) !important;
}
.btn-main i {
    color: white;
}
.btn-main:hover {
    background-color: var(--main-color);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* btn light */
.btn-light, .btn-light:active, .btn-light:focus {
    background-color: #F1F1F1 !important;
    color: #333 !important;
    border-color: #F1F1F1 !important;
}
.btn-light i {
    color: #333;
}
.btn-light:hover {
    background-color: #F1F1F1;
    color: #333;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* btn white */
.btn-white, .btn-white:active, .btn-white:focus {
    background-color: #FFF;
    color: #4A4A4A;
}
.btn-white i {
    color: #4A4A4A;
}
.btn-white:hover {
    background-color: #FFF;
    color: #4A4A4A;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* button leaf */
.btn-leaf {
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Share Button */
#share, #social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* buttons */
#share a, #social-media a {
    width: 35px;
    aspect-ratio: 1/1;
    display: flex;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff;
    transition: opacity 0.15s linear;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#share a:hover, #social-media a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* pagination */
a.page-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
a.page-link:hover {
    color: #333 !important;
    border-color: var(--primary-color);
}
.active>.page-link, .page-link.active {
    background-color: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color) !important;
}


/* Footer */
footer a {
    color: #333;
}
footer a:hover {
    color: var(--primary-color);
}


