:root {
    --font-family: "Poppins", Tahoma, sans-serif;
    --primary-color: hsla(180, 100%, 27%, 100%);
    --primary-color-hover: hsla(180, 100%, 27%, 85%);
    --primary-color-footer: hsla(180, 36.8%, 50.98%, 100%);
    --faded-primary-color: hsla(178, 10%, 51%, 100%);
    --secondary-color: hsla(30, 38%, 66%, 100%);
    --secondary-color-hover: hsla(30, 38%, 66%, 85%);
    --faded-secondary-color: hsla(44, 36%, 86%, 100%);
    --primary-text-color: hsla(0, 0%, 0%, 100%);
    --secondary-text-color: hsla(0, 0%, 0%, 60%);
    --white-color: hsla(0, 0%, 100%, 100%);
    --gray-color: hsla(0, 0%, 96%, 100%);
    --darker-gray-color: hsla(0, 0%, 85%, 100%);
    --darker-gray-color-hover: hsla(0, 0%, 85%, 75%);
    --yellow-color: hsla(35, 84%, 62%, 100%);
    --red-color: hsla(350, 79%, 61%, 100%);
    --green-color: hsl(157.5, 64%, 50.98%, 100%);
    --blue-color: hsl(217.22, 91.22%, 59.8%, 100%);
    --link: hsl(210, 100%, 40%);
    --bg-card-form: hsl(0, 0%, 67%, 15%);
}

/* main classes */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
blockquote,
pre,
code,
table,
th,
td,
label,
input,
textarea,
button,
select,
option {
    font-family: var(--font-family);
}
a:hover,
a:focus {
    color: var(--link);
    text-decoration-color: var(--primary-color);
}
a.td-none {
    text-decoration: none;
}
a.block-fit {
    display: block;
    width: fit-content;
}
html {
    background-color: var(--base-color);
    margin: 0;
    padding: 0;
}
* svg {
    flex: 1 0 auto;
}

/* Utilities */
.text-xs {
    font-size: 12px;
}
.text-sm {
    font-size: 14px;
}
.text-base {
    font-size: 16px;
}
.text-lg {
    font-size: 18px;
}
.text-xl {
    font-size: 20px;
}
.text-2xl {
    font-size: 24px;
}
.text-3xl {
    font-size: 30px;
}
.font-thin {
    font-weight: 100;
}
.font-light {
    font-weight: 300;
}
.font-normal {
    font-weight: 400;
}
.font-medium {
    font-weight: 500;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}
