@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes blink {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes pulse-animation {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0
    }

    10% {
        transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1
    }

    100% {
        transform: scale3d(1.6, 1.6, 1.6);
        opacity: 0
    }
}

@keyframes border-animation {
    0% {
        transform: scale3d(0.6, 0.6, 0.6);
        opacity: 0
    }

    20% {
        transform: scale3d(1.2, 1.2, 1.2);
        opacity: 1
    }

    100% {
        transform: scale3d(1.4, 1.4, 1.4);
        opacity: 0
    }
}

@keyframes skeleton {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.inset-0 {
    inset: 0
}

.pointer {
    cursor: pointer
}

.z--1 {
    z-index: -1
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.isolate {
    isolation: isolate
}

.ovf-hidden {
    overflow: hidden
}

.square {
    aspect-ratio: 1/1
}

:root {
    --max-padding: clamp(24px, calc(30 / 1230 * 100vw), 30px);
    --max-w-unit: 1300;
    --max-w: min(1200px, calc(100vw - var(--max-padding)));
    --white: #fff;
    --green: #1e7d1a;
    --yellow: #cc8a35;
    --gray-gray-50: #fbfbfb;
    --gray-gray-100: #f1f1f1;
    --gray-gray-200: #dfdfdf;
    --gray-gray-300: #c6c6c6;
    --gray-gray-400: #a5a5a5;
    --gray-gray-500: #7e7e7e;
    --gray-gray-600: #4f4f4f;
    --gray-gray-700: #1a1a1a;
    --gray-gray-800: #0b0b0b;
    --gray-gray-900: #030303;
    --gray-gray-950: #000;
    --primary-color: var(--green);
    --secondary-color: var(--yellow);
    --font-family: 'Inter', sans-serif;
    --second-family: 'Cormorant';
    --line: 3;
    --menu-link-color: #282828;
    --menu-sub-bg: #fafafa;
    --menu-sub-color: #313131;
    --menu-sub-divider: #ececec;
    --menu-line-color: rgba(0, 0, 0, 0.1)
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .5
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px
}

body {
    top: 0 !important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-family: var(--font-family);
    font-size: 14px;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0)
}

*,
*::before,
*::after {
    font-family: var(--font-family) !important;
}

picture {
    display: flex
}

picture:has(>img.w-100) {
    width: 100%;
    height: auto
}

img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inline-block;
    height: auto
}

img.lazy {
    display: flex;
    opacity: 0
}

img:not(.initial) {
    transition: opacity 1s
}

img:not([src]) {
    visibility: hidden
}

img:is(.loaded, .error) {
    opacity: 1
}

