@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

:root {
    --primary-gd: transparent linear-gradient(140deg, #384967 0%, #6f91cd 100%) 0% 0% no-repeat padding-box;
    --c-primary: #bc8c24;
    --c-secondary: #bd8c23;
    --c-body: #000000;
    --c-black: #212529;
    --c-info: #9597a1;
    --c-red: #d0342c;
    --c-white: #ffffff;
    --c-grey: #d1d1d1;
    --c-disabled: #dee1e8;
    --c-transparent: transparent;
    --c-skeleton: #464646;
    --shadow-bg: 0px 6px 18px rgb(0 0 0 / 8%);
    --shadow-skeleton: 0px 6px 18px rgb(0 0 0 / 3%);
    --ts-cubic: all 0.5s cubic-bezier(0.47, 0.71, 0.66, 0.84);
}

*,
::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: var(--c-primary);
    color: var(--c-white);
}

html,
body {
    font-family: "Alexandria", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    font-weight: 500;
    font-style: normal;
    background-color: var(--c-body);
    color: var(--c-white);
    width: 100%;
    height: 100%;
    overflow-y: overlay;
    transition: ease 0.3s;
}

.h-font {
    font-family: "Poppins", sans-serif;
}

.b-font {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.875rem;
    font-weight: 500;
}

