*,
::before,
::after,
hr,
hr::before,
hr::after,
input[type="search"],
input[type="search"]::before,
input[type="search"]::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #ceebf8;
}

html,
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    /*scroll-behavior: smooth;*/
}

body {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    /*background-color: #fcf6e6;*/
    background-color: #ffffff;
    color: #424243;
    font-weight: 400;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 45px;
}
h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 35px;
}
h3 {
    font-family: "Libre Baskerville", serif;
    font-size: 24px;
}
h4 {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}
h5 {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
}
h6 {
    font-family: "Roboto", sans-serif;
    font-size: 12px;
}
p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

.libre-font {
    font-family: "Libre Baskerville", serif;
}

p:last-child {
    margin-bottom: 0px;
}

ul {
    padding: 0px;
    margin-left: 15px;
}

a {
    font-size: 18px;
    color: #a17958;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-font-smoothing: antialiased;
}

a:focus,
a:hover {
    color: #a17958;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mt120 {
    margin-top: 120px;
}

.mt140 {
    margin-top: 140px;
}

.max-180 {
    max-width: 180px;
}

.max-240 {
    max-width: 240px;
}

.max-1020 {
    max-width: 1020px;
}

.cover {
    object-fit: cover !important;
}

.row-gap-1 {
    row-gap: 0.5rem;
}

.br24 {
    border-radius: 24px;
}

.btn-transition {
    display: inline-block;
    position: relative;
    min-width: 200px;
    padding: 15px 20px;
    border-radius: 20px;
    background-color: #a17958;
    border: 0;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
}
.btn-transition span {
    opacity: 0;
    display: inline-block;
    color: #fff !important;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -4.5px;
    transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
    transform: translate(0, -20px);
}
.btn-transition:before {
    position: absolute;
    left: 0;
    content: attr(data-text);
    opacity: 1;
    transform: translate(0, 0px);
    transition: 0.25s cubic-bezier(0.5, -1, 0.5, 2);
    width: 100%;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.btn-transition:hover:before,
.btn-transition:focus:before {
    opacity: 0;
    transform: translate(0, 20px);
}
.btn-transition:hover span,
.btn-transition:focus span {
    opacity: 1;
    transform: translate(0, 0);
}
.btn-transition:hover span:nth-child(1),
.btn-transition:focus span:nth-child(1) {
    transition-delay: 0.025s;
}
.btn-transition:hover span:nth-child(2),
.btn-transition:focus span:nth-child(2) {
    transition-delay: 0.05s;
}
.btn-transition:hover span:nth-child(3),
.btn-transition:focus span:nth-child(3) {
    transition-delay: 0.075s;
}
.btn-transition:hover span:nth-child(4),
.btn-transition:focus span:nth-child(4) {
    transition-delay: 0.1s;
}
.btn-transition:hover span:nth-child(5),
.btn-transition:focus span:nth-child(5) {
    transition-delay: 0.125s;
}
.btn-transition:hover span:nth-child(6),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.15s;
}
.btn-transition:hover span:nth-child(7),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.175s;
}
.btn-transition:hover span:nth-child(8),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.2s;
}
.btn-transition:hover span:nth-child(9),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.225s;
}
.btn-transition:hover span:nth-child(10),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.25s;
}
.btn-transition:hover span:nth-child(11),
.btn-transition:focus span:nth-child(6) {
    transition-delay: 0.275s;
}
.btn-utama {
    display: inline-block;
    overflow: hidden;
    min-width: auto;
    text-align: center;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 30px;
    background-color: #a17958;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.btn-utama.back {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px 20px;
}

.btn-utama.white-button {
    background-color: #fff;
    color: #a17958;
    padding: 10px 20px;
}
.btn-utama:hover {
    background-color: #fff;
    color: #a17958;
    border: 2px solid #a17958;
    border-radius: 30px;
    box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}
.btn-utama.white-button:active,
.btn-utama.white-button:focus {
    color: #a17958 !important;
}
.btn-utama:active,
.btn-utama:focus {
    color: #fff;
}
.btn-kedua:active,
.btn-kedua:focus {
    color: #a17958;
}
.btn-utama.black-button {
    background-color: #424243;
}
.btn-kedua {
    min-width: 200px;
    cursor: pointer;
    background: transparent;
    color: #a17958;
    position: relative;
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
    border: 1px solid #a17958;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-kedua:hover {
    color: #a17958;
    box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}

.btn-pols {
    cursor: pointer;
    background: transparent;
    color: #a17958;
    position: relative;
    display: inline-block;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
    line-height: 18px;
    letter-spacing: 1.2px;
    padding: 15px 25px;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.button-hover {
    position: relative;
    height: 56px;
    -moz-transition: ease 0.35s all;
    -o-transition: ease 0.35s all;
    -webkit-transition: ease 0.35s all;
    transition: ease 0.35s all;
}

.button-hover:hover {
    line-height: 9em;
}

.button-hover:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: -3.15em;
    width: 100%;
    text-align: center;
}
/*  ==========================  FORM FIELD  ==========================*/