a,
input,
textarea {
    outline: none;
    padding: 0
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.grid-content {
    display: grid;
    width: 100% !important;
    grid-column: main;
    grid-template-columns: [main-start] 1fr [content-start] var(--max-w) [content-end] 1fr [main-end]
}

.grid-content>*:not(.fw, .grid-content) {
    grid-column: content
}

.grid-content>.fw {
    grid-column: main
}

.breadCrumbs+:is(.wrap-content, .wrap-main) {
    margin-block: clamp(24px, 48 / var(--max-w-unit) * var(--max-w), 48px)
}

.pagination {
    --bs-pagination-color: var(--primary-color) !important;
    --bs-pagination-hover-color: var(--primary-color) !important;
    --bs-pagination-active-bg: var(--primary-color) !important;
    --bs-pagination-active-border-color: var(--primary-color) !important;
    margin: 20px 0 0 0 !important;
    flex-wrap: wrap
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

:is(.title-main, .title-detail) {
    text-align: center;
    margin-bottom: clamp(16px, 28 / var(--max-w-unit) * var(--max-w), 28px);
    container-type: inline-size;
    --item-w: 100cqw;
    --item-w-unit: 1300
}

:is(.title-main, .title-detail) :is(span, h1, h2, h3, h4, h5, h6):not(.label, .slogan) {
    font: 600 clamp(24px, 42 / var(--item-w-unit) * var(--item-w), 42px)/1.2857142857 var(--second-family);
    text-align: center;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

:is(.title-main, .title-detail) :is(span, h1, h2, h3, h4, h5, h6):not(.label, .slogan)::after {
    content: "";
    display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    width: calc(56/42*1em);
    margin-top: .1904761905em
}

.time-main {
    color: #999;
    margin-bottom: .75rem
}

.time-main i {
    margin: 3px 7px 0 0;
    vertical-align: top
}

.time-main span {
    display: inline-block;
    vertical-align: top
}

.share {
    background: hsla(0, 0%, 50%, .15);
    border-radius: 5px;
    line-height: normal;
    margin-top: 15px;
    padding: 17px 15px 10px
}

.share b {
    display: block;
    margin-bottom: 5px
}

.text-split {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line);
    box-orient: vertical;
    line-clamp: var(--line);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: calc(var(--line)*1lh)
}

.scale-img img {
    transition: all .3s;
    transform: scale(1)
}

.scale-img {
    display: block;
    overflow: hidden
}

:is([class*=_item]:hover .scale-img, .scale-img:hover)>img,
:is([class*=_item]:hover .scale-img, .scale-img:hover) picture>img {
    transition: all .3s;
    transform: scale(1.1)
}

/* Mirror */

.scale-img {
    position: relative;
    overflow: hidden;
}

.scale-img:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 10;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

:is([class*=_item]:hover .scale-img, .scale-img:hover):before {
    transition: 1s;
    left: 100%;
}

[class*=-xemthem] {
    transition: all .6s;
    position: relative;
    overflow: hidden
}

[class*=-xemthem]::before {
    transition: all .6s;
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(20deg, var(--bg, transparent) 50%, var(--xemthem-color, var(--primary-color)) 50%);
    background-size: 600%
}

[class*=-xemthem]:hover {
    color: #fff;
    transform: translateX(0.5rem)
}

[class*=-xemthem]:hover::before {
    background-position: 100%
}

.transition {
    transition: all .3s
}

.skeleton :is([class*="-pic "], [class*="-title "], [class*="-desc "], [class*="-content "], [class*="-price "], .should-skeletonize) {
    background: #e4e4e4;
    border-radius: 5px;
    animation: skeleton 2s ease-in-out infinite;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: rgba(0, 0, 0, 0)
}

.skeleton .pagination-ajax {
    filter: grayscale(1);
    position: relative
}

.skeleton .pagination-ajax::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3
}

.skeleton img {
    opacity: 0
}

.htmx-indicator:not(.htmx-request) {
    display: none !important
}

.aos-overflow {
    overflow: hidden !important;
    overflow: clip visible !important
}

.menu-res {
    z-index: 100
}

.wrap-header {
    background: #fff
}

.wrap-header>.d-flex {
    gap: clamp(6px, 54 / var(--max-w-unit) * var(--max-w), 54px)
}

.wrap-header .logo {
    --fs-w: clamp(140px, 240 / var(--max-w-unit) * var(--max-w), 240px);
    --fs-w-unit: 240;
    width: calc(240 / var(--fs-w-unit) * var(--fs-w)) !important;
    height: calc(85 / var(--fs-w-unit) * var(--fs-w)) !important
}

.wrap-header .header-links {
    --fs-w: clamp(14px, 16 / var(--max-w-unit) * var(--max-w), 16px);
    --fs-w-unit: 16;
    font: 400 calc(16 / var(--fs-w-unit) * var(--fs-w))/1.1875 var(--font-family) !important;
    text-transform: capitalize;
    color: var(--green);
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: calc(52 / var(--fs-w-unit) * var(--fs-w));
    column-gap: calc(52 / var(--fs-w-unit) * var(--fs-w));
    -moz-column-rule: solid 1px var(--gray-gray-700);
    column-rule: solid 1px var(--gray-gray-700)
}

.wrap-header .header-links a {
    font: inherit;
    color: currentColor
}

.wrap-header .header-links a.active {
    text-decoration: underline !important;
    text-underline-offset: .5em
}

.langs {
    --fs-w: clamp(12px, 15 / var(--max-w-unit) * var(--max-w), 15px);
    --fs-w-unit: 15;
    display: flex;
    align-items: center;
    gap: calc(16 / var(--fs-w-unit) * var(--fs-w))
}

.langs :is(img, picture, svg) {
    width: calc(36 / var(--fs-w-unit) * var(--fs-w)) !important;
    height: calc(24 / var(--fs-w-unit) * var(--fs-w)) !important
}

.langs a {
    color: currentColor
}

.langs .active {
    color: var(--primary-color) !important
}

footer {
    background: #fffdea;
    position: relative;
    isolation: isolate
}

footer .logo {
    width: min(100%, 280px) !important;
}

footer .decor {
    --l: max(calc((100vw - var(--max-w)) / 2), 117px);
    position: absolute;
    z-index: -1;
    top: 0;
    left: calc(-1*var(--l));
    width: calc(193 / var(--max-w-unit) * var(--max-w)) !important;
    height: calc(193 / var(--max-w-unit) * var(--max-w)) !important
}

.footer-top {
    padding-block: clamp(24px, 100 / var(--max-w-unit) * var(--max-w), 100px) clamp(24px, 90 / var(--max-w-unit) * var(--max-w), 90px);
    --col-1: calc(290 / var(--max-w-unit) * var(--max-w));
    --col-2: calc(425 / var(--max-w-unit) * var(--max-w));
    --col-3: calc(180 / var(--max-w-unit) * var(--max-w));
    --col-4: calc(180 / var(--max-w-unit) * var(--max-w))
}

.footer-top .outline-btn :is(svg, img) {
    width: calc(26 / var(--fs-w-unit) * var(--fs-w)) !important;
    height: calc(26 / var(--fs-w-unit) * var(--fs-w)) !important
}

.footer-top .logo {
    margin-bottom: clamp(12px, 26 / var(--max-w-unit) * var(--max-w), 26px)
}

.footer-title {
    font: 600 clamp(14px, 18 / var(--max-w-unit) * var(--max-w), 18px)/1.5 var(--font-family);
    text-transform: capitalize;
    color: var(--gray-gray-700);
    margin-bottom: 2em;
    position: relative
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -.2777777778em;
    left: 0;
    width: 1.3333333333em;
    border: 1px solid var(--primary-color)
}

.footer-ul {
    --fs-w: clamp(12px, 15 / var(--max-w-unit) * var(--max-w), 15px);
    --fs-w-unit: 15;
    display: flex;
    flex-direction: column;
    gap: calc(10 / var(--fs-w-unit) * var(--fs-w));
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-ul li {
    font: 400 calc(15 / var(--fs-w-unit) * var(--fs-w))/1.5 var(--font-family);
    color: var(--gray-gray-700)
}

.footer-ul li a {
    font: inherit;
    color: inherit
}

.footer-powered {
    padding-block: 1.7142857143em;
    font: 400 clamp(12px, 14 / var(--max-w-unit) * var(--max-w), 14px)/1.2142857143 var(--font-family);
    text-align: center;
    color: var(--white);
    background: var(--green)
}

.grid-sp {
    --column-gap: clamp(12px, 24 / var(--max-w-unit) * var(--max-w), 24px);
    --row-gap: clamp(12px, 24 / var(--max-w-unit) * var(--max-w), 24px);
    --count: 3;
    --count-minus: calc(var(--count) - 1);
    display: grid;
    -moz-column-gap: var(--column-gap);
    column-gap: var(--column-gap);
    row-gap: var(--row-gap);
    grid-template-columns: repeat(auto-fill, minmax(max(150px, (100% - var(--column-gap) * var(--count-minus)) / var(--count)), 1fr))
}

.sp-qc {
    container-type: inline-size;
    --item-w: 100cqw;
    --item-w-unit: 417
}

.sp_item {
    --fs-w: clamp(16px, 22 / var(--item-w-unit) * var(--item-w), 22px);
    --fs-w-unit: 22;
    background: var(--white);
    border: 1px solid #ffd194;
    border-radius: calc(16 / var(--fs-w-unit) * var(--fs-w));
    padding: calc(8 / var(--fs-w-unit) * var(--fs-w))
}

.sp-pic {
    border-radius: calc(12 / var(--fs-w-unit) * var(--fs-w))
}

.sp-info {
    padding-block: calc(28 / var(--fs-w-unit) * var(--fs-w)) calc(30 / var(--fs-w-unit) * var(--fs-w))
}

.sp-title {
    font: 700 calc(22 / var(--fs-w-unit) * var(--fs-w))/1.4 var(--font-family);
    text-align: center;
    text-transform: capitalize;
    color: var(--green);
    margin-bottom: calc(8 / var(--fs-w-unit) * var(--fs-w))
}

.sp-desc {
    font: 400 clamp(12px, 14 / var(--fs-w-unit) * var(--fs-w), 14px)/1.4 var(--font-family);
    text-align: center;
    color: var(--gray-gray-600);
    margin-bottom: calc(37 / var(--fs-w-unit) * var(--fs-w))
}

.sp-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(20 / var(--fs-w-unit) * var(--fs-w))
}

.sp-footer .outline-btn {
    padding: calc(8 / var(--fs-w-unit) * var(--fs-w));
    flex: 1 1 calc(160 / var(--fs-w-unit) * var(--fs-w));
    min-width: 100px
}

.wrap-tour {
    margin-block: clamp(24px, 86 / var(--max-w-unit) * var(--max-w), 86px) clamp(24px, 120 / var(--max-w-unit) * var(--max-w), 120px)
}

.tour-qc {
    container-type: inline-size;
    --item-w: 100cqw;
    --item-w-unit: 648
}

.tour_item {
    --fs-w: clamp(16px, 24 / var(--item-w-unit) * var(--item-w), 24px);
    --fs-w-unit: 24;
    border-radius: calc(16 / var(--fs-w-unit) * var(--fs-w));
    border: 1px solid #ffd194;
    background: #fffdea;
    padding: calc(8 / var(--fs-w-unit) * var(--fs-w))
}

.tour-pic {
    border-radius: calc(12 / var(--fs-w-unit) * var(--fs-w))
}

.tour-info {
    padding-block: calc(31 / var(--fs-w-unit) * var(--fs-w)) calc(44 / var(--fs-w-unit) * var(--fs-w))
}

.tour-title {
    font: 700 calc(24 / var(--fs-w-unit) * var(--fs-w))/1.4 var(--font-family);
    text-align: center;
    text-transform: uppercase;
    color: var(--green)
}

.tour-desc {
    font: 400 clamp(12px, 14 / var(--fs-w-unit) * var(--fs-w), 14px)/1.4 var(--font-family);
    text-align: center;
    color: var(--gray-gray-600);
    margin-top: calc(7 / var(--fs-w-unit) * var(--fs-w))
}

.tour-desc+.outline-btn {
    margin-top: calc(36 / var(--fs-w-unit) * var(--fs-w));
    margin-inline: auto
}

.tour-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(20 / var(--fs-w-unit) * var(--fs-w))
}