h4 {
    font-size: 1.375rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* h6 {
	font-size: 1.2rem;
	line-height: 0;
} */

p {
    font-size: 1rem;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0px;
}

small {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0;
}

ul {
    list-style: none;
    padding: 0px;
    margin-left: 12px;
}

a {
    color: var(--c-black);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    /* text-decoration: none; */
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-font-smoothing: antialiased;
}

a:hover,
a:focus,
a:active {
    /* color: var(--c-primary) !important; */
    color: var(--c-primary) !important;
}

span,
i {
    transition: all 0.3s !important;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

img.icon-16 {
    width: 1rem;
    height: 1rem;
}

img.icon-24 {
    width: 1.5rem;
    height: 1.5rem;
}

img.icon-32 {
    width: 2rem;
    height: 2rem;
}

img.icon-48 {
    width: 3rem;
    height: 3rem;
}

img.icon-64 {
    width: 4rem;
    height: 4rem;
}

.img-128 {
    width: 8rem;
}

.img-192 {
    width: 12rem;
}

.img-240 {
    width: 15rem;
}

.img-rounded {
    border-radius: 50%;
}

.shadow-bg {
    box-shadow: var(--shadow-bg);
}

hr {
    margin-top: 1.2496px;
    margin-bottom: 1.2496px;
    border: 0;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

i {
    transition: all 0.3s;
}

.ts-03 {
    transition: ease-in-out 0.3s;
}

.ts-05 {
    transition: ease-in-out 0.5s;
}

.ts-spring {
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================== 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;
    background-color: transparent;
    color: #fff;
}

.form-control[disabled] {
    border: 0;
    background-color: var(--c-disabled);
}

.form-control[disabled]:hover {
    border: 0;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group-icon input.form-control {
    padding-right: 3rem;
}

.form-control::placeholder {
    opacity: 0.3;
}

.has-error .form-control {
    box-shadow: none;
}

input.form-control {
    position: relative;
    height: 3rem;
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid;
    border-color: var(--c-grey);
    color: var(--c-black);
    /* box-shadow: rgba(0, 0, 0, 0) 0px 2px 4px; */
    box-shadow: none;
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    transition: all 0.3s;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: rgb(205, 205, 205);
}

input.form-control:hover,
input.form-control:focus,
input.form-control:active {
    color: var(--c-black);
    background-color: var(--c-white);
    border-color: var(--c-primary);
}

input.form-control[readonly] {
    background-color: var(--c-disabled);
    cursor: default;
    border: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

select.form-control {
    background-color: #ebf2ff !important;
    cursor: pointer;
    height: auto;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    /* letter-spacing: 1rem; */
    font-weight: 400;
    /*background-color: 08284b;*/
    border: 0.0625rem solid var(--c-grey);
    color: var(--c-black);
    border: 1px solid;
    border-color: var(--c-grey);
    border-radius: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    background-image: url("../images/general/dd-b-bot.svg");
    background-size: 0.75rem;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

select.form-control:hover,
select.form-control:focus,
select.form-control:active {
    border-color: #bfc7d7;
    color: var(--c-black);
}

.select2-container--default .select2-selection--single {
    height: 2.5rem !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: var(--c-black) !important;
    font-size: 1rem !important;
    font-weight: 600;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0.3125rem !important;
}

ul.select2-results__options>li:hover {
    color: var(--c-black) !important;
    /* background-color: #ffe3b8 !important; */
}

.select2-container--default .select2-results__option--selected {
    color: var(--c-white) !important;
    background-color: var(--c-primary) !important;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted {
    color: var(--c-white) !important;
    background-color: var(--c-primary) !important;
}

li.select2-results__option--selectable {
    color: var(--c-black) !important;
}

textarea.form-control {
    background-color: var(--c-transparent);
    /* height: 3.125rem; */
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    letter-spacing: 1rem;
    color: var(--c-black);
    border: 0;
    border-bottom: 1px solid;
    border-color: #bfc7d7;
    border-radius: 0;
    text-transform: none;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    transition: all 0.3s;
    /*resize: none;*/
}

textarea.form-control:hover,
textarea.form-control:focus,
textarea.form-control:active {
    background-color: var(--c-transparent);
    border-color: 1px solid var(--c-primary);
    color: var(--c-black);
}

label.control-label {
    position: relative;
    font-size: 0.875rem;
    color: var(--c-black);
    /* letter-spacing: .0625rem; */
    font-weight: 400;
    border-radius: 0;
    margin-left: 0;
    margin-bottom: 0.25rem;
}

.underline {
    text-decoration: underline;
}

/*====================================== SECTION MODAL SECTION ======================================*/
.modal {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-open {
    padding-right: 0 !important;
}

.modal-content {
    max-height: 90vh;
    /* height: 100%; */
    background-color: #fff;
    border: 0;
    border-radius: 1.25rem;
}

.modal-header {
    border: 0;
    padding: 1.5rem 2rem;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    border-color: var(--c-grey);
}

.modal-header .modal-logo {
    max-width: 7.25rem;
    margin: 0 auto 1rem auto;
}

.modal-close .close,
.modal-header .close {
    z-index: 99999;
    opacity: 1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--c-primary);
    border: 0;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close .close span,
.modal-header .close span {
    font-size: 1.25rem;
    color: var(--c-white);
    position: relative;
    transition: all 0.3s;
}

.modal-close .close:hover,
.modal-header .close:hover {
    opacity: 1;
    background-color: #f54036;
}

.modal-close .close:hover span,
.modal-header .close:hover span {
    color: var(--c-white);
}

.modal-bg-wa {
    border: 1px solid var(--c-primary);
    background-color: #000000ca;
}

.modal-body {
    height: 100%;
    padding: 2rem 2rem;
}

.modal.fade {
    overflow: hidden;
}

.modal.fade .modal-dialog {
    transition: transform 0.5s ease-in-out, filter 1s ease-out;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transform: translate(30px, 999px) rotate(0) scale(0);
}

.modal.fade.show .modal-dialog {
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: translate(0, 0) rotate(0) scale(1);
}

.modal.fade.show .modal-dialog .modal-content {
    overflow-y: auto;
}

.modal-footer {
    border-top: 0.0625rem solid rgb(222, 226, 230);
    padding: 1rem;
    /*border: 0;*/
    text-align: center;
}

/*====================================== SECTION COMPONENT BUTTON ======================================*/
.btn-ans {
    position: relative;
    outline: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 1.5;
    align-items: center;
    display: inline-flex;
    border: 0;
    padding: 1rem 1.5rem 1rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
    color: var(--c-primary);
    -webkit-box-pack: center;
    vertical-align: middle;
    justify-content: center;
    -webkit-box-align: center;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    text-decoration: none;
    outline: 0;
}

.btn-ans:hover,
.btn-ans:active,
.btn-ans:target,
.btn-ans:focus {
    /* transform: scale(1.05) skewX(-20deg); */
    outline: 0;
    box-shadow: none;
}

.btn-ans:focus {
    /* transform: scale(1) skewX(-20deg); */
    box-shadow: none;
}

.btn-ans:focus:hover {}

.btn-ans-contact {
    position: relative;
    outline: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 1.5;
    align-items: center;
    display: inline-flex;
    padding: 0.5rem 1.5rem 0.5rem 2.25rem;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    border-radius: 1rem;
    -webkit-box-pack: center;
    vertical-align: middle;
    justify-content: center;
    -webkit-box-align: center;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    text-decoration: none;
    outline: 0;
}

.btn-ans-contact:hover,
.btn-ans-contact:active,
.btn-ans-contact:target,
.btn-ans-contact:focus {
    /* transform: scale(1.05) skewX(-20deg); */
    outline: 0;
    box-shadow: none;
}

.btn-ans-contact:focus {
    /* transform: scale(1) skewX(-20deg); */
    box-shadow: none;
}

.btn-ans-contact:focus:hover {}

.btn-nohov:focus,
.btn-nohov:hover,
.btn-nohov:active,
.btn-nohov:target,
.btn-nohov:focus:hover,
.btn-disable:focus,
.btn-disable:hover,
.btn-disable:active,
.btn-disable:target,
.btn-disable:focus:hover {
    background-color: var(--c-primary);
}

.btn-primary {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    font-weight: 500;
    background: var(--c-transparent);
    color: var(--c-white);
    perspective: 400px;
    background-color: transparent;
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, transparent), to(rgba(255, 255, 255, 0.4)));
}

.btn-primary span {
    display: block;
    position: relative;
    transition: 0.3s ease-in-out all;
    transform-origin: 50% 0;
    transform-style: preserve-3d;
    background-color: black;
    color: white;
    width: 100%;
}

.btn-primary span:after {
    opacity: 0;
    display: block;
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s ease-in-out all;
    transform-origin: 50% 0;
    transform: translate3d(0px, 105%, 0px) rotateX(-90deg);
    background-color: var(--c-transparent);
    color: var(--c-white);
    width: 100%;
}

.btn-primary:hover span {
    transform: translate3d(0px, 0px, -30px) rotateX(90deg);
}

.btn-primary:hover span:after {
    opacity: 1;
}

.btn-primary::before {}

.btn-primary:hover {
    background-color: var(--c-transparent);
    border-color: inherit;
    /* padding: 0.5rem 2.25rem 0.5rem 0.75rem; */
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary span:active:after,
.btn-primary span:focus:after {
    background-color: var(--c-transparent);
    border-color: var(--c-primary);
    /* color: var(--c-primary); */
}

.btn-primary:focus:hover,
.btn-primary:active:hover,
.btn-primary span:hover:after,
.btn-primary span:hover:after {
    background-color: var(--c-transparent);
}

.btn-secondary {
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    font-weight: 500;
    background: var(--c-primary);
    color: var(--c-white);
}

.btn-secondary:hover {
    background-color: var(--c-white);
}

.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--c-white);
}

.btn-secondary:hover span {
    color: var(--c-primary) !important;
}

.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--c-white);
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.btn-primary:hover span.btn-text,
.btn-primary:focus:hover span.btn-text {
    color: var(--c-white) !important;
}

.btn-primary:active span.btn-text,
.btn-primary:focus span.btn-text {
    color: var(--c-primary) !important;
}

.btn-ans:hover::before {
    width: 100%;
}

.btn-primary:focus .btn-icon span.btn-icon-i {
    color: var(--c-white) !important;
}

.btn-primary:focus:hover .btn-icon span.btn-icon-i {
    color: var(--c-primary) !important;
}

.btn-tertiary {
    overflow: hidden;
    position: relative;
    border-color: var(--c-white);
    padding: 0.5rem 0.75rem 0.5rem 2.25rem;
    font-weight: 500;
    background: var(--c-white);
    color: var(--c-white);
}

.btn-tertiary::before {
    display: none;
    content: "";
    position: absolute;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 0;
    background-color: var(--c-primary);
    transition: all 0s cubic-bezier(0.47, 0.71, 0.66, 0.84);
}

.btn-tertiary .btn-icon span.btn-icon-i {
    background-color: var(--c-primary);
    color: var(--c-white);
}

.btn-tertiary:hover .btn-icon span.btn-icon-i {
    background-color: var(--c-tertiary);
    color: var(--c-primary);
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus {
    background-color: var(--c-primary);
    padding: 0.5rem 2.25rem 0.5rem 0.75rem;
}

.btn-tertiary:hover span.btn-text {
    color: var(--c-white) !important;
}

.btn-link {
    background-color: var(--c-transparent);
    color: var(--c-primary);
    text-decoration: underline;
}

.btn-link:hover,
.btn-link:active,
.btn-link:focus {
    background-color: var(--c-transparent);
    color: var(--c-primary);
    text-decoration: underline;
}

.btn-load {
    color: var(--c-primary-600);
}

.btn-load:before,
.btn-load:active,
.btn-load:focus {
    background-color: var(--c-primary-600) !important;
}

.underline-cta {
    border-bottom: 1px solid var(--c-primary);
}

.btn-google {
    border: 1px solid #e7e7e9;
    background-color: var(--c-white) !important;
    color: var(--c-black) !important;
}

.btn-google:hover {
    color: var(--c-black) !important;
    border-color: #dbdbde !important;
    box-shadow: none !important;
}

.btn-fb {
    background-color: #4267b2;
    color: var(--c-white) !important;
}

.btn-fb:hover {
    box-shadow: none !important;
}

.cta a:hover span {
    color: var(--c-primary);
}

.wa-bg {
    background-color: #25d366;
}

.btn-ans.btn-disable {
    opacity: 0.2 !important;
    cursor: default !important;
}

.btn-ans.disabled {
    background-color: var(--c-disabled);
    cursor: default !important;
}

.btn-ans.disabled:hover,
.btn-ans.disabled:active,
.btn-ans.disabled:focus {
    box-shadow: none;
    transform: scale(1);
}

.btn-modal {
    background-color: var(--c-transparent);
    border: 0;
    padding: 0 !important;
    box-shadow: none;
}

#select-dropdown {
    margin-top: 0.25rem;
    background: transparent;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    outline: 0;
    display: block;
    text-align: left;
    font-size: 1rem;
    width: 100%;
    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: 13.5rem;
}

.button-group .marka {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 9999;
}

.button-group .marka i {
    background: grey !important;
}

.marka-icon-times {
    border: 1px solid grey;
    border-radius: 50%;
    top: 0.25rem !important;
    right: 0.25rem !important;
}

#dropdown-menu {
    position: absolute;
    top: -1rem;
    right: 0;
    left: 0;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    width: 100%;
    list-style: none;
    text-align: left;
    border-radius: 0.25rem;
    background: var(--c-white);
    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: 1.5rem;
    margin-bottom: 1rem;
    -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: 1rem;
}

#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 COMPONENT WORDING ======================================*/
.sc-main {
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--c-black);
    transition: all 0.3s;
}

.sc-l {
    font-size: 1.375rem;
}

.sc-m {
    font-size: 1.125rem;
    font-weight: 300;
}

.sc-s {
    font-size: 1rem;
}

.sc-s-light {
    font-size: 1rem;
    font-weight: 300;
}

.sc-xs {
    font-size: 0.75rem;
}

.sta-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.sc-break {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.c-small {
    font-size: 0.625rem;
    line-height: 1.5;
}

.c-primary {
    color: var(--c-primary) !important;
}

.c-primary-800 {
    color: var(--c-primary) !important;
}

.c-primary-600 {
    color: var(--c-primary-600) !important;
}

.c-primary-500 {
    color: var(--c-primary-500) !important;
}

.c-secondary {
    color: var(--c-secondary) !important;
}

.c-white {
    color: var(--c-white) !important;
}

.c-black {
    color: var(--c-black) !important;
}

.c-tertiary {
    color: var(--c-tertiary) !important;
}

.c-black-secondary {
    color: var(--c-b-secondary) !important;
}

.c-info {
    color: var(--c-info) !important;
}

.c-red {
    color: var(--c-red) !important;
}

.c-grey {
    color: var(--c-grey) !important;
}

.c-lvl-1 {
    color: var(--c-lvl-1) !important;
}

.c-lvl-2 {
    color: var(--c-lvl-2) !important;
}

.c-lvl-3 {
    color: var(--c-lvl-3) !important;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

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

.x-bold {
    font-weight: 800 !important;
    /* letter-spacing: 1; */
}

.xx-bold {
    font-weight: 900;
}

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

.rd-sm {
    border-radius: 0.25rem;
}

.rd-md {
    border-radius: 0.5rem;
}

.rd-lg {
    border-radius: 0.75rem;
}

.rd-h {
    border-radius: 1.5rem;
}

.rd-50 {
    border-radius: 50%;
}

.rd-t-sm {
    border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.rd-t-md {
    border-radius: 0.5rem 0.5rem 0rem 0rem;
}

.rd-t-lg {
    border-radius: 0.75rem 0.75rem 0rem 0rem;
}

.rd-t-h {
    border-radius: 1.5rem 1.5rem 0rem 0rem;
}

.rd-b-sm {
    border-radius: 0rem 0rem 0.25rem 0.25rem;
}

.rd-b-md {
    border-radius: 0rem 0rem 0.5rem 0.5rem;
}

.rd-b-lg {
    border-radius: 0rem 0rem 0.75rem 0.75rem;
}

.rd-b-h {
    border-radius: 0rem 0rem 1.25rem 1.25rem;
}

.br-primary {
    border-color: var(--c-primary);
}

.br-red {
    border-color: var(--c-red);
}

.no-transform {
    text-transform: none !important;
}

.bg-primary {
    background-color: var(--c-primary) !important;
}

.bg-primary-gd {
    background: var(--primary-gd) !important;
}

.bg-secondary {
    background-color: var(--c-secondary) !important;
}

.bg-tertiary {
    background-color: var(--c-tertiary) !important;
}

.bg-white {
    background-color: var(--c-white) !important;
}

.bg-black {
    background-color: var(--c-black) !important;
}

.bg-red {
    background-color: var(--c-red) !important;
}

.bg-transparent {
    background-color: var(--c-transparent) !important;
}

.bg-wa {
    background-color: #25d366 !important;
}

.bg-fb {
    background-color: #4267b2 !important;
}

.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.max-16 {
    max-width: 1rem !important;
}

.max-24 {
    max-width: 1.5rem !important;
}

.max-32 {
    max-width: 2rem !important;
}

.max-40 {
    max-width: 2.5rem !important;
}

.max-48 {
    max-width: 3rem !important;
}

.max-64 {
    max-width: 4rem !important;
}

.max-84 {
    max-width: 5.25rem !important;
}

.max-100 {
    max-width: 6.25rem !important;
}

.max-128 {
    max-width: 8rem !important;
}

.max-160 {
    max-width: 10rem !important;
}

.max-240 {
    max-width: 15rem !important;
}

.max-320 {
    max-width: 20rem !important;
}

.max-360 {
    max-width: 22.5rem !important;
}

.max-400 {
    max-width: 25rem !important;
}

.max-480 {
    max-width: 30rem !important;
}

.max-640 {
    max-width: 40rem !important;
}

.max-720 {
    max-width: 45rem !important;
}

.max-840 {
    max-width: 52.5rem !important;
}

.max-1024 {
    max-width: 64rem !important;
}

.max-1140 {
    max-width: 71.25rem !important;
}

.z-m-3 {
    z-index: -3;
}

.z-m-2 {
    z-index: -2;
}

.z-m-1 {
    z-index: -1;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.subject-title {
    max-width: 64rem;
    margin: 0 auto;
}

.subject-desc,
.subject-info {
    max-width: 64rem;
    margin: 0 auto;
}

.sticky-subhead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.no-result {
    background-color: var(--c-primary-500);
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.cover {
    object-fit: cover;
}

.c-default {
    cursor: default;
}

.pointer {
    cursor: pointer;
}

.line-clamp-1 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.line-clamp-2 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.line-clamp-3 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.line-clamp-4 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.line-clamp-5 {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.custom-choose {
    display: flex;
}

.custom-choose input[type="checkbox"],
.custom-choose input[type="radio"] {
    display: none;
}

.custom-choose input[type="checkbox"]+label,
.custom-choose input[type="checkbox"]:not(checked)+label,
.custom-choose input[type="radio"]+label,
.custom-choose input[type="radio"]:not(checked)+label {
    cursor: pointer;
    padding: 12px 32px;
    border: solid 1px var(--c-transparent);
    background-color: var(--c-body);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}

.custom-choose input[type="checkbox"]:checked+label,
.custom-choose input[type="radio"]:checked+label {
    position: relative;
    border: solid 1px var(--c-primary);
    background-color: var(--c-body);
    color: var(--c-primary);
    transition: all ease-in-out 0.3s;
}

/*====================================== SECTION NAVBAR ======================================*/
header {
    /* overflow: hidden; */
    position: sticky;
    /* border-bottom: 1px solid var(--c-primary); */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    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);
}

header nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 1rem;
    background-color: var(--c-body);
    transition: var(--ts-cubic);
}

.container-nav {
    padding: 0.5rem;
    /* max-width: 1024px; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    background-color: var(--c-transparent);
    border: 1px solid var(--c-transparent);
    box-shadow: 0;
    transition: all 0.5s;
}

header nav#navigation.scrolled {
    background-color: transparent;
}

header nav#navigation.scrolled .container-nav {
    /* backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(8px); */
    border-radius: 48px;
    background-color: transparent;
    /* border-color: var(--c-primary); */
    /* box-shadow: 0px -4px 16px 4px rgb(0 0 0 / 24%); */
}

header nav#navigation.scrolled .nav-menu li a {
    color: var(--c-white);
}

.nav-menu li.active::before {
    content: "";
    position: absolute;
    left: 30%;
    top: 0.25rem;
    width: 3rem;
    height: 3rem;
    background: #be8c22 0% 0% no-repeat padding-box;
    opacity: 1;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    transition: all 0.3s;
}

header nav#navigation.scrolled .nav-menu li.active::before {
    top: 0.5rem;
    left: 35%;
    width: 2rem;
    height: 2rem;
    filter: blur(20px);
    -webkit-filter: blur(20px);
}

header nav#navigation.scrolled .nav-menu li.active a span,
header nav#navigation.scrolled .nav-menu li.active a:hover span {
    color: var(--c-primary);
}

header nav#navigation.scrolled .container-nav .nav-logo a .image {
    width: 6rem;
}

.nav-toggle-mobile {
    display: none;
}

.container-nav .nav-logo {
    /* background-color: var(--c-body); */
    opacity: 1;
    z-index: 2;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    border-bottom-right-radius: 1rem;
}

.container-nav .nav-logo a {
    display: block;
    padding: 0;
}

.container-nav .nav-logo a .image {
    width: 8rem;
    transition: ease-in-out 0.5s;
}

.nav-menu {
    width: 100%;
    transition: var(--ts-cubic);
}

.nav-menu ul li {
    position: relative;
    flex-shrink: 0;
    /* transition: all 0.3s; */
}

.nav-menu li a {
    z-index: 2;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    opacity: 1;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-white);
    border: 1px solid var(--c-transparent);
    padding: 0.75rem 1.25rem;
    border-radius: 1.5rem;
    text-decoration: none;
}

.nav-menu li a span {
    position: relative;
    transition: all 0.6s !important;
}

.nav-menu li a:hover span {
    color: var(--c-primary);
}

header nav#navigation.scrolled .nav-menu li a {
    font-size: 1rem;
}