.rounded-none {
    border-radius: 0px;
}
.rounded-sm {
    border-radius: 4px;
}
.rounded {
    border-radius: 6px;
}
.rounded-md {
    border-radius: 8px;
}
.rounded-lg {
    border-radius: 12px;
}
.rounded-xl {
    border-radius: 16px;
}
.rounded-2xl {
    border-radius: 20px;
}
.rounded-full {
    border-radius: 9999px;
}
.border {
    border: 1px solid var(--darker-gray-color);
}
.border-top {
    border-top: 1px solid var(--darker-gray-color);
}
.border-bottom {
    border-bottom: 1px solid var(--darker-gray-color);
}
.border-left {
    border-left: 1px solid var(--darker-gray-color);
}
.border-right {
    border-right: 1px solid var(--darker-gray-color);
}
.border-x {
    border-left: 1px solid var(--darker-gray-color);
    border-right: 1px solid var(--darker-gray-color);
}
.border-y {
    border-top: 1px solid var(--darker-gray-color);
    border-bottom: 1px solid var(--darker-gray-color);
}
.border-2 {
    border-width: 2px;
}
.border-4 {
    border-width: 4px;
}
.border-8 {
    border-width: 8px;
}
.p-0 {
    padding: 0px;
}
.p-1 {
    padding: 4px;
}
.p-2 {
    padding: 8px;
}
.p-3 {
    padding: 12px !important;
}
.p-4 {
    padding: 16px;
}
.p-5 {
    padding: 20px;
}
.pt-0 {
    padding-top: 0px;
}
.pt-1 {
    padding-top: 4px;
}
.pt-2 {
    padding-top: 8px;
}
.pt-3 {
    padding-top: 12px;
}
.pt-4 {
    padding-top: 16px;
}
.pt-5 {
    padding-top: 20px;
}
.pb-0 {
    padding-bottom: 0px;
}
.pb-1 {
    padding-bottom: 4px;
}
.pb-2 {
    padding-bottom: 8px;
}
.pb-3 {
    padding-bottom: 12px;
}
.pb-4 {
    padding-bottom: 16px;
}
.pb-5 {
    padding-bottom: 20px;
}
.pl-0 {
    padding-left: 0px;
}
.pl-1 {
    padding-left: 4px;
}
.pl-2 {
    padding-left: 8px;
}
.pl-3 {
    padding-left: 12px;
}
.pl-4 {
    padding-left: 16px;
}
.pl-5 {
    padding-left: 20px;
}
.pr-0 {
    padding-right: 0px;
}
.pr-1 {
    padding-right: 4px;
}
.pr-2 {
    padding-right: 8px;
}
.pr-3 {
    padding-right: 12px;
}
.pr-4 {
    padding-right: 16px;
}
.pr-5 {
    padding-right: 20px;
}
.m-0 {
    margin: 0px;
}
.m-1 {
    margin: 4px;
}
.m-2 {
    margin: 8px;
}
.m-3 {
    margin: 12px;
}
.m-4 {
    margin: 16px;
}
.m-5 {
    margin: 20px;
}
.mt-0 {
    margin-top: 0px;
}
.mt-1 {
    margin-top: 4px;
}
.mt-2 {
    margin-top: 8px;
}
.mt-3 {
    margin-top: 12px;
}
.mt-4 {
    margin-top: 16px;
}
.mt-5 {
    margin-top: 20px;
}
.mt-6 {
    margin-top: 30px;
}
.mb-0 {
    margin-bottom: 0px;
}
.mb-1 {
    margin-bottom: 4px;
}
.mb-2 {
    margin-bottom: 8px;
}
.mb-3 {
    margin-bottom: 12px;
}
.mb-4 {
    margin-bottom: 16px;
}
.mb-5 {
    margin-bottom: 20px;
}
.ml-0 {
    margin-left: 0px;
}
.ml-1 {
    margin-left: 4px;
}
.ml-2 {
    margin-left: 8px;
}
.ml-3 {
    margin-left: 12px;
}
.ml-4 {
    margin-left: 16px;
}
.ml-5 {
    margin-left: 20px;
}
.mr-0 {
    margin-right: 0px;
}
.mr-1 {
    margin-right: 4px;
}
.mr-2 {
    margin-right: 8px;
}
.mr-3 {
    margin-right: 12px;
}
.mr-4 {
    margin-right: 16px;
}
.mr-5 {
    margin-right: 20px;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}
.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}
.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}
.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}
.mx-0 {
    margin-left: 0px;
    margin-right: 0px;
}
.mx-1 {
    margin-left: 4px;
    margin-right: 4px;
}
.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}
.mx-3 {
    margin-left: 12px;
    margin-right: 12px;
}
.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}
.mx-5 {
    margin-left: 20px;
    margin-right: 20px;
}
.py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}
.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
}
.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}
.my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
}
.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}.space-y-1 > * + * {
    margin-top: 0.25rem;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}
.space-y-3 > * + * {
    margin-top: 0.75rem;
}
.space-y-4 > * + * {
    margin-top: 1rem;
}
.space-y-5 > * + * {
    margin-top: 1.25rem;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}