.tour-footer .outline-btn {
    padding: calc(8 / var(--fs-w-unit) * var(--fs-w));
    flex: 1 1 calc(160 / var(--fs-w-unit) * var(--fs-w));
    min-width: 100px
}

.wrap-gt_home {
    overflow: clip visible;
    margin-block: clamp(24px, 120 / var(--max-w-unit) * var(--max-w), 120px) clamp(24px, 130 / var(--max-w-unit) * var(--max-w), 130px);
    position: relative;
    isolation: isolate;
    z-index: 10
}

.wrap-gt_home+* {
    position: relative;
    z-index: 20
}

.wrap-gt_home .decor {
    position: absolute;
    top: calc(347 / var(--max-w-unit) * var(--max-w)) !important;
    right: calc(-346 / var(--max-w-unit) * var(--max-w)) !important;
    width: calc(459 / var(--max-w-unit) * var(--max-w)) !important;
    height: calc(459 / var(--max-w-unit) * var(--max-w)) !important;
    z-index: -1
}

.gt_home-container {
    --fs-w: clamp(24px, 58 / var(--max-w-unit) * var(--max-w), 58px);
    --fs-w-unit: 58;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: clamp(16px, 24 / var(--max-w-unit) * var(--max-w), 24px)
}

.gt_home-pic {
    border-radius: calc(16 / var(--fs-w-unit) * var(--fs-w));
    width: min(620px, 100%);
    margin-inline: auto;
    overflow: hidden;
    border-radius: clamp(12px, 16 / var(--max-w-unit) * var(--max-w), 16px)
}