.nav-menu li.active a span::before {
    width: 100%;
}

header nav#navigation.scrolled .nav-menu li a:hover span {
    color: var(--c-primary);
}

.nav-menu li a:active,
.nav-menu li a:focus {
    color: var(--c-black);
}

.nav-menu li.active a {
    border-radius: 0;
}

.nav-menu li.active a,
.nav-menu li.active a:hover {
    color: var(--c-primary) !important;
}

.nav-menu li:hover .nav-icon,
.nav-menu li:hover .notif-menu-count {
    transform: scale(1.2);
}

.nav-menu li.active a span,
.nav-menu li.active a:hover span {
    font-weight: 700;
    color: var(--c-primary);
}

.menu-nav {
    max-width: 100%;
    width: 100%;
    list-style: none;
    margin: 0 auto;
    z-index: 9;
    position: relative;
    display: flex;
    padding: 0.25rem 1rem;
    opacity: 1;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--c-transparent);
    text-align: center;
    transition: ease-out 0.5s;
}

.menu-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

.menu-nav-end {
    flex-shrink: 0;
    background: transparent linear-gradient(169deg, #8f6714 0%, #000000 47%, #664500 100%) 0% 0% no-repeat padding-box;
    /* border: 1px solid var(--c-primary); */
    border-radius: 2rem;
    transition: all 0.3s;
}

header nav#navigation.scrolled .menu-nav {
    transform: translateX(-64px);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 48px;
    background-color: transparent;
    border-color: var(--c-primary);
    box-shadow: 0px -4px 16px 4px rgb(0 0 0 / 64%);
    max-width: 548px;
    margin: 0 auto;
}