.space-y-8 > * + * {
    margin-top: 2rem;
}
.space-y-10 > * + * {
    margin-top: 2.5rem;
}
.space-y-12 > * + * {
    margin-top: 3rem;
}
.space-y-16 > * + * {
    margin-top: 4rem;
}
.space-y-20 > * + * {
    margin-top: 5rem;
}
.space-x-1 > * + * {
    margin-left: 0.25rem;
}
.space-x-2 > * + * {
    margin-left: 0.5rem;
}
.space-x-3 > * + * {
    margin-left: 0.75rem;
}
.space-x-4 > * + * {
    margin-left: 1rem;
}
.space-x-5 > * + * {
    margin-left: 1.25rem;
}
.space-x-6 > * + * {
    margin-left: 1.5rem;
}
.space-x-8 > * + * {
    margin-left: 2rem;
}
.space-x-10 > * + * {
    margin-left: 2.5rem;
}
.space-x-12 > * + * {
    margin-left: 3rem;
}
.space-x-16 > * + * {
    margin-left: 4rem;
}
.space-x-20 > * + * {
    margin-left: 5rem;
}
.h-16 {
    height: 16px;
}
.h-18 {
    height: 18px;
}
.h-20 {
    height: 20px;
}
.h-30 {
    height: 30px;
}
.h-50 {
    height: 50px;
}
.w-16 {
    width: 16px;
}
.w-18 {
    width: 18px;
}
.w-20 {
    width: 20px;
}
.w-30 {
    width: 30px;
}
.w-50 {
    width: 50px;
}
.uk-offcanvas {
    z-index: 9999;
}
hr {
    margin: 0px;
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}
.uk-notification-message {
    padding: 10px;
    background: var(--white-color);
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #32d296;
    font-size: 0.875rem;
    font-weight: 400;
}
.uk-notification-message.uk-notification-message-warning {
    color: #faa05a;
    border: 1px solid #faa05a;
}
.uk-notification-message.uk-notification-message-danger {
    color: #f0506e;
    border: 1px solid #f0506e;
}
.uk-notification-message > div {
    display: flex;
    align-items: center;
}
.uk-notification-message > div .uk-icon {
    margin-right: 10px;
    margin-left: 5px;
}
.uk-notification-close {
    display: block;
    top: 15px;
}
.uk-notification-top-right {
    left: auto;
    right: 15px;
    top: 15px;
    z-index: 9999;
}
.gap-10 {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.uk-checkbox {
    border-radius: 4px;
    margin-right: 8px;
}
.no-properties-message {
    text-align: center;
    width: 100%;
    padding-top: 20px;
}
.no-properties-message p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--yellow-color);
}
.uk-lightbox {
    z-index: 9999;
}
.uk-overlay-custom {
    background: hsl(0, 0%, 0%, 30%);
}
.glasses {
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}
.primary-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0px 24px;
    border-radius: 20px;
    cursor: pointer;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
}
.primary-button:hover {
    opacity: 0.8;
}
.outline-button {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1px 30px 1px 30px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
    background: hsl(0, 0%, 100%, 70%);
}
.outline-button.white-bg {
    background: var(--white-color);
}
.outline-button:hover {
    opacity: 0.8;
    background: var(--primary-color);
    color: var(--white-color);
}
.button-full {
    width: 100%;
    justify-content: center;
}
.asterisk,
.note .asterisk {
  color: var(--yellow-color);
}
.note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--secondary-text-color);
  font-style: italic;
  margin: 0;
}
.note strong {
  font-weight: 600;
  color: var(--primary-color);
}
.uk-alert {
    border-radius: 14px;
}
.uk-font-thin {
    font-weight: 100;
}
.uk-font-extralight {
    font-weight: 200;
}
.uk-font-light {
    font-weight: 300;
}
.uk-font-normal {
    font-weight: 400;
}
.uk-font-medium {
    font-weight: 500;
}
.uk-font-semibold {
    font-weight: 600;
}
.uk-font-bold {
    font-weight: 700;
}
.uk-font-extrabold {
    font-weight: 800;
}
.uk-font-black {
    font-weight: 900;
}
.header-type-1 {
    width: 50%;
    justify-content: space-between;
}
.min-h-256 {
    min-height: 256px;
}
.transparent {
    color: transparent;
}

/*important sticky footer*/
html,
body {
    height: 100%;
}
#body-main {
    min-height: 100vh;
    margin-bottom: -111px;
    background: var(--white-color);
    background-image: url('../images/base/bg-fill.png');
    background-repeat: no-repeat;
    background-size: 45%;
}
#body-main:after {
    content: "";
    display: block;
}
.footer-section,
#body-main:after {
    height: 111px;
}
@media (max-width: 1280px) {
}
@media (max-width: 959px) {
    #body-main {
        min-height: auto;
        margin-bottom: 0;
    }
    .footer-section,
    #body-main:after {
        height: auto;
    }
    #body-main {
        background-size: 75%;
    }
}
@media (max-width: 639px) {
}
/*important sticky footer*/