@media(min-width: 992px) {
    .gt_home-pic {
        width: calc(620 / var(--max-w-unit) * var(--max-w));
        margin-inline: 0
    }
}

.gt_home-info {
    width: 100%
}

@media(min-width: 992px) {
    .gt_home-info {
        width: calc(638 / var(--max-w-unit) * var(--max-w))
    }
}

.gt_home-label {
    font: 700 clamp(18px, 36 / var(--fs-w-unit) * var(--fs-w), 36px)/1.2222222222 var(--second-family);
    text-transform: capitalize;
    color: var(--yellow);
    margin-bottom: calc(6 / var(--fs-w-unit) * var(--fs-w))
}

.gt_home-title {
    font: 600 calc(58 / var(--fs-w-unit) * var(--fs-w))/1.2068965517 var(--second-family);
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: calc(10 / var(--fs-w-unit) * var(--fs-w))
}

.gt_home-desc {
    font: 400 clamp(14px, 16 / var(--fs-w-unit) * var(--fs-w), 16px)/1.6 var(--font-family);
    color: var(--gray-gray-700);
    margin-bottom: clamp(24px, 56 / var(--max-w-unit) * var(--max-w), 56px)
}

.wrap-spnb {
    padding-block: clamp(36px, 135 / var(--max-w-unit) * var(--max-w), 135px) clamp(24px, 90 / var(--max-w-unit) * var(--max-w), 90px);
    background: var(--primary-color);
    --mask-w: calc(1920 / var(--max-w-unit) * var(--max-w));
    --mask-aspect: calc(1964/818);
    --mask-h: calc(var(--mask-w) / var(--mask-aspect));
    -webkit-mask: url(../images/spnb-bg.svg) no-repeat center top/max(100%, var(--mask-w)) auto, linear-gradient(to bottom, transparent calc(var(--mask-h) / 2), white calc(var(--mask-h) / 2));
    mask: url(../images/spnb-bg.svg) no-repeat center top/max(100%, var(--mask-w)) auto, linear-gradient(to bottom, transparent calc(var(--mask-h) / 2), white calc(var(--mask-h) / 2))
}