header nav#navigation.scrolled .menu-nav-end {
    background: transparent linear-gradient(169deg, #8f661400 0%, #00000000 47%, #66460000 100%) 0% 0% no-repeat padding-box;
}

.change-lang .change-lang-wrapper {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--c-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

.menu-container-mobile,
.close-mobile {
    display: none;
}

.dropdown-menu-wrapper {
    display: none;
    opacity: 0;
    top: 50px;
    right: 0;
    position: absolute;
    border: 1px solid var(--c-grey);
    background-color: var(--c-body);
    min-width: 15rem;
    transition: all 0.3s;
}

.dropdown-menu-wrapper ul {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.dropdown-menu-wrapper.show {
    overflow: hidden;
    display: block;
    opacity: 1;
    transition: all 0.3s;
}

.dropdown-menu-list {
    width: 100%;
    padding: 5px;
    transition: all 0.3s;
}

.toggle-dropdown:hover {
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-dropdown-notification:hover {
    cursor: pointer;
    transition: all 0.3s;
}

.nav-menu .nav-close {
    z-index: 999;
    display: flex;
    position: absolute;
    top: 0;
    right: 28px;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
    box-shadow: none;
    border: none;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--c-black);
    opacity: 0;
    transition: ease-in-out 0.6s;
}

.swiper {
    overflow: clip;
}

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background: transparent;
    width: auto;
    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-wrapper .swiper-slide>a {
    width: 100%;
}

.swiper-button-next {
    background-color: var(--c-transparent);
    background-image: url("../images/general/arrow-right.svg") !important;
    opacity: 1;
    transition: all 0.3s;
    right: 1.5rem;
    padding: 1rem;
    /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
    box-shadow: none;
}

.swiper-button-prev {
    background-color: var(--c-transparent);
    background-image: url("../images/general/arrow-left.svg") !important;
    opacity: 1;
    transition: all 0.3s;
    left: 1.5rem;
    /* box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%); */
    box-shadow: none;
}

.swiper-button-next,
.swiper-button-prev {
    top: 45%;
    width: 2rem !important;
    height: 2rem !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    opacity: 0;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.2;
}

.swiper-pagination-bullet {
    width: 1rem;
    height: 0.25rem;
    border-radius: 1.25rem;
}

.swiper-pagination-bullet-active {
    background: var(--c-primary);
}

.outline-font {
    color: var(--c-white);
    color: rgba(255, 255, 255, 1);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--c-white);
}

/*====================================== SECTION HOME PAGE ======================================*/
section {
    /* max-width: 1920px; */
    margin: 0 auto;
    padding: 4rem 0;
}

.container-fluid {
    /* max-width: 1920px; */
    margin: 0 auto;
}

section.section-hero {
    padding-top: 2rem;
    /* background-color: #ebc12e; */
    background: transparent linear-gradient(180deg, #efca37 0%, #6a3e00 100%, #161616 10%) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.bg-divider {
    position: relative;
    margin-top: -1rem;
    width: 100%;
    height: 5rem;
    background: transparent linear-gradient(180deg, #573700 0%, #000000 20%) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.bg-pulse {
    position: absolute;
    width: 10rem;
    height: 10rem;
    background: #be8c22 0% 0% no-repeat padding-box;
    opacity: 1;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.bg-divider .bg-pulse {
    z-index: 2;
    top: 5rem;
    left: -3rem;
}

section.section-home-about {
    padding-top: 0;
}

.home-about-container .bg-pulse {
    bottom: 5rem;
    right: 0;
}

.home-contact-desc {
    height: auto;
    padding: 8rem 0;
}

.bg-home-contact {
    top: -1rem;
    left: 0;
    width: 100%;
    height: fit-content;
    opacity: 0.2;
}

.home-about-img {
    display: inline-block;
    width: 14rem;
    height: 5rem;
}

.wrapper-marq {
    /* padding: 0.5rem 0; */
    height: auto;
    width: 120%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: var(--c-transparent);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marq-container::before {
    z-index: 9;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5rem;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), var(--c-body));
}

.marq-container::after {
    z-index: 9;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 5rem;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            var(--c-body));
}

.wrapper-marq .box-marq {
    z-index: 2;
    position: relative;
    overflow: hidden;
    width: 120%;
    display: flex;
    border: 0;
    align-items: center;
    margin: 0 2rem 0 0;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.box-marq .image {
    display: flex;
    width: 20rem;
}

.wrapper-marq.marq-flip {
    margin-left: -20%;
    transform: scale(-1, 1);
    -moz-transform: scale(1, -1);
    -o-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
}

.wrapper-marq.marq-flip .box-marq .image {
    transform: scale(-1, 1) !important;
    -moz-transform: scale(1, -1) !important;
    -o-transform: scale(1, -1) !important;
    -ms-transform: scale(1, -1) !important;
}

.box-marq .image img {
    padding: 1rem;
}

section.section-home-segmen .bg-pulse {
    top: 15rem;
    right: 0;
}

section.section-home-segmen::before {
    z-index: 9;
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 8rem;
    width: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), var(--c-body));
    overflow: hidden;
}

section.section-home-segmen::after {
    z-index: 9;
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 8rem;
    width: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            var(--c-body));
    overflow: hidden;
}