.form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus,
.has-success .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control[disabled] {
    border: 0;
    background-color: #dedede;
}

.form-control[disabled]:hover {
    border: 0;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.has-error .form-control {
    box-shadow: none;
}

input.form-control {
    position: relative;
    height: 50px;
    padding: 0 5px;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0) 0px 2px 4px;
    text-transform: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
    border-color: #a17958;
}

select.form-control {
    /*color: #424243;*/
    height: 50px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 0 30px 0 15px;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    background-image: url("../images/arrow-right-black.svg");
    background-size: 24px;
    box-shadow: none;
    cursor: pointer;
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
    border-color: #a17958;
}

.select2-container--default .select2-selection--single {
    height: 40px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #fdcc39 !important;
    font-size: 16px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 5px !important;
}

textarea.form-control {
    background-color: transparent;
    min-height: 85px;
    position: relative;
    display: block;
    width: 100%;
    padding: 5px;
    text-transform: none;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 400;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    /*resize: none;*/
}

textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
    border-bottom: 2px solid #a17958;
}

label.control-label {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #424243;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 0;
    margin-bottom: 5px;
}

.modal {
    z-index: 1050;
}

.modal-content {
    border-radius: 24px;
}

.modal-footer {
    border: 0;
}

.modal-header .our-category {
    display: inline-block;
    position: relative;
}

.modal-header .close {
    position: absolute;
    top: 15px;
    right: 10px;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: -4px;
    margin-right: 10px;
    font-size: 30px;
    width: 35px;
    height: 35px;
    transition: all 0.3s;
}

.modal-header .close span {
    position: relative;
    top: -3px;
}

#select-dropdown {
    margin-top: 5px;
    background: transparent;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    outline: 0;
    display: block;
    text-align: left;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    color: #5a5957;
    text-decoration: none;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

#select-dropdown.open {
    opacity: 0;
}

.button-group {
    position: relative;
    width: 215px;
}

.button-group .marka {
    position: absolute;
    right: 8px;
    top: 10px;
    z-index: 9999;
    cursor: pointer;
}

.button-group .marka i {
    background: grey !important;
}

.marka-icon-times {
    border: 1px solid grey;
    border-radius: 50%;
    top: 5px !important;
    right: 5px !important;
}

#dropdown-menu {
    position: absolute;
    top: -1em;
    right: 0;
    left: 0;
    margin: 1em auto;
    padding: 15px 20px;
    width: 100%;
    list-style: none;
    text-align: left;
    border-radius: 5px;
    background: #fff;
    transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: box-shadow 0.5s ease-out;
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
}

#dropdown-menu li {
    position: relative;
    line-height: 24px;
    margin-bottom: 15px;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
    opacity: 0;
}

#dropdown-menu li:nth-last-child(1) {
    margin-bottom: 0;
}

#dropdown-menu li:hover {
    background-color: #33b8c41a;
}

#dropdown-menu li a {
    color: #5a5957;
    text-decoration: none;
    font-size: 1em;
}

#dropdown-menu.open {
    -webkit-transform: scale(1);
    transform: scale(1);
}

#dropdown-menu.open li {
    transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.open li:nth-child(1) {
    transition-delay: 0.07s !important;
}

.open li:nth-child(2) {
    transition-delay: 0.14s !important;
}

.open li:nth-child(3) {
    transition-delay: 0.21s !important;
}

.open li:nth-child(4) {
    transition-delay: 0.28s !important;
}

.open li:nth-child(5) {
    transition-delay: 0.35s !important;
}

/*====================================== SECTION WORD ======================================*/
.our-head {
    line-height: 60px;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #424243;
    text-transform: capitalize;
    transition: all 0.3s;
}
.our-category {
    line-height: 60px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #424243;
    text-transform: capitalize;
    transition: all 0.3s;
}
h3.our-category {
    line-height: 42px;
}
.our-main {
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: #a17958;
    transition: all 0.3s;
}
.our-semi {
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: #424243;
    transition: all 0.3s;
}
.our-info {
    line-height: 32px;
    letter-spacing: 0.25px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}