/* footer */
.footer-section {
    background-color: var(--primary-color-footer);
    background-image: url(../images/base/footer-fill.svg);
    display: flex;
    align-items: end;
    min-height: 100px;
    background-size: 130%;
    background-position: center top;
}
.footer-section .uk-container {
    padding-top: 10px;
}
.footer-section .text {
    text-transform: capitalize;
    color: var(--white-color);
    margin: 0;
    font-size: 0.9rem;
}
.footer-section .copyright-container {
    display: flex;
}
.footer-section .copyright {
    font-weight: 200;
    font-size: 0.75rem;
    padding: 20px 0;
}
.footer-section .logo-left {
    max-width: 300px;
}
.to-top-btn {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: -1;
    display: none;
    cursor: pointer;
    border-radius: 6px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.to-top-btn.r-20 {
    right: 20px;
}
.to-top-btn svg {
    margin: 10px 7px;
    color: var(--white-color);
}
.to-top-btn:hover,
.to-top-btn:focus {
    background: var(--secondary-color-hover);
}
.to-top-btn:hover svg {
    color: var(--white-color);
}
.show-btn {
    z-index: 1;
    display: block;
}
#wa_link {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
}
#wa_link img {
    width: 60px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
  .footer-section .copyright {
      padding: 30px 0;
  }
}

/* navbar */
#navbar {
    background-color: transparent;
    z-index: 9999;
}
#navbar .uk-logo img {
    height: 35px;
}
#navbar .uk-navbar-nav > li > a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    min-height: 75px;
}
#navbar .uk-navbar-nav > li > a:hover {
    color: var(--primary-color);
}
#navbar .uk-navbar-nav > li.uk-active > a {
    color: var(--primary-color);
    font-weight: 500;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 5px;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li {
    padding: 10px 12px;
    line-height: 10px;
    border-radius: 10px;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    line-height: 22px;
    padding: 0;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li.uk-active a {
    color: var(--primary-color);
    font-weight: 500;
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li:hover {
    background-color: var(--gray-color);
}
#navbar .uk-navbar-nav .uk-navbar-dropdown ul li:hover a {
    color: var(--primary-color);
}
#navbar .contact-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 22px 8px 22px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    background: var(--white-color);
}
#navbar .contact-button span {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--secondary-text-color);
    text-transform: capitalize;
}
#navbar .contact-button svg {
    color: var(--red-color);
}
#navbar .contact-button:hover {
    background: var(--primary-color);
}
#navbar .contact-button:hover span {
    color: var(--white-color);
}
#navbar .contact-button:hover svg path {
    fill: var(--red-color);
}
#navbar .uk-navbar-toggle {
    min-height: 75px;
}
#navbar .uk-navbar-container:not(.uk-navbar-transparent) {
    background: var(--white-color);
}
#navbar .uk-sticky-fixed {
    margin: 0 !important;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    background-color: #ffffff !important;
}
#navbar.uk-sticky-fixed .header-type-1 {
    width: auto;
}
#navbar.uk-sticky-fixed {
    background-color: var(--white-color);
}
@media (max-width: 1199px) {
    #navbar .uk-logo img {
        height: 30px;
    }
}
@media (max-width: 959px) {
  #navbar .contact-button {
      padding: 5px 22px 5px 22px;
  }
}
@media (max-width: 639px) {
}