.home-segmen-container {
    height: 125vh;
}

.inseg-card-wrapper {
    opacity: 0.6;
    position: absolute;
}

.inseg-card-wrapper.one {
    top: 320px;
    left: 32px;
}

.inseg-card-wrapper.two {
    top: 720px;
    left: 20%;
}

.inseg-card-wrapper.three {
    top: 160px;
    left: 35%;
}

.inseg-card-wrapper.four {
    top: 680px;
    right: 35%;
}

.inseg-card-wrapper.five {
    top: 320px;
    right: 10%;
}

.inseg-card-wrapper.six {
    top: 720px;
    right: 5%;
}

.inseg-card {
    opacity: 1;
    position: relative;
    padding: 1rem 0.5rem 1.5rem 0.5rem;
    width: 12rem;
    height: 17rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
}

.inseg-card .inseg-desc {
    bottom: 0.5rem;
    left: 0.5rem;
}

.inseg-card .inseg-desc h5 {
    font-size: 1rem;
    line-height: 1.5rem;
}

section.section-home-service .bg-pulse {
    bottom: 45%;
    left: -3rem;
}

.home-service-cover,
.home-fleet-image {
    position: relative;
    width: 100%;
    height: 100vh;
}

.home-service-cover .image::before,
.home-fleet-image .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