.our-break {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.our-small {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 24px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.main-color {
    color: #a17958 !important;
}
.second-color {
    color: #efd8c8 !important;
}
.black {
    color: #424243 !important;
}
.info {
    color: rgba(0, 0, 0, 0.5) !important;
}
.bold {
    font-weight: 700 !important;
}
.white {
    color: #fff !important;
}

.box-shadow {
    -webkit-transition: box-shadow 0.5s ease-out;
    box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.5s ease-out;
}

.no-pad {
    padding: 0;
}

.block {
    display: block;
}

.full {
    max-width: 100% !important;
    width: 100% !important;
}

.inline-block {
    display: inline-block;
}

.regular {
    font-weight: 400;
}

.normal {
    font-weight: 300;
}

.no-transform {
    text-transform: none !important;
}

.italic {
    font-style: italic;
}

.justify {
    text-align: justify;
}
.pointer {
    cursor: pointer;
}
.load-more button.btn-kedua {
    margin: 20px 0;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar-space {
    margin-top: 100px;
}

.sticky-subhead {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.section-shadow {
    z-index: -1;
    position: absolute;
    left: 0;
    top: 25px;
}
.section-heading {
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.section-heading .image {
    max-width: 320px;
    margin: 0 auto 20px auto;
}
.section-heading .action {
    margin: 20px 0;
}
.action.action-download {
    margin: 0 0 15px 0;
}
.action.action-credential {
}
.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}
.no-result {
    background-color: #a1795869;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}
section {
    margin-bottom: 100px;
}
/*====================================== SECTION NAVBAR ======================================*/
header {
    /*background-color: #fff;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /*border-bottom: 2px solid #fff;*/
    z-index: 99;
    will-change: transform;
    transition: background 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
        background 0.3s;
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1),
        background 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transform: translateY(0);
    -webkit-transform: translateY(0);
    box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 10%);
}
header.header-desktop {
    display: block;
}
header.header-mobile {
    display: none;
}
header nav {
    overflow: hidden;
    padding: 0 15px;
}
header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
header #navigation .logo {
    /*position: absolute;
	top: 10px;*/
    display: block;
    /*float: left;*/
    margin-top: 0;
    margin-right: 0;
    font-size: 1.25rem;
    line-height: inherit;
    font-weight: 500;
    color: #393e46;
}
#navigation {
    padding: 10px 15px;
    background-color: rgb(255 255 255 / 91%);
    transition: all 0.3s;
}
#navigation.navbar_one {
    background-color: rgb(255 255 255 / 91%);
}
#navigation.navbar_two {
    background-color: rgb(161 121 88 / 88%);
}
#navigation.navbar_three {
    background-color: rgb(255 255 255 / 91%);
}
header #navigation .logo.black {
    display: block;
}
header #navigation.scrolled .logo.black {
    display: none;
}
header #navigation .logo.white {
    display: none;
}
header #navigation.scrolled .logo.white {
    display: block;
}
header #navigation .logo.black img.navbar-logo,
header #navigation .logo.white img.navbar-logo {
    margin-top: 0;
    width: 150px;
    object-fit: contain;
}
@media (min-width: 768px) {
    header nav ul li {
        float: left;
        margin-left: 2rem;
    }
}
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
}
header nav ul li a {
    display: block;
    font-size: 18px;
}
.hide-nav {
    transform: translateY(-120%) !important;
    -webkit-transform: translateY(-120%) !important;
}
ul.menu-right {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1024px;
    justify-content: center;
}
ul.menu-right li {
    margin-left: 40px;
}
ul.menu-right li a {
    width: 100%;
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.2px;
    padding: 10px 15px;
    color: #424243;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
ul.menu-right li a:hover {
    border-bottom: 1px solid #424243;
}
ul.menu-right li.logo a:hover {
    border-bottom: 1px solid transparent;
}
ul.menu-right li.active a {
    width: auto;
    display: inline-block;
    font-weight: 700;
    color: #a17958;
    border-bottom: 1px solid #a17958;
}
header #navigation .logo.on_white {
    display: none;
}
ul.menu-right li.count a {
    background-color: #a17958;
    border-radius: 30px;
}
.nav-toggle {
    display: none;
    border-radius: 5px;
    background-color: transparent;
    float: right;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 5px;
    margin-top: 0;
    position: relative;
    top: 5px;
}
.nav-toggle span:nth-child(2) {
    width: 65%;
    margin-left: auto;
}
.nav-toggle span:last-child {
    width: 40%;
    margin-left: auto;
}
.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4.4px, 5.4px);
}
.nav-toggle.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.nav-toggle.open span:last-child {
    width: 100%;
    transform: rotate(-45deg) translate(4.4px, -6.4px);
}
.nav-toggle span {
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 6px;
    background-color: #a17958;
    transition: all 0.3s;
}
#navigation.scrolled .nav-toggle span {
    background-color: #fff;
}
#navigation.scrolled {
    background-color: #a17958;
    transition: all 0.3s;
}
#navigation.scrolled .menu-right li a:before {
    height: 100%;
    left: calc(0%);
    background-color: #ffffff29;
}
#navigation.scrolled {
    color: #fff;
}
#navigation.scrolled ul.menu-right li.count a {
    background-color: #fff;
    color: #a17958;
}
#navigation.navbar_one {
    background-color: rgb(255 255 255 / 91%);
}
#navigation.navbar_two ul.menu-right li a {
    color: #fff;
}
#navigation.navbar_two ul.menu-right li a:hover {
    border-bottom: 1px solid #fff;
}
#navigation.navbar_three {
    background-color: rgb(255 255 255 / 91%);
}
#navigation.navbar_two .logo.on_main {
    display: none;
}
#navigation.navbar_two .logo.on_white {
    display: block;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-wrapper {
    margin: 20px 0;
}
.swiper-slide {
    font-size: 18px;
    background: transparent;
    width: auto;
    margin-right: 20px;
    border-radius: 5px;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide:nth-child(2n) {
    width: 40%;
}
.swiper-slide:nth-child(3n) {
    width: 40%;
}
.swiper-slide .desc {
    margin-top: 20px;
}
.swiper-wrapper .swiper-slide > a {
    width: 100%;
}
.swiper-button-wrapper {
    position: absolute;
    top: 22px;
    text-align: center;
}
.swiper-button-next {
    background-image: url("../images/chevron-right.png");
    opacity: 1;
    transition: all 0.3s;
    right: 20px;
}
.swiper-button-prev {
    background-image: url("../images/chevron-left.png");
    opacity: 1;
    transition: all 0.3s;
    left: 20px;
}

.swiper-button-prev.porto-swiper-previous {
    left: 10px;
    background-size: 18px;
    background-image: url("../images/arrow-chevron-sm-left.png");
    transition: all 0.3s;
}

.swiper-button-next.porto-swiper-next {
    right: 10px;
    background-size: 18px;
    background-image: url("../images/arrow-chevron-sm-right.png");
    transition: all 0.3s;
}
.swiper-button-next,
.swiper-button-prev {
    top: 45%;
    width: 48px;
    height: 48px;
    background-size: contain;
    cursor: pointer;
}

/*====================================== SECTION LANDING PAGE ======================================*/
.container-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
section.home-hero-page {
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}
.home-container .hero {
    width: 100%;
    height: 100%;
    /*	background-image: url("../images/hero.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;*/
}
.home-container .hero .video-hero {
    z-index: -1;
    position: relative;
    max-width: 720px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}
.home-container .hero #videoHero {
    position: absolute;
    left: 50%;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    padding: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#element {
    -webkit-animation: 5s ease 0s normal forwards 1 dissap;
    animation: 5s ease 0s normal forwards 1 dissap;
}