/* offcanvas */
#my-offcanvas .menu-list {
    padding: 0 20px;
}
#my-offcanvas .menu-list .uk-accordion-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    margin-bottom: 0px;
}
#my-offcanvas .menu-list li.uk-active a,
#my-offcanvas .menu-list li.uk-active a p {
    color: var(--primary-color);
    font-weight: 600;
}
#my-offcanvas .uk-offcanvas-bar {
    padding: 0;
    min-height: 100vh;
    background: var(--white-color);
    background-image: url(../images/base/bg-fill.svg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
}
#my-offcanvas .logo-section {
    text-align: center;
    padding: 40px 20px 10px 20px;
    position: relative;
}
#my-offcanvas .logo-section img {
    height: 75px;
}
#my-offcanvas .uk-offcanvas-bar .uk-accordion-title.none::before,
#my-offcanvas .uk-offcanvas-bar .uk-open > .uk-accordion-title.none::before {
    background-image: none;
}
#my-offcanvas .uk-offcanvas-bar .uk-accordion-title.with-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.75 7C12.75 6.58579 12.4142 6.25 12 6.25C11.5858 6.25 11.25 6.58579 11.25 7H12.75ZM11.25 17C11.25 17.4142 11.5858 17.75 12 17.75C12.4142 17.75 12.75 17.4142 12.75 17H11.25ZM7 11.25C6.58579 11.25 6.25 11.5858 6.25 12C6.25 12.4142 6.58579 12.75 7 12.75V11.25ZM17 12.75C17.4142 12.75 17.75 12.4142 17.75 12C17.75 11.5858 17.4142 11.25 17 11.25V12.75ZM11.25 7V17H12.75V7H11.25ZM7 12.75H17V11.25H7V12.75Z' fill='%23252525'/%3E%3C/svg%3E");
}
#my-offcanvas .uk-offcanvas-bar .uk-open > .uk-accordion-title.with-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 11.25C6.58579 11.25 6.25 11.5858 6.25 12C6.25 12.4142 6.58579 12.75 7 12.75L7 11.25ZM17 12.75C17.4142 12.75 17.75 12.4142 17.75 12C17.75 11.5858 17.4142 11.25 17 11.25V12.75ZM7 12.75L17 12.75V11.25L7 11.25L7 12.75Z' fill='%23252525'/%3E%3C/svg%3E%0A");
}
#my-offcanvas .uk-offcanvas-close {
    height: 15px;
    width: 25px;
    background: var(--secondary-text-color);
    border-radius: 30px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    top: 15px;
    right: 15px;
    padding: 8px;
}
#my-offcanvas .uk-offcanvas-close:hover {
    background: var(--primary-text-color);
}
#my-offcanvas .uk-panel {
    min-height: 100%;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .uk-offcanvas-flip .uk-offcanvas-bar {
        right: -450px;
    }
    .uk-offcanvas-bar {
        left: -450px;
        width: 450px;
    }
}
@media (max-width: 639px) {
    .uk-offcanvas-flip .uk-offcanvas-bar {
        right: -100%;
    }
    .uk-offcanvas-bar {
        left: -100%;
        width: 100%;
    }
}

/* section title */
.section-title {
  padding: 40px 0px 20px 0px;
}
.section-title .button-title {
    width: fit-content;
    padding: 8px 22px 8px 22px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    font-size: 0.813rem;
    font-weight: 500;
    background: var(--white-color);
}
.section-title .content-title {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.section-title .title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}
.section-title .description {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0px;
    max-width: 330px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
  .section-title .content-title {
      flex-direction: column;
      gap: 10px;
  }
  .section-title .title {
      font-size: 1.5rem;
  }
  .section-title .description {
      max-width: 100%;
  }
  .section-title .button-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 639px) {
  .section-title .title {
      font-size: 1.375rem;
  }
  .section-title {
      padding: 20px 0px;
  }
}

/* about us */
.about-us {
  padding: 20px 0px;
}
.about-us p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--secondary-text-color);
}
.about-us .logomark {
    height: 40px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
  .about-us .about-image {
      text-align: center;
  }
}
@media (max-width: 639px) {
  .about-us {
    padding: 0px;
  }
  .about-us .logomark {
    height: 35px;
  }
}

/* form card */
.form-card {
    background: var(--bg-card-form);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 60px !important;
}
.book form .uk-form-label,
.contact form .uk-form-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--secondary-text-color);
}
.book form .uk-input,
.book form .uk-select,
.book form .uk-textarea,
.contact form .uk-input,
.contact form .uk-select,
.contact form .uk-textarea{
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    border-radius: 10px;
    background: hsl(0, 0%, 100%, 70%);
    border: 1px solid var(--darker-gray-color);
}
.book .primary-button {
  margin-top: 20px;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .form-card {
        padding: 20px;
        margin-bottom: 40px !important;
    }
}
@media (max-width: 639px) {
}