#service_word,
#fleet_word {
    position: absolute;
    opacity: 0;
    transform: scale(0.6);
}

section.section-home-strength .bg-pulse {
    top: 0rem;
    left: 2rem;
}

.swiper-button-swiper.strength .swiper-button-prev,
.swiper-button-swiper.strength .swiper-button-next {
    top: auto;
    bottom: 0.5rem;
    height: 2.5rem !important;
    width: 2.5rem !important;
}

.str-card {
    height: 30rem;
    padding: 1rem 0.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.15);
}

section.section-home-fleet {
    margin-top: 2rem;
}

.home-fleet-image {
    transform: scale(2);
}

.section-home-fleet {
    margin-top: -5rem;
}

.section-home-fleet .subject-title {
    margin-top: -12rem;
}

.home-career-desc .bg-pulse {
    bottom: 10rem;
    right: 0rem;
}

.home-contact-desc .bg-pulse {
    bottom: 10rem;
    left: -4rem;
}

/*====================================== SECTION ABOUT  ======================================*/
.canvas-container canvas {
    max-width: 100%;
    max-height: 100%;
    margin: -100px auto 0 auto;
}

.canvas-container {
    display: flex;
    position: relative;
    justify-content: center;
    z-index: 1;
    max-width: 1440px;
    margin: auto;
    width: 100%;
    height: 100%;
}

.row-gap-3 {
    row-gap: 3em;
}

.home-hero-canvas {
    margin: 0 auto 3rem auto;
}

section.section-about-hero .subject-title {
    margin-top: -10rem;
}

section.section-about-hero .subject-title .bg-pulse {
    left: -18rem;
    bottom: 15rem;
}

.about-vm-container {
    margin-top: -3rem;
}

.vm-video {
    width: 100%;
    height: 117vh;
}

.vm-video video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-desc {
    top: 10rem;
    right: 1rem;
    max-width: 720px;
}

.nasking-section .wrapper {
    min-height: 100vh;
}

.masking-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.masking-section::before {
    content: "";
    z-index: 5;
    position: absolute;
    width: 100%;
    top: -6px;
    left: 0;
    height: 10rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0) 0%,
            var(--c-body) 100%);
    pointer-events: none;
    overflow: hidden;
}

.masking-section::after {
    content: "";
    z-index: 5;
    position: absolute;
    width: 100%;
    bottom: -6px;
    left: 0;
    height: 10rem;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            var(--c-body) 100%);
    pointer-events: none;
    overflow: hidden;
}

.masking-section .image-mask {
    /* mix-blend-mode: lighten; */
}

.image-mask {
    position: relative;
    height: 110vh;
    width: 100%;
    /* background: #fff; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.img-masking {
    position: absolute;
    z-index: -1;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.client-masking {
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgb(0 0 0 / 75%);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    text-align: center;
    transform: scale(2.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-bg-pulse {
    position: absolute;
    top: 0;
    width: 40rem;
    height: 40rem;
}

section.section-about-map .bg-pulse {
    top: 15rem;
    left: -3rem;
}

.typewriter {
    opacity: 0;
}

section.section-about-map .subject-title {
    min-height: 9.875rem;
}

.home-client-top .client-top-wrapper .image {
    width: 25rem;
    height: 10rem;
    /* border: 2px solid var(--c-white); */
}

.home-client-top .client-top-wrapper .image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(#000000d6));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), #000000d6);
}

.home-client-list .image {
    width: 8rem;
    height: 8rem;
}

.home-client-top .client-top-wrapper .desc {
    top: 50%;
    left: 1rem;
    transform: translate(0, -50%);
}

.link-business a {
    display: block;
    border: 1px solid var(--c-primary);
    border-bottom: 0;
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/*====================================== SECTION SERVICE  ======================================*/
.service-card {
    border-top: 1px solid var(--c-primary);
    padding: 2rem 0 0.5rem 0;
    margin: 1.5rem 0 0 0;
}
.service-desc
{
    width: 100%;
}

.section-service-list .bg-pulse {
    top: 25%;
    left: -3rem;
}
.service-image .image {
    width: 100%;
    max-width: 480px;
    height: 15rem;
    margin-left: auto;
}

.hse-card {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -400px;
    left: -90px;
    overflow: hidden;
    opacity: 0;
    /* left: -160px; */
    transform: scale(1.5) rotateY(-90deg);
    /* transform-origin: left; */
    transform-style: preserve-3d;
}

.hse-bg-card {
    position: relative;
    width: 100%;
    height: 23.75rem;
    border: 1px solid var(--c-primary);
    background-color: #130e03;
    padding: 1rem;
    box-shadow: 0px 0px 18px 0 rgb(255 255 255 / 39%);
}

.hse-card .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hse-card .image img {
    object-fit: cover;
}

.hse-card .image::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10rem;
    width: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            var(--c-body));
}

.hse-card .desc {
    width: 100%;
    left: 0;
    bottom: 1rem;
}

.swiper-fleet .swiper-slide {
    align-items: start;
}

.fleet-card {
    padding: 1rem 0.5rem;
}

.fleet-image {
    height: 12.5rem;
}