@keyframes dissap {
    0% {
        opacity: 0;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes dissap {
    0% {
        opacity: 0;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.home-container .hero .to-home-wrapper {
    z-index: 3;
    width: 100%;
    height: 100vh;
}
.home-container .hero .to-home-wrapper .to-home {
    position: absolute;
    bottom: 0;
    z-index: 5;
    /*z-index: -1;*/
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
/*.home-container .hero .to-home .image-logo-hero
{
	width: 100%;
	height: 100%;
	margin: 0 auto 0 auto;
	background-image: url("../images/logo-hero.png");
	background-size: 250px;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	transition: all 0.3s;
}
*/
.home-container .hero .to-home-wrapper #element {
    opacity: 1;
}
.home-container .hero .to-home .image-logo-hero .logo-wrapper {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    text-align: center;
}
.home-container .hero .to-home .image-logo-hero .logo-wrapper .logo-click {
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.home-container
    .hero
    .to-home
    .image-logo-hero
    .logo-wrapper
    .logo-click
    .button-to-home {
    position: absolute;
    left: 65px;
    top: 45%;
}
.home-container .hero .to-home .image-logo-hero .logo-close {
    cursor: pointer;
    margin: 0 auto;
    width: 250px;
    height: 250px;
    background-image: url("../images/logo-hero.png");
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: bottom center;
    -webkit-perspective: 450;
    box-sizing: border-box;
}
.home-container .hero .to-home .image-logo-hero .logo-open {
    cursor: pointer;
    margin: 0 auto;
    width: 250px;
    height: 250px;
    background-image: url("../images/logo-hero.png");
    background-size: 250px 250px;
    background-repeat: no-repeat;
    background-position: bottom center;
    box-sizing: border-box;
    border-radius: 3px;
    transition: 1s transform linear;
    transform-origin: left;
    cursor: pointer;
}
.thumbOpened {
    /*opacity: 0;*/
    transform: rotateY(-85deg);
    transform-origin: 8px;
    transition: 0.5s linear;
}
.backDoor {
    background-color: transparent;
    /*  background-color: brown;*/
    background-image: url("../images/door-list.png");
    background-size: 175px 250px;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    margin-top: 50px;
}
.door {
    cursor: pointer;
    background-color: transparent;
    /*  background-color: brown;*/
    /*background-image: url("../images/door.png");*/
    background-size: 175px 250px;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 250px;
    height: 250px;
    transform-origin: left;
    /*Speed of the Door animation*/
    transition: all 0.5s ease-in-out;
}
.door-knock-left {
    position: absolute;
    bottom: 100px;
    left: -75px;
}
.door-knock-left .image,
.door-knock-right .image {
    max-width: 100px;
}
.door-knock-right {
    position: absolute;
    bottom: 200px;
    right: -50px;
}
.doorOpen {
    /*prespectiv creates the door open effect*/
    transform: perspective(1200px) translateZ(0px) translateX(0px)
        translateY(0px) rotateY(-80deg);
}
.backDoor .button-to-home {
    position: absolute;
    top: 45%;
    left: 70px;
}

/*
.bg-to-wwd
{
	margin-top: -150px;
	height: 250px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(161,121,88,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(161,121,88,1) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(161,121,88,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#a17958",GradientType=1);
}
*/
section.home-wwd-page {
    overflow: hidden;
    margin: 0;
}
.wwd-top .image {
    max-width: 125px;
    margin: 0 auto -35px auto;
    position: relative;
    right: -8px;
}
.wwd-step {
    margin: 0 0 50px 0;
    padding: 0 15px;
    list-style: none;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}
.wwd-step.vertical > li {
    display: block;
    min-height: 44px;
    margin-left: 30px;
    text-align: left;
}
.wwd-step > li > .wwd-card {
    position: relative;
    max-width: 480px;
}
.wwd-step > li > .wwd-card .image {
    max-width: 185px;
    margin-bottom: 20px;
}
.wwd-card .word h1.our-head {
    margin-bottom: 20px;
}
.wwd-step > li > .wwd-card .leaf {
    position: absolute;
    bottom: 30%;
    max-width: 100px;
}
.wwd-step.vertical > li:nth-child(odd) {
    position: relative;
    text-align: right;
    right: 0;
}
.wwd-step.vertical > li:nth-child(odd) .wwd-card {
    margin-left: auto;
    margin-right: 100px;
}
.wwd-step.vertical > li:nth-child(odd) .wwd-card .image {
    margin-left: auto;
}
.wwd-step.vertical > li:nth-child(odd) .wwd-card .leaf {
    right: -135px;
    transform: rotate(-5deg);
}
.wwd-step.vertical > li:nth-child(even) .wwd-card {
    margin-right: auto;
    margin-left: 100px;
}
.wwd-step.vertical > li:nth-child(even) .wwd-card .leaf {
    left: -120px;
}
.wwd-step.vertical > li:last-child .wwd-card {
    margin-bottom: 100px;
}
.wwd-step.vertical > li:first-child:after {
    display: block;
}
.wwd-step.vertical > li.active:after {
    background: #b7b7b7;
}
.wwd-step.vertical > li:after {
    width: 100px;
    height: 83%;
    display: block;
    left: -20px;
    top: 0;
    margin-left: 0;
}
.wwd-step.vertical > li:before {
    float: left;
    display: inline-block;
    margin-left: -30px;
    position: absolute;
}
.wwd-step.vertical.right > li {
    margin-left: 0;
    margin-right: 30px;
}
.wwd-step.vertical.right > li:before {
    margin-left: 0;
    margin-right: -30px;
    right: 0;
}
.wwd-step.vertical.right > li:after {
    right: -20px;
    left: auto;
}
.wwd-step.vertical.center > li {
    margin-left: 0;
    float: left;
    width: 50%;
    clear: right;
    padding-right: 30px;
    margin-top: -100px;
    padding-left: 0;
    box-sizing: border-box;
}
.wwd-step > li:first-child {
    margin-top: 0 !important;
}
.wwd-step.vertical.center > li > .wwd-step-icon {
    border: 1px solid #b7b7b7;
    padding: 5px 10px;
    background: #ffffff;
}
.wwd-step.vertical.center > li > .wwd-step-icon:before {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #b7b7b7;
    content: "";
    position: absolute;
    right: 23px;
    top: 15px;
    margin-top: -10px;
}
.wwd-step.vertical.center > li:before {
    right: -11px;
    left: auto;
    margin-left: 0;
}
.wwd-step.vertical.center > li:after {
    right: -60px;
    left: auto;
}
.wwd-step.vertical.center > li:nth-child(2n) {
    float: right;
    clear: left;
    padding-left: 30px;
    padding-right: 0;
}
.wwd-step.vertical.center > li:nth-child(2n) > .wwd-step-icon:before {
    border-left: 0 none;
    border-right: 8px solid #b7b7b7;
    right: auto;
    left: 23px;
}
.wwd-step.vertical.center > li:nth-child(2n):before {
    left: -11px;
    right: auto;
}
.wwd-step.vertical.center > li:nth-child(2n):after {
    left: -40px;
    right: auto;
}
.wwd-step > li {
    display: table-cell;
    text-align: center;
    position: relative;
}
.wwd-step > li:before {
    opacity: 0;
    position: relative;
    content: attr(data-step);
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto 2px;
    line-height: 22px;
    background: #424243;
    border-radius: 100%;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}
.wwd-step > li:after {
    position: absolute;
    width: 100%;
    height: 2px;
    display: block;
    top: 0;
    left: -50%;
    content: "";
    /*background: #efd8c8;*/
    margin-left: 2px;
    z-index: 1;
    background-image: url("../images/wwd-tree-3.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.wwd-step > li:first-child:after {
    display: none;
}
.wwd-step > li:last-child:after {
    height: 100%;
}
.wwd-end-step {
    margin-top: -60px;
}
.wwd-end-step .image {
    position: relative;
    max-width: 300px;
    margin: -82px auto 0 auto;
    transform: translatex(25px);
}
.wwd-credential {
    margin-top: 40px;
}
.wwd-credential .btn-utama {
    box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}
section.home-work-page {
    margin: 0;
    padding: 0;
    background: rgb(161, 121, 88);
    background: -moz-linear-gradient(
        180deg,
        rgba(161, 121, 88, 1) 14%,
        rgba(239, 216, 200, 1) 90%
    );
    background: -webkit-linear-gradient(
        180deg,
        rgba(161, 121, 88, 1) 14%,
        rgba(239, 216, 200, 1) 90%
    );
    background: linear-gradient(
        180deg,
        rgba(161, 121, 88, 1) 14%,
        rgba(239, 216, 200, 1) 90%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a17958",endColorstr="#efd8c8",GradientType=1);
    padding-bottom: 50px;
}
section.home-about-page {
    height: auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    /*background-image: url("../images/about-bg-left.png"), url("../images/about-bg-right.png");*/
    background-size: 320px, 320px;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, top right;
}
.row-home-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.row-home-about .col-video {
    padding: 0;
}
.row-home-about .section-heading .image {
    max-width: 480px !important;
}
.about-video iframe {
    width: 100%;
    height: 470px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.section-heading.heading-about {
    margin-left: 30px;
}
.section-heading.heading-about .word h1.our-head,
section.home-client-page .section-heading .word h1.our-head,
section.home-member-page .section-heading .word h1.our-head,
section.home-client-page .section-heading .word h1.our-head {
    line-height: 50px;
}
.section-heading.heading-about .word h1.our-head {
    font-size: 65px;
}
section.home-consul-page .section-heading .word h1.our-head {
    line-height: 65px;
}
.section-heading .word h3.our-category {
    line-height: 60px;
}
.section-heading .word h1.our-head,
.section-heading .word {
    margin-bottom: 40px;
}
.about-bg {
    position: absolute;
    max-width: 300px;
}
.about-bg.left {
    display: none;
    top: 0;
    left: 0;
}
.about-bg.right {
    bottom: 0;
    right: 0;
}
section.home-wwd-page {
    background-color: #a17958;
    padding: 100px 0 50px 0;
}
.work-wrapper {
    margin: 0 0 25px 0;
}
.work-wrapper .image {
    position: relative;
    max-width: 400px;
    margin: 0 auto 50px auto;
}
.work-wrapper .action {
    text-align: center;
}
section.home-client-page {
    /*background-color: #efd8c8;*/
    background: rgb(239, 216, 200);
    background: -moz-linear-gradient(
        180deg,
        rgba(239, 216, 200, 1) 10%,
        rgba(255, 255, 255, 1) 90%
    );
    background: -webkit-linear-gradient(
        180deg,
        rgba(239, 216, 200, 1) 10%,
        rgba(255, 255, 255, 1) 90%
    );
    background: linear-gradient(
        180deg,
        rgba(239, 216, 200, 1) 10%,
        rgba(255, 255, 255, 1) 90%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efd8c8",endColorstr="#ffffff",GradientType=1);
    padding: 0px 0 50px 0;
}
section.home-client-page .section-heading {
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.row-client {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.client-image {
    max-width: 480px;
    margin: 0 auto;
}
.client-word {
    padding: 0 0 0 0;
    max-width: 480px;
    margin: 0 auto;
}
.client-word blockquote {
    border-left: none;
    margin: 0;
    padding: 10px 0;
}
.client-word blockquote p:before {
    content: "\f10d";
    font-family: "Fontawesome";
    position: absolute;
    top: -30px;
    margin-right: 10px;
}
.member-home {
    height: 400px;
}
.member-home .photo {
    position: absolute;
    width: 100%;
    background-color: #424243;
    border: 15px solid #f0f0f0;
    box-shadow: -2px 6px 18px 2px hsl(0deg 0% 0% / 25%);
}
.member-home .photo img {
    object-fit: cover;
}
.member-home .photo.one {
    z-index: 1;
    max-width: 250px;
    height: 250px;
    right: 50px;
    top: 150px;
    transform: rotate(-20deg);
}
.member-home .photo.two {
    z-index: 1;
    max-width: 250px;
    height: 320px;
    left: 50px;
    top: 100px;
    transform: rotate(15deg);
}
.member-home .photo.three {
    z-index: 9;
    left: 100px;
    top: 0;
    transform: rotate(-10deg);
    max-width: 300px;
    height: 300px;
}
.section-heading.heading-family .word h1.our-head {
    font-size: 65px;
    line-height: 65px;
}
.section-heading.heading-family .action {
    display: flex;
    align-items: center;
}
.section-heading.heading-family .action a {
    margin-right: 15px;
}
section.home-member-page {
    padding-top: 100px;
    background-image: url("../images/member-bg-right.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}
section.home-consul-page {
    background-image: url("../images/consult-bg-left.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
}
.row-consult {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.consult-home .image {
    max-width: 480px;
    margin: 20px auto;
}
/*====================================== SECTION ABOUT ======================================*/
section.section-about-hero {
    overflow: hidden;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    margin-bottom: 0;
}
section.section-about-hero .container-fluid {
    width: 100%;
    padding: 0;
    overflow: hidden;
}
section.section-about-value {
    margin: 50px 0;
}
.row-note {
    display: flex;
    flex-wrap: wrap;
}
.note {
    /*background: linear-gradient(#FEFCAF, #FFFEDA);*/
    background: linear-gradient(#efefef, #fff);
    padding: 30px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px auto;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 2% / 50%;
    position: relative;
}
.note:before,
.note:after {
    content: "";
    z-index: -1;
    position: absolute;
    left: 20px;
    bottom: 10px;
    width: 70%;
    max-width: 300px;
    max-height: 100px;
    height: 55%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: skew(-15deg) rotate(-6deg);
}
.note:after {
    left: auto;
    right: 20px;
    transform: skew(15deg) rotate(6deg);
}
.note .body p.our-main {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.note .action {
    margin-top: 15px;
}
.note .letter {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.note .letter .image {
    max-width: 100px;
    height: 100px;
    z-index: -1;
}
.modal-note .close-note .close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    transition: all 0.3s;
}
.modal-note .close-note span {
    position: relative;
    font-size: 30px;
    display: inline-block;
    top: 2px;
    /* left: -7px; */
    transition: all 0.3s;
}
.modal-readmore .modal-content {
    background-color: transparent;
    box-shadow: none;
    border: 0;
}
.modal-note {
    /*background: linear-gradient(#FEFCAF, #FFFEDA);*/
    background: linear-gradient(#efefef, #fff);
    padding: 30px;
    width: 100%;
    max-width: 420px;
    margin: 100px auto 40px auto;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 2% / 50%;
    position: relative;
}
.modal-note:before,
.modal-note:after {
    content: "";
    z-index: -1;
    position: absolute;
    left: 20px;
    bottom: 10px;
    width: 70%;
    max-width: 400px;
    max-height: 100px;
    height: 55%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: skew(-15deg) rotate(-6deg);
}
.modal-note:after {
    left: auto;
    right: 20px;
    transform: skew(15deg) rotate(6deg);
}
.row-about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-hero .image {
    width: 100%;
    margin: 0 auto;
}
.about-hero,
.about-hero .section-heading,
.about-hero .section-heading .word {
    transition: all 0.3s;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
}
.about-hero .word {
    max-width: 1024px;
    margin: 0 auto;
}
.about-hero .word .typewriter {
    margin-top: 20px;
    height: auto;
    /*min-height: 100px;*/
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
    transition: height 1s ease;
}
.row-value {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.row-value .about-hero {
    margin-bottom: 30px;
}
.about-value {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-bottom: 10px;
}
.about-value .icon {
    margin-right: 20px;
}
.about-value .icon .image {
    min-width: 125px;
    max-width: 150px;
    height: 150px;
    margin: 0 auto 15px auto;
}
.consult-home.team-image .image {
    max-width: 400px;
}
.col-team {
    padding: 0;
}
.team-photo {
    position: relative;
    margin-bottom: 0;
}
.team-photo .image {
    height: 300px;
    margin: 0 auto 0 auto;
}
.team-photo .image img {
    object-fit: cover;
}
.team-photo .wrapper {
    opacity: 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.team-photo .wrapper:hover {
    opacity: 1;
    background-color: #f3eae4de;
}
.team-photo .wrapper .logo {
    max-width: 125px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.team-photo .wrapper .name p.our-semi {
    line-height: 20px;
}
.team-photo .wrapper .occupation p.our-semi {
    font-size: 15px;
}
/*====================================== SECTION PORTFOLIO ======================================*/
section.section-portfolio-hero {
    overflow: hidden;
    margin-top: 80px;
    height: 90vh;
    background-image: url("../images/porto-hero-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.row-porto {
    display: flex;
    align-items: center;
}
section.section-portfolio-list {
    overflow-x: hidden;
    background-color: #f3e4d7;
    padding: 100px 0;
    margin-bottom: 0;
}
.row-porto:nth-child(odd) .porto-card {
    text-align: right;
}
.row-porto:nth-child(even) .porto-card {
    text-align: left;
}
.row-porto:nth-child(odd) .porto-card .logo {
    max-width: 150px;
    height: 150px;
    margin-left: auto;
    margin-bottom: 20px;
}
.row-porto:nth-child(even) .porto-card .logo {
    max-width: 150px;
    height: 150px;
    margin-right: auto;
    margin-bottom: 20px;
}
.row-porto:nth-child(odd) .porto-card .desc {
    max-width: 600px;
    margin-left: auto;
}
.row-porto:nth-child(even) .porto-card .desc {
    max-width: 600px;
    margin-right: auto;
}
.row-porto:nth-child(odd) .porto-card .book {
    max-width: 850px;
    margin-left: auto;
    margin-right: -100px;
}
.row-porto:nth-child(even) .porto-card .book {
    max-width: 850px;
    margin-right: auto;
    margin-left: -100px;
}
section.section-portfolio-client {
    overflow: hidden;
    padding: 100px 0;
    margin-bottom: 0;
    background-image: url("../images/porto-client-bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
.client-logo {
    max-width: 150px;
    height: 125px;
    margin: 0 auto 10px auto;
}
.container-portfolio {
    margin-top: 100px;
}

.tab-wrapper .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
    /* max-width: 113rem;
    width: 100%; */
    padding: 1rem 0rem;
    margin-left: 0px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: none;
}

.tab-wrapper .nav-tabs li:not(:first-child) {
    margin-left: 2rem;
}

.tab-wrapper .tab-content {
    margin-top: 2rem;
}

.tab-wrapper .nav-tabs .nav-item {
    margin-bottom: 0px;
}

.tab-wrapper .nav-tabs .nav-item button {
    border: 2px solid #a17958;
    border-radius: 32px;
    font-weight: 500;
    background-color: #57473a;
    color: #ffffff;
    padding: 1rem 3rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.tab-wrapper .nav-tabs::-webkit-scrollbar {
    display: none;
}

.tab-wrapper .nav-tabs .nav-item button:hover {
    background-color: #fff;
    color: #a17958;
    border: 2px solid #a17958;
}

.tab-wrapper .nav-tabs .nav-item button.active {
    background-color: #fff;
    color: #a17958;
    border: 2px solid #a17958;
}

.swiper-button-prev.porto-swiper-previous,
.swiper-button-next.porto-swiper-next {
    position: absolute;
    top: 50%;
    backdrop-filter: blur(5px);
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #976e4e;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999999999999999999999;
    cursor: pointer;
}

.modal-porto-content
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    z-index: 99999999999999999999999999999;
    bottom: 5px;
}

.porto-content-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid #ffff;
}

.porto-content-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #d9d9d9;
    border: none;
}

#modalPorto .modal-body {
    max-height: 616px;
    height: 616px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: none;
}

#modalPorto .modal-content {
    /* width: 100%; */
    max-width: fit-content;
    border: none;
}

/* .modal-porto-content {
    max-width: fit-content;
    width: fit-content;
} */

.porto-card-content {
    align-items: center;
    justify-content: center;
    display: flex;
    border: none;
    background-color: transparent;
    padding: 0rem;
    /* background-color: #ffc49e; */
    border-radius: 12px;
    transition: all 0.3s;
}

.porto-card-content .image {
    max-width: 320px;
    width: 100%;
    border-radius: 12px;
}

.porto-card-content .image img {
    border-radius: 12px;
}

.porto-card-content:hover {
    box-shadow: 0px 6px 43px -10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 6px 43px -10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 6px 43px -10px rgba(0, 0, 0, 0.3);
}

.modal-porto-show .modal-content {
    background-color: transparent;
}

.modal-porto-show .modal-content .btn-back {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 12px;
}

.modal-porto-show .modal-content .back.btn-utama {
    background-color: transparent;
    opacity: 0.8;
    backdrop-filter: blur(2px);
    border: 2px solid white;
    display: flex;
    align-items: center;
    height: 42px;
    width: 42px;
    justify-content: center;
    padding: 0px !important;
}

.modal-porto-show .modal-content .back.btn-utama:hover {
    opacity: 1;
    color: white;
    border: 2px solid white;
}

.modal-content .modal-porto-left {
    padding: 3rem 2rem;
}

/* Skeleton loader */
.skeleton-item {
    display: flex;
    flex-direction: column;
    animation: shimmer 0.3s infinite linear;
}

.skeleton-picture {
    width: 100%;
    height: 120px;
    background: #e6e6e6;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.skeleton-row {
    display: flex;
    flex-direction: column;
}

.skeleton-text {
    height: 20px;
    background: #e6e6e6;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.skeleton-image-lottie {
    height: 18rem;
    background: #e6e6e6;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.skeleton-text.md {
    width: 70%;
}

.skeleton-text::before,
.skeleton-picture::before,
.skeleton-image-lottie::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(255, 255, 255) 50%,
        transparent 100%
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -150px;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/*====================================== SECTION CONTACT ======================================*/
section.section-contact-hero {
    overflow: hidden;
    height: 100vh;
    background-image: url("../images/porto-hero-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.about-contact .image {
    max-width: 400px;
    margin: 0 auto 20px auto;
}
.contact-socmed-wrapper {
    margin-top: 0;
    margin-bottom: 40px;
}
.contact-wrapper .contact-socmed {
    display: inline-block;
    margin-top: 10px;
    margin-right: 15px;
}
.contact-wrapper .contact-socmed .image {
    width: 48px;
    height: 48px;
    transition: all 0.3s;
}
.contact-wrapper .contact-socmed .image:hover {
    transform: translateY(-5px);
}
.form-contact {
    max-width: 568px;
    margin: 0 auto;
}
section.section-contact {
    padding-top: 40px;
}
/*====================================== SECTION FOOTER ======================================*/
footer.footer {
    /*display: none;*/
    position: relative;
    background-color: #fff;
    margin: 100px 0 25px 0;
    /*background-image: url("../images/bg-signup.png");*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
}
.footer-menu ul li {
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s;
}
.footer-menu ul li:hover {
    transform: translateY(-5px);
}
.footer-copyright .image {
    display: inline-block;
    max-width: 75px;
    height: 75px;
    margin: 15px;
    transition: all 0.3s;
}
.footer-logo .image a {
    display: block;
    width: 100%;
    height: 100%;
}
.footer-logo .image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}