/* home banner */
.home-banner {
    margin-top: -65px;
}
.home-banner .title {
    font-size: 2.375rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 50px 0;
    max-width: 470px;
    padding-top: 60px;
}
.home-banner .desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    max-width: 320px;
}
.home-banner .book-image {
    min-height: 600px;
    border-radius: 14px;
    position: relative;
}
.home-banner .book-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);;
    z-index: 1;
}
.home-banner .book-image .book-container {
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0px;
}
.home-banner .book-image .book-container .content {
    padding: 25px;
}
.home-banner .book-image .book-container .content .side-title {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white-color);
    max-width: 330px;
    margin-bottom: 10px;
}
.home-banner .book-image .book-container .content .side-desc {
    font-size: 0.875rem;
    font-weight: 200;
    color: var(--white-color);
    margin-top: 10px;
}
.home-banner .book-image .book-container .content .form-outer {
    background: hsl(0deg 0% 67% / 20%);
    padding: 16px;
    border-radius: 16px;
}
.home-banner .book-image .book-container .content .form-outer .book-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 22px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    background: var(--white-color);
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--secondary-text-color);
    text-transform: capitalize;
}
.home-banner .book-image .book-container .content .form-outer .uk-form-label {
    color: white;
    font-weight: 300;
}
.home-banner .book-image .book-container .content .form-outer .uk-input,
.home-banner .book-image .book-container .content .form-outer .uk-select {
    border-radius: 40px;
    font-size: 0.813rem;
    height: 38px;
    background: hsl(48deg 2% 51% / 70%);
    border: 1px solid hsl(48deg 2% 51% / 70%);
    color: white;
    font-weight: 200;
}
@media (max-width: 1199px) {
    .home-banner {
        margin-top: 0px;
    }
}
@media (max-width: 959px) {
    .home-banner .title {
        margin-top: 40px;
        margin-bottom: 0px;
        padding-top: 0px;
    }
    .home-banner .title,
    .home-banner .desc {
        max-width: 100%;
    }
    .home-banner .title {
        font-size: 1.75rem;
    }
}
@media (max-width: 639px) {
    .home-banner .book-image .book-container .content {
        padding: 16px;
    }
    .home-banner .book-image .book-container .content .side-title {
        font-size: 1.5rem;
    }
    .home-banner .book-image {
        min-height: 420px;
    }
}

/* testimonial */
#testimonial-item {
    padding: 10px 0;
}
#testimonial-item .testimonial-card {
    width: 400px;
    padding: 30px;
    background: white;
    border: 1px solid var(--gray-color);
    border-radius: 20px;
    margin-right: 25px;
}
#testimonial-item .testimonial-card:last-child {
    margin-right: 0px;
}
#testimonial-item .testimonial-card .title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}
#testimonial-item .testimonial-card .desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin-top: 10px;
}
#testimonial-item .testimonial-card .mt-auto {
    margin-top: auto;
}
#testimonial-item .testimonial-card > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#testimonial-item .testimonial-card .icon {
    color: var(--primary-color);
    flex: none;
}
#testimonial-item .testimonial-card .icon.fill > path {
    color: transparent;
    fill: var(--primary-color);
}
#testimonial-item .testimonial-card .icon.stroke > path {
    color: transparent;
    stroke: var(--primary-color);
}
#testimonial-item .testimonial-card .text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--tertiary-text-color);
    text-transform: capitalize;
    min-height: 75px;
}
#testimonial-item .testimonial-card .uk-card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text-color);
    text-transform: capitalize;
}
#testimonial-item .testimonial-card .uk-text-meta {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--secondary-text-color);
    text-transform: capitalize;
    margin: 0px;
}
#testimonial-item .testimonial-card .star {
    color: var(--yellow-color);
    display: flex;
}
#testimonial-item .testimonial-card .star svg {
    flex: none;
}
#testimonial-item .testimonial-card .relative {
    position: relative;
}
#testimonial-item .testimonial-card .absolute {
    position: absolute;
}
#testimonial-item .testimonial-card .half-star {
    width: 8px;
    left: 8px;
    top: 0;
    background: var(--white-color);
    height: 100%;
}
#testimonial-item .uk-dotnav > .uk-active > * {
    background-color: var(--primary-color);
    border-color: transparent;
}
#testimonial-item .uk-dotnav > * > * {
    border: none;
    background: var(--darker-gray-color);
}
#testimonial .slider-controller {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
#testimonial .slider-controller .flicking-nav-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
#testimonial .slider-controller .flicking-nav-button:hover {
    opacity: 0.8;
}
#testimonial .slider-controller .flicking-nav-button:disabled {
    background: var(--white-color);
    color: var(--primary-color);
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
    #testimonial-item .testimonial-card {
        width: calc(100% - 92px);
    }
    #testimonial .slider-controller {
        justify-content: start;
    }
}