.fleet-image .bg-pulse {
    top: 50%;
    left: 30%;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.col-tools {
    padding: 0;
}

.tools-card {
    background: transparent linear-gradient(169deg, #402f0b 0%, #000000 47%, #402f0b 100%) 0% 0% no-repeat padding-box;
    border: 1px solid var(--c-primary);
    padding: 1rem;
}

.col-tools:nth-child(2),
.col-tools:nth-child(4) {
    margin-top: 1.5rem;
}

.recent-gallery-indicator {
    position: absolute;
    left: 0;
    bottom: -4rem;
}

.gallery-indicator-list {
    margin: 0;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: none;
    width: 100%;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
}

.recent-gallery-wrapper::before {
    content: "";
    z-index: 5;
    position: absolute;
    width: 100%;
    bottom: -6px;
    left: 0;
    height: 10rem;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            var(--c-body) 100%);
    pointer-events: none;
    overflow: hidden;
}

#current_gallery {
    transition: opacity 0.3s ease;
}

.recent-gallery-content .image {
    height: 33.75rem;
    overflow: hidden;
}

.gallery-list {
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.125rem;
    background: #ffffff33;
    border-radius: 4px;
}

.gallery-list .image {
    height: 5rem !important;
    width: 8rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-indicator-list img {
    user-select: none;
    pointer-events: none;
}

.gallery-list.background {
    transition: all 0.3s;
    padding: 0.125rem;
    background: var(--c-primary);
    border-radius: 4px;
}

.gallery-list .image.active {
    transition: all 0.3s;
    width: 10rem;
}

.recent-gallery-indicator .gallery-list .image img,
.recent-gallery-indicator .gallery-list .image.active img {
    border-radius: 4px;
}

/*====================================== SECTION CAREER  ======================================*/
.hero-page {
    width: 100%;
    height: 75vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-page::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 8rem;
    width: 100%;
    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(rgba(0, 0, 0, 0)),
            to(var(--c-body)));
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            var(--c-body));
    overflow: hidden;
}

.hero-page .subject-title {
    margin-bottom: -2rem;
}

.hero-divider {
    background-color: var(--c-primary);
    height: 0.125rem;
    width: 100%;
    margin: 0rem auto;
}

.career-card {
    border-top: 2px solid var(--c-primary);
}

.career-card .career-card-left {
    max-width: 75%;
}

.career-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: 1px solid var(--c-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
}

.career-label-icon {
    position: relative;
    top: -2px;
}

section.section-career-list .bg-pulse {
    bottom: 5%;
    right: 0;
}

section.section-career-list .bg-pulse:nth-child(2) {
    top: 15%;
    left: 0;
}

#modalDetailCareer .modal-header {
    padding: 0rem;
}

#modalDetailCareer .modal-body {
    padding: 2rem 1rem;
}

#modalDetailCareer .modal-footer {
    margin: 0;
    border-top: 0.0625rem solid var(--c-primary);
}

#modalDetailCareer .modal-footer>* {
    margin: 0;
}