.wrap-spnb .title-main h2 {
    color: #fff
}

.wrap-spnb .title-main h2::after {
    border-color: #fff
}

.wrap-slide {
    position: relative;
    margin-bottom: clamp(42px, 86 / var(--max-w-unit) * var(--max-w), 86px)
}

.slide-form {
    width: var(--max-w);
    border-radius: 16px 16px 0 0;
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-top: 1px solid var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 100%, .85);
    --max-w-unit-px: calc(1200 * 1px);
    --max-w-aspect: clamp(0.5, var(--max-w) / var(--max-w-unit-px), 1);
    position: absolute;
    left: 50%;
    bottom: 0;
    translate: -50% calc(100% - 100%*var(--max-w-aspect));
    padding-inline: clamp(24px, 40 / var(--max-w-unit) * var(--max-w), 40px);
    padding-block: clamp(16px, 22 / var(--max-w-unit) * var(--max-w), 22px) clamp(16px, 36 / var(--max-w-unit) * var(--max-w), 36px);
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: clamp(12px, 16 / var(--max-w-unit) * var(--max-w), 16px)
}

@media(max-width: 992px) {
    .slide-form {
        position: relative;
        translate: 0 0;
        left: unset;
        bottom: unset;
        border: 1px solid #cecece;
        border-radius: clamp(8px, 12 / var(--max-w-unit) * var(--max-w), 12px);
        margin-top: clamp(16px, 24 / var(--max-w-unit) * var(--max-w), 24px)
    }
}

.slide-form form {
    --fs-w: clamp(14px, 17 / var(--max-w-unit) * var(--max-w), 17px);
    --fs-w-unit: 17;
    flex: 0 1 calc(795 / var(--fs-w-unit) * var(--fs-w));
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    font: 600 calc(17 / var(--fs-w-unit) * var(--fs-w))/1.4 var(--font-family);
    gap: calc(20 / var(--fs-w-unit) * var(--fs-w))
}

.slide-form form :first-child,
.slide-form form :first-child+* {
    flex: 1 1 250px;
    min-width: 140px
}

.slide-form form :last-child {
    flex: 1 1 180px;
    min-width: 100px
}

.slide-form form label {
    color: var(--green);
    margin-bottom: calc(10 / var(--fs-w-unit) * var(--fs-w))
}