/* package */
.package .package-card {
    box-shadow: none;
    border: 1px solid var(--gray-color);
    border-radius: 16px;
    padding: 16px;
}
.package .package-card .uk-card-body {
    padding: 16px 0 0 0;
}
.package .package-card .uk-card-body .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.package .package-card .uk-card-body .badge-container .badge {
    padding: 2px 18px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--gray-color);
    background: var(--white-color);
    font-size: 0.75rem;
}
.package .package-card .uk-card-body a:hover .title {
    color: var(--primary-color);
}
.package .package-card .uk-card-body .title {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
    padding-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.package .package-card .uk-card-body .summary-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
}
.package .package-card .uk-card-body .summary-container .title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}
.package .package-card .uk-card-body .summary-container .desc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--secondary-text-color);
}
.package .package-card .uk-card-body .pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}
.package .package-card .uk-card-body .pricing-container .subtitle {
    font-size: 0.625rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0;
}
.package .package-card .uk-card-body .pricing-container .price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
}
@media (max-width: 639px) {
}

/* package detail */
.package-detail {
    padding: 20px 0;
}
.package-detail .title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.package-detail .title-section .summary-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    gap: 60px;
}
.package-detail .title-section .summary-container .title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}
.package-detail .title-section .summary-container .desc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--secondary-text-color);
}
.package-detail .title-section  .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.package-detail .title-section  .badge-container .badge {
    padding: 2px 18px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid var(--gray-color);
    background: var(--white-color);
    font-size: 0.75rem;
}
.package-detail .title-section  .title-detail {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
    padding-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.package-detail .gallery-images {
    padding: 20px 0;
    margin-bottom: 10px;
}
.package-detail .gallery-images .overlay-image-more {
    background: hsl(0deg 0% 67% / 20%);
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 8px 18px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: transparent;
}
.package-detail .gallery-images .overlay-image-more span {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--white-color);
}
.package-detail .content .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 16px;
}
.package-detail .content .description p,
.package-detail .content .description ul li {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0 0 10px 0;
}
.package-detail .content .description h1,
.package-detail .content .description h2,
.package-detail .content .description h3,
.package-detail .content .description h4,
.package-detail .content .description h5,
.package-detail .content .description h6 {
    margin: 16px 0;
}
.package-detail .content .card-book  {
    box-shadow: none;
    border: 1px solid var(--gray-color);
    border-radius: 16px;
    padding: 16px;
    border-top: 5px solid var(--primary-color);
}
.package-detail .content .card-book .pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}
.package-detail .content .card-book .pricing-container .subtitle {
    font-size: 0.625rem;
    font-weight: 300;
    color: var(--secondary-text-color);
    margin: 0;
}
.package-detail .content .card-book .pricing-container .price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-text-color);
    margin: 0;
}
@media (max-width: 1199px) {
}
@media (max-width: 959px) {
    .package-detail .content .card-book {
        width: 100%;
        transition: all 0.3s ease;
        position: static;
        border-radius: 16px;
    }
    .package-detail .content .card-book.fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        border-radius: 0;
        z-index: 1000;
        opacity: 100;
        transform: translateY(0);
    }
    .package-detail .card-book.fixed.normalize {
        opacity: 0;
        transform: translateY(100%);
        pointer-events: none;
    }
    .package-detail .content .card-book .pricing-container {
        padding-bottom: 6px;
    }
    .package-detail .title-section {
        flex-direction: column;
        align-items: baseline;
        gap: 12px;
    }
    .package-detail .title-section .badge-container {
        padding-top: 0;
    }
    .package-detail .gallery-images .mt-4 {
        margin-top: 10px;
    }
}
@media (max-width: 639px) {
    .package-detail {
        padding: 10px 0;
    }
}
@media (max-width: 960px) {
    .disable-mt {
        margin-top: 0px !important;
    }
}