.modal-bg-detail {
    background: #000000;
    opacity: 1;
    border-radius: 12px;
    box-shadow: 0 0 16px 4px #bc8c24be;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/*====================================== SECTION CONTACT  ======================================*/
.btn-ans-contact {
    position: relative;
    outline: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 1.5;
    align-items: center;
    display: inline-flex;
    border: 0;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    background-color: transparent;
    border: 1px solid var(--c-primary);
    border-radius: 1rem;
    -webkit-box-pack: center;
    vertical-align: middle;
    justify-content: center;
    -webkit-box-align: center;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    text-decoration: none;
    outline: 0;
}

.card-content-contact .contact-wrapper {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: none;
}

.contact-wrapper {
    margin-top: 64px;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.contact-line {
    width: 100%;
    border-right: 1px solid #bc8c24;
    padding: 2rem;
}

.contact-line:last-child {
    border-right: 0;
}

/*====================================== SECTION 404  ======================================*/
.empty-state .image {
    height: 20rem;
}

section.section-notfound {
    max-height: 100vh;
    height: 100vh;
}

section.section-notfound .subject-title h1 {
    font-size: 240px;
    line-height: 200px;
}

section.section-notfound .subject-title {
    top: 30vh;
}

.subject-nf-wrapper {
    bottom: 29vh;
}

.pagenotfound-top {
    height: 65vh;
}

.pagenotfound-bot {
    height: 50vh;
    bottom: 0;
    /* margin-top: -8rem; */
}

/*====================================== SECTION UPCOMING ======================================*/

.cs--container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.cs--container .image {
    position: absolute;
    bottom: -8px;
    left: 0;
    margin: 0 auto;
    min-width: 100%;
}

.cs--container .cs-mobile {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
}

.cs--container .desc {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.cs--container .desc .logo {
    background-color: #ffffffc2;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

/*====================================== SECTION FOOTER ======================================*/
.horn-wa {
    z-index: 99;
    position: fixed;
    bottom: 0.5rem;
    right: 0.5rem;
}

.horn-wa .image {
    width: 84px;
    height: 84px;
    background-color: var(--c-primary);
    border: 0;
    border-radius: 50%;
    background: transparent linear-gradient(169deg, #c99b3b 0%, #000000 47%, #815b0a 100%) 0% 0% no-repeat padding-box;
    transition: all 0.3s;
    -webkit-animation: steer 5s infinite;
}

.horn-wa .image:hover button {
    transform: scale(0.9);
}

@-webkit-keyframes steer {
    0% {
        -moz-transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }

    25% {
        -moz-transform: rotateZ(-35deg);
        -ms-transform: rotateZ(-35deg);
        -webkit-transform: rotateZ(-35deg);
        transform: rotateZ(-35deg);
    }

    50% {
        -moz-transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }

    75% {
        -moz-transform: rotateZ(35deg);
        -ms-transform: rotateZ(35deg);
        -webkit-transform: rotateZ(35deg);
        transform: rotateZ(35deg);
    }

    100% {
        -moz-transform: rotateZ(0);
        -ms-transform: rotateZ(0);
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
}

.horn-wa button.btn-horn {
    width: 84px;
    height: 84px;
    position: relative;
    outline: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    letter-spacing: 1.5;
    align-items: center;
    display: inline-flex;
    border: 0;
    border-radius: 50%;
    background-color: var(--c-transparent);
}

#contactButton .cta .btn-secondary a {
    color: var(--c-white) !important;
    text-decoration: none;
}

#contactButton .cta .btn-secondary:hover a {
    color: var(--c-primary) !important;
}

footer {
    margin-top: -5rem;
    position: relative;
    z-index: 99;
    padding: 10rem 0 0 0;
    background-image: url("../images/footer-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
}

/* footer::before
{
    z-index: -2;
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(0, #56A7D0 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
} */

.footer-main {
    /* transform: translate(0, 360px) scale(0.1); */
    /* margin-bottom: -66px; */
    background: transparent linear-gradient(307deg, #14385b 0%, #4c668c 100%) 0% 0% no-repeat padding-box;
    padding: 1rem 2rem;
    /* margin: 0 32px; */
    transition: ease-in-out 1s;
}

.footer-main.onscreen {
    transform: translate(0, 0px) scale(1);
}

.footer-content {
    max-width: 90rem;
    margin: 0 auto;
    /* filter: blur(4px); */
    transition: ease-in-out 0.3s;
    transition-delay: 0.3s;
}

.footer-logo {
    max-width: 96px;
}

.footer-content-right ul li a:hover {
    color: var(--c-tertiary) !important;
}

.footer-content-bottom {
    max-width: 90rem;
    margin: 0 auto;
    /* filter: blur(4px); */
    border-top: 0.5px solid var(--c-white);
    padding: 1rem 1.25rem;
    padding-bottom: 2rem;
    transition: ease-in-out 0.3s;
    transition-delay: 0.3s;
}

.footer-main.onscreen .footer-content,
.footer-main.onscreen .footer-content-bottom {
    filter: blur(0);
}

.footer-contact li a img {
    width: 24px;
    height: 24px;
}

.footer-link ul {
    border-top: 1px solid var(--c-black);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 1rem;
}

.footer-link ul li a:hover {
    color: var(--c-white) !important;
}

.footer-socmed a {
    width: 36px;
    height: 36px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-menu ul {
    margin: 0;
}

.footer-menu ul li {
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-menu ul li a {
    display: inline-block;
    width: auto;
    color: var(--c-orange);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.footer-menu ul li:hover a {
    transform: translateY(-3px);
    color: #fff !important;
    border-bottom: 1px solid #fff;
}

.footer-logo .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-logo .image:hover a {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px 0 rgb(255 255 255 / 39%);
}

.footer-copyright {
    border-top: 1px solid var(--c-primary);
    margin-top: 0.5rem;
}

.footer-copyright .copyright {
    margin-top: 10px;
}

.wa-floating {
    z-index: 999;
    position: fixed;
    bottom: 2%;
    right: 20px;
    transition: all 0.3s;
}

.wa-floating:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 8px 18px 0 rgba(0,0,0,.18);*/
}

.wa-floating a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
}

.wa-floating p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 16px;
    color: #0303c6;
}

.wa-floating .image {
    max-width: 60px;
}

@keyframes maka {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

footer.footer .footer-copyright span {
    display: inline-block;
    margin-right: 1px;
}

.maka-color {
    color: #ceebf8 !important;
}

footer.footer .footer-copyright span a {
    color: #ceebf8 !important;
}

footer.footer .footer-copyright:hover span:nth-child(1) {
    animation: maka 0.9s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(2) {
    animation: maka 1.1s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(3) {
    animation: maka 1.3s ease-in-out;
}

footer.footer .footer-copyright:hover span:nth-child(4) {
    animation: maka 1.5s ease-in-out;
}

.mb0 {
    margin-bottom: 0px;
}

.mb4 {
    margin-bottom: 4px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb24 {
    margin-bottom: 24px;
}

.mb32 {
    margin-bottom: 32px;
}

.mb48 {
    margin-bottom: 48px;
}

.mb64 {
    margin-bottom: 64px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt0 {
    margin-top: 0px;
}

.mt8 {
    margin-top: 8px;
}

.mt16 {
    margin-top: 16px;
}

.mt24 {
    margin-top: 24px;
}

.mt32 {
    margin-top: 32px;
}

.mt48 {
    margin-top: 48px;
}

.mt64 {
    margin-top: 64px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mt100 {
    margin-top: 100px;
}

/*====================================== SECTION SKELETON ======================================*/

.skeleton-card,
.skeleton-card:hover,
.skeleton-card::before {
    border: 0px solid #f5f3f3 !important;
    background: #27272769 !important;
    background-color: #27272769 !important;
    box-shadow: var(--shadow-skeleton) !important;
    /* animation: shimmer 0.3s infinite linear; */
}

.skeleton-picture,
.skeleton-text {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: var(--c-skeleton);
    border-radius: 0.5rem;
}

.skeleton-picture.xs {
    width: 100%;
}

.skeleton-picture.sm {
    height: 2.25rem;
}

.skeleton-picture.md {
    height: 3rem;
}

.skeleton-picture.lg {
    height: 4rem;
}

.skeleton-picture.xl {
    height: 5.25rem;
}

.skeleton-picture.xxl {
    height: 8rem;
}

.skeleton-picture.xl-3 {
    height: 10rem;
}

.skeleton-picture.xl-4 {
    height: 15rem;
}

.skeleton-picture.xl-5 {
    height: 20rem;
}

.skeleton-picture.xl-6 {
    height: 22.5rem;
}

.skeleton-picture.xl-7 {
    height: 25rem;
}

.skeleton-picture.xl-8 {
    height: 30rem;
}

.skeleton-text.xs {
    height: 0.5rem;
}

.skeleton-text.sm {
    height: 0.75rem;
}

.skeleton-text.md {
    height: 1rem;
}

.skeleton-text.lg {
    height: 1.5rem;
}

.skeleton-text.xl {
    height: 2rem;
}

.skeleton-text.xxl {
    height: 2.5rem;
}

.skeleton-text.xl-3 {
    height: 3rem;
}

.skeleton-text.xl-4 {
    height: 4rem;
}

.skeleton-text.xl-5 {
    height: 5rem;
}

.skeleton-text::before,
.skeleton-picture::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            #bc8c2480 50%,
            #bc8c2418 100%);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}