.slide-form form input {
    color: var(--primary-color);
    padding-inline: calc(15 / var(--fs-w-unit) * var(--fs-w));
    padding-block: calc(14 / var(--fs-w-unit) * var(--fs-w));
    height: calc(48 / var(--fs-w-unit) * var(--fs-w));
    border: 1px solid rgba(49, 129, 14, .2);
    border-radius: calc(10 / var(--fs-w-unit) * var(--fs-w));
    background: var(--white);
    padding-right: calc(50 / var(--fs-w-unit) * var(--fs-w));
    background: url(../images/carlenda.svg) no-repeat calc(100% - (15 / var(--fs-w-unit) * var(--fs-w))) center/ calc(20 / var(--fs-w-unit) * var(--fs-w)) calc(20 / var(--fs-w-unit) * var(--fs-w));
    background-color: #fff;
}

.slide-form form input::-webkit-calendar-picker-indicator {
    /* filter: brightness(0) saturate(100%) invert(82%) sepia(29%) saturate(5611%) hue-rotate(340deg) brightness(89%) contrast(78%); */
    display: none;
}

.slide-form form button[type=submit] {
    font: inherit;
    color: var(--white);
    min-height: calc(48 / var(--fs-w-unit) * var(--fs-w));
    padding: calc(8 / var(--fs-w-unit) * var(--fs-w));
    padding-inline: calc(24 / var(--fs-w-unit) * var(--fs-w));
    background: var(--green);
    width: 100%;
    border-radius: calc(10 / var(--max-w-unit) * var(--max-w))
}

.slide-form .slide-form-lienhe {
    --fs-w: clamp(14px, 20 / var(--max-w-unit) * var(--max-w), 20px);
    --fs-w-unit: 20;
    flex: 0 1 calc(305 / var(--fs-w-unit) * var(--fs-w));
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 30 / var(--fs-w-unit) * var(--fs-w), 30px);
    font: 600 calc(20 / var(--fs-w-unit) * var(--fs-w))/1.4 var(--font-family);
    color: var(--gray-gray-700)
}

.slide-form .slide-form-lienhe :is(img, svg) {
    width: calc(48 / var(--fs-w-unit) * var(--fs-w)) !important;
    height: calc(48 / var(--fs-w-unit) * var(--fs-w)) !important
}

.slide-form .slide-form-lienhe a {
    display: flex;
    align-items: center;
    gap: calc(8 / var(--fs-w-unit) * var(--fs-w));
    color: currentColor
}

[class*=-flex]:has(>.stretched-link) {
    position: relative
}

[class*=-flex]>.stretched-link {
    position: absolute;
    inset: 0;
    z-index: 0
}

.outline-btn {
    --fs-w: clamp(13px, 15 / var(--max-w-unit) * var(--max-w), 15px);
    --fs-w-unit: 15;
    --bg-color: white;
    --text-color: var(--yellow);
    outline: 1px solid var(--text-color);
    outline-offset: -1px;
    background: rgba(0, 0, 0, 0);
    border-radius: calc(10 / var(--fs-w-unit) * var(--fs-w));
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: calc(10 / var(--fs-w-unit) * var(--fs-w));
    padding-inline: calc(26.5 / var(--fs-w-unit) * var(--fs-w));
    padding-block: calc(4 / var(--fs-w-unit) * var(--fs-w));
    height: calc(48 / var(--fs-w-unit) * var(--fs-w));
    transition: .3s ease-in-out;
    color: var(--text-color)
}

.outline-btn :is(svg, img) {
    width: calc(12 / var(--fs-w-unit) * var(--fs-w)) !important;
    height: calc(12 / var(--fs-w-unit) * var(--fs-w)) !important
}

.outline-btn:hover {
    background: var(--text-color);
    color: var(--bg-color)
}

.outline-btn.invert {
    --bg-color: var(--yellow);
    --text-color: white;
    outline-color: var(--bg-color);
    background: var(--bg-color)
}

.outline-btn.invert:hover {
    background-color: rgba(0, 0, 0, 0)
}

.wobble-hor-bottom {
    -webkit-animation: wobble-hor-bottom 1.2s infinite both;
    animation: wobble-hor-bottom 1.2s infinite both
}

@-webkit-keyframes wobble-hor-bottom {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg)
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg)
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg)
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg)
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg)
    }
}

@keyframes wobble-hor-bottom {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg)
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg)
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg)
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg)
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg)
    }
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}