@font-face {
    font-family: 'PlusJakartaSans-Regular';
    font-weight: 400;
    src: url('../fonts/PlusJakartaSans-Regular.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans-SemiBold';
    font-weight: 600;
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans-Bold';
    font-weight: 700;
    src: url('../fonts/PlusJakartaSans-Bold.ttf');
}

:root {
    --green: #7BC242;
    --green-light: #E3F4D3;
    --black: #333237;
    --grey: #828282;
    --grey-soft: #DDE5E9;
    --blue: #024E8D;
    --red: #F04730;
    --white: #FFFFFF;
    --background: #FAF9FB;
    --yellow: #FBC51B;
}

body {
    font-family: 'PlusJakartaSans-Regular';
    background-color: var(--white);
    color: var(--black);
}

.btn {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.18px;
    border: none !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--green) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline-secondary:hover {
    opacity: 0.8;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline-secondary:disabled {
    opacity: 0.5;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.btn-outline-secondary {
    background-color: transparent !important;
    color: var(--blue) !important;
    border: 1px solid var(--blue) !important;
}

.btn-outline-secondary:active,
.btn-outline-secondary:focus {
    background: rgba(8, 64, 114, 0.15);
}

.icon-img {
    height: 25px;
}

.text-green {
    color: var(--green);
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--white);
}

.navbar .navbar-brand {
    padding: 0;
    margin-right: 0;
}

.navbar .navbar-brand .icon {
    height: 65px;
}

.navbar .navbar-brand .icon-white {
    height: 65px;
    display: none;
}

.navbar .navbar-collapse {
    flex-grow: unset;
    margin-left: 130px;
}

.navbar .nav-item {
    margin-right: 15px;
}

.navbar .nav-item:last-child {
    margin-right: 0;
}

.navbar .nav-link {
    font-weight: 400;
    font-size: 15px;
    color: var(--green);
    text-align: center;
}

.navbar .nav-link.active {
    font-weight: 700;
    color: var(--green);
}

.navbar .btn {
    font-size: 15px;
    font-weight: 600;
    padding-top: 13px;
    padding-bottom: 13px;
}

.navbar .dropdown button {
    background: transparent;
    border: unset;
    margin-right: 10px;
    color: var(--green);
    font-weight: 400;
    font-size: 15px;
    width: 47px;
}

.navbar .dropdown button:hover,
.navbar .dropdown button:focus,
.navbar .dropdown button:focus-visible,
.navbar .dropdown button:active {
    outline: unset;
    border: unset;
    box-shadow: unset;
}

.navbar .dropdown button img {
    display: none;
}

.navbar .dropdown .dropdown-menu {
    border: unset;
    min-width: unset;
    padding: 0;
    width: 47px;
}

.navbar .dropdown .dropdown-menu li .dropdown-item {
    color: var(--green);
    font-weight: 400;
    font-size: 15px;
    border-radius: 0.375rem;
    padding-left: 9px;
}

.navbar .dropdown .dropdown-menu li .dropdown-item:focus,
.navbar .dropdown .dropdown-menu li .dropdown-item:active,
.navbar .dropdown .dropdown-menu li .dropdown-item:hover {
    background-color: transparent !important;
    border: unset !important;
    box-shadow: unset !important;
}

.navbar-green {
    background-color: var(--green);
    box-shadow: 0px 2px 100px 0px rgba(221, 229, 233, 0.20);
}

.navbar-green .navbar-brand .icon {
    display: none;
}

.navbar-green .navbar-brand .icon-white {
    display: block;
}

.navbar-green .nav-link,
.navbar-green .nav-link.active,
.navbar-green .dropdown button,
.navbar-green .dropdown .dropdown-menu li .dropdown-item {
    color: var(--white);
}

.navbar-green .btn {
    background-color: var(--blue) !important;
}

.navbar-green .dropdown .dropdown-menu {
    background-color: var(--green);
}

/* index */
#home {
    position: relative;
    background-color: var(--green);
    border-radius: 20px;
    padding: 130px 0 120px;
    margin-top: 85px;
}

#home h1 {
    font-size: 55px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 25px;
    /* padding: 0 14%; */
    position: relative;
    z-index: 3;
}

#home .tagline {
    text-align: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    /* padding: 0 33%; */
    position: relative;
    z-index: 3;
}

#home .company {
    background-color: var(--white);
    border-radius: 0 60px 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 40px;
    z-index: 1;
    min-width: 45%;
    min-height: 120px;
}

#home .company::before {
    content: "";
    height: 60px;
    width: 60px;
    background-color: var(--white);
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 1;
}

#home .company .dot-before {
    height: 120px;
    width: 120px;
    background-color: var(--green);
    position: absolute;
    top: -120px;
    left: 0;
    border-radius: 60px;
    z-index: 2;
}

#home .company::after {
    content: "";
    height: 60px;
    width: 60px;
    background-color: var(--white);
    position: absolute;
    bottom: 0;
    right: -60px;
    z-index: 1;
}

#home .company .dot-after {
    height: 120px;
    width: 120px;
    background-color: var(--green);
    position: absolute;
    bottom: 0;
    right: -120px;
    border-radius: 60px;
    z-index: 2;
}

#home .company p {
    color: var(--grey);
    font-size: 14px;
    font-weight: 400;
}

#home .company .list img {
    height: 65px;
    margin-right: 15px;
}

#home .ornamen-1 {
    width: 200px;
    position: absolute;
    bottom: 0;
    right: 260px;
    transform: translateY(50%);
    z-index: 3;
}

#home .ornamen-2 {
    width: 190px;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
    z-index: 3;
}

#home .ornamen-3 {
    display: none;
}

#home .bg {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

#package {
    position: relative;
    padding-top: 80px;
    padding-bottom: 120px;
}

#package h1 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
}

#package p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--grey);
}

#package .item {
    text-decoration: none;
    display: flex;
    align-items: end;
    flex-direction: row;
    border-bottom: 2px solid var(--grey-soft);
    padding-bottom: 40px;
    margin-top: 70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#package .item .icon {
    width: 100px;
    height: auto;
    margin-right: 30px;
}

#package .item .description {
    padding-right: 60px;
}

#package .item .description h2 {
    font-weight: 600;
    font-size: 26px;
    color: var(--black);
}

#package .item .button {
    width: 55px;
    height: 55px;
    position: relative;
}

#package .item .button .btn {
    background-color: var(--green);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 2;
}

#package .item .button .btn img {
    width: 30px;
}

#package .item .button .drop-shadow {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--blue);
    position: absolute;
    left: -7px;
    bottom: -7px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#package .item:hover {
    border-color: var(--green);
}

#package .item:hover .button .btn {
    transform: rotate(-45deg);
}

#package .item:hover .button .drop-shadow {
    opacity: 1;
}

#package .bg {
    position: absolute;
    width: 130px;
    left: 70px;
    bottom: 200px;
}

#destination {
    position: relative;
    z-index: 1;
    background-color: var(--green);
    border-radius: 60px 60px 0 0;
    padding-top: 80px;
    padding-bottom: 160px;
}

#destination .text {
    margin-bottom: 60px;
}

#destination h1 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: var(--white);
}

#destination p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--white);
}

#destination .bg {
    position: absolute;
    top: 0;
    right: 0;
}

#destination .content .item,
#tour-package .item {
    /* height: 390px;
    width: 310px;
    position: relative; */
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 128%;
}

#destination .content .item .description,
#tour-package .item .description {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    border-radius: 0 120px 0 20px;
    background-color: #333237B2;
    width: 100%;
    padding: 20px;
}

#destination .content .item .description h3,
#tour-package .item .description h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

#destination .content .item .description h4,
#tour-package .item .description h4 {
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
}

#destination .content .item .description h2 {
    color: var(--yellow);
    font-weight: 700;
    font-size: 26px;
    text-align: right;
}

#destination .content .item img,
#tour-package .item img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    border-radius: 20px 20px 0 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
    max-height: none;
    max-width: none;
}

#customer {
    padding: 80px 0 50px;
}

#customer h1 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 38px;
    line-height: 60px;
}

#customer .content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

#customer .content img {
    height: 85px;
    margin-left: 9px;
    margin-right: 9px;
    margin-bottom: 40px;
}

#customer dt {
    color: var(--grey);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

#customer dd {
    margin-bottom: 30px;
}

#customer dd ul {
    padding-left: 20px;
}

#customer dd ul li {
    color: var(--grey);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

/* #customer .content .item {
    flex: 1 0 calc(12.5% - 10px);
    margin: 5px;
    height: auto;
}

#customer .content .item img{
    width: 100%;
} */

#choose {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    border-radius: 60px 60px 0 0;
    padding-top: 80px;
    margin-top: -60px;
    margin-bottom: 120px;
}

#choose .content {
    margin-bottom: 60px;
}

#choose h1,
#contact .content h2 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: var(--black);
    padding-right: 3px;
}

#choose p,
#contact .content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--grey);
}

#choose .item {
    background-color: var(--background);
    border-radius: 15px;
    border-top: 15px solid var(--green);
    margin-right: 40px;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

#choose .item .icon {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    border-radius: 50%;
    margin-bottom: 20px;
}

#choose .item .icon img {
    width: 35px;
}

#choose .item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
    margin-bottom: 15px;
}

#choose .item h4 {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--grey);
}

#choose .bg-promo,
#choose .promo-title {
    display: none;
}

#choose .promo-desktop {
    margin-top: 100px;
}

#choose .promo-desktop .thumbnail {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    height: 100%;
}

#choose .promo-desktop .thumbnail .description {
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--white);
    height: 100%;
    padding: 200px 60px 80px;
}

#choose .promo-desktop .thumbnail .description h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 64px;
}

#choose .promo-desktop .thumbnail .description h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--grey-soft);
    margin-bottom: 20px;
}

#choose .promo-desktop .thumbnail .description .btn {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#choose .promo-desktop .thumbnail-small {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    height: calc(50% - 5px);
}

#choose .promo-desktop .thumbnail-small:first-child {
    margin-bottom: 10px;
}

#choose .promo-desktop .thumbnail-small .description {
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--white);
    height: 100%;
    padding: 40% 30px 30px;
}

#choose .promo-desktop .thumbnail-small .description h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

#choose .promo-desktop .thumbnail-small .description h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 0;
}

/* about us */
#about,
#contact,
#service,
#gallery,
#tour-package {
    margin-top: 81px;
}

#about .header,
#contact .header,
#service .header,
#gallery .header,
#tour-package .header {
    position: relative;
    background-color: var(--green);
    color: var(--white);
    border-radius: 0 0 0 200px;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 130px;
}

#about .header .tagline,
#contact .header .tagline,
#service .header .tagline,
#gallery .header .tagline,
#tour-package .header .tagline {
    padding: 10px 30px;
    border-radius: 200px;
    background-color: #FFFFFF26;
    margin-bottom: 15px;
}

#about .header .tagline h4,
#contact .header .tagline h4,
#service .header .tagline h4,
#gallery .header .tagline h4,
#tour-package .header .tagline h4 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
}

#about .header h1,
#contact .header h1,
#service .header h1,
#gallery .header h1,
#tour-package .header h1 {
    font-weight: 600;
    font-size: 54px;
    line-height: 80px;
    margin-bottom: 20px;
}

#about .header h3,
#contact .header h3,
#service .header h3,
#gallery .header h3,
#tour-package .header h3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding: 0 1%;
}

#about .header .bg,
#contact .header .bg,
#service .header .bg,
#gallery .header .bg,
#tour-package .header .bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
}

#about .header .bg-star,
#contact .header .bg-star,
#service .header .bg-star,
#gallery .header .bg-star,
#tour-package .header .bg-star {
    position: absolute;
    left: 60px;
    bottom: 180px;
    width: 160px;
}

#about .welcome {
    padding: 70px 0 90px;
}

#about .welcome .company {
    background-color: #7BC24226;
    padding: 10px 30px;
    border-radius: 200px;
    margin-bottom: 20px;
}

#about .welcome .company h5 {
    margin-bottom: 0;
    color: var(--green);
    font-weight: 600;
    font-size: 15px;
}

#about .welcome h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 60px;
    margin-bottom: 20px;
    padding-right: 16%;
}

#about .welcome p {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    line-height: 28px;
}

#about #choose {
    margin-top: 0;
    background-color: var(--background);
    padding-bottom: 100px;
}

#about #choose .item {
    background-color: var(--white);
}

#about #choose.bg-white {
    margin-top: -60px;
}

#about .faq .title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#about .faq .title .bg-left {
    position: absolute;
    height: 120px;
    top: -20px;
    left: 40px;
}

#about .faq .title .bg-right {
    position: absolute;
    height: 120px;
    top: -20px;
    right: 40px;
}

#about .faq .title h2 {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
}

#about .faq .title p {
    padding: 0 5%;
}

#about .faq .accordion-item {
    border: none;
    background-color: var(--green-light);
    color: var(--green);
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 5px 25px;
}

#about .faq .accordion-item hr {
    margin: 5px 20px;
    opacity: 1;
    border: 1px solid var(--green);
}

#about .faq .accordion-button {
    background-color: var(--green-light);
    color: var(--green);
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    box-shadow: none;
}

#about .faq .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

#about .faq .accordion-button::after {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--green);
    background-image: url('../img/accordion-plus.png');
    background-size: contain;
}

#about .faq .accordion-button:not(.collapsed)::after {
    background-image: url('../img/accordion-minus.png');
}

#about .faq .accordion-body {
    font-weight: 400;
    font-size: 18px;
}

/* contact us */
#contact #choose.bg-white {
    margin-top: 0;
    padding-top: 0;
}

#contact .item {
    display: flex;
    margin-top: 60px;
}

#contact .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    width: 90px;
    height: 90px;
    border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

#contact .item .icon img {
    width: 40px;
}

#contact .item .text h5 {
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
}

#contact .item .text h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--grey);
}

#contact .content {
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
}

#contact .content img {
    position: absolute;
    right: 40px;
    bottom: 0;
    width: 100px;
}

#contact form label {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 5px;
}

#contact form .col-md-6:first-child .form-group {
    margin-bottom: 35px;
    padding-right: 40px;
}

#contact form .col-md-6:last-child .form-group {
    margin-bottom: 30px;
    padding-left: 40px;
}

#contact form .form-control {
    border: 2px solid var(--grey-soft);
    border-radius: 10px;
    padding: 12px 25px;
}

#contact form .form-control::placeholder {
    color: #82828280;
}

#contact form .form-control:focus {
    box-shadow: none;
}

#contact form .btn {
    font-size: 14px;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
}

#contact .promo-desktop {
    margin-top: 80px;
}

/* services */
#service #choose.bg-white {
    margin-top: 0;
    padding-top: 0;
}

#service .content,
#gallery .content {
    margin-top: 80px;
}

#service .content .title,
#gallery .content .title {
    font-weight: 600;
    font-size: 40px;
    line-height: 60px
}

#service .content .caption,
#gallery .content .caption {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--grey);
}

#gallery #gallery-content {
    margin-top: 40px;
}

#service #myService {
    border-bottom: none;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 90px;
}

#service #myService .nav-item {
    height: 500px;
    width: 25%;
    background-size: cover;
}

#service #myService .nav-item:has(.nav-link.active) {
    width: 35%;
}

#service #myService .nav-item .service-item.active {
    background-color: #00000099;
    justify-content: center;
}

#service #myService .nav-item .service-item.active h3 {
    width: auto;
    line-height: 60px;
    margin-bottom: 10px;
}

#service #myService .nav-item .service-item.active h4,
#service #myService .nav-item .service-item.active .scroll-down {
    display: block;
}

#service #myService .nav-item .service-item.active .label {
    background-color: var(--green);
}

#service #myService .nav-item .service-item.active .label::after {
    border-top: 6.5px solid #68AD35;
    border-left: 6.5px solid #68AD35;
}

#service #myService .nav-item .service-item {
    color: var(--white);
    background-color: #FFFFFFCC;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border: none;
    border-radius: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 0 30px;
    position: relative;
}

#service #myService .nav-item .service-item h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: normal;
    width: max-content;
    margin-bottom: 0;
}

#service #myService .nav-item .service-item h4 {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    display: none;
}

#service #myService .nav-item .service-item .scroll-down {
    width: 100px;
    position: absolute;
    right: 30px;
    bottom: 10px;
    display: none;
}

#service #myService .nav-item .service-item .label {
    background-color: #CAE7B3;
    position: absolute;
    transform: rotate(-90deg);
    padding: 8px 0;
    font-size: 18px;
    line-height: 30px;
    top: 45px;
    left: -80px;
    width: 160px;
    text-align: center;
    border-radius: 5px 20px 0 0;
}

#service #myService .nav-item .service-item .label::after {
    content: "";
    border-top: 6.5px solid #C3DEAE;
    border-left: 6.5px solid #C3DEAE;
    border-bottom: 6px solid var(--white);
    border-right: 6px solid var(--white);
    position: absolute;
    bottom: -12px;
    right: 0;
}

#service .service-detail h5 {
    font-weight: 600;
    font-size: 38px;
    line-height: 60px;
}

#service .service-detail p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--grey);
}

#service .smile-holiday-detail {
    background-color: unset;
    padding-top: 60px;
}

#service .smile-holiday-detail .content {
    margin-top: 0;
}

#service .smile-mice-detail {
    margin-top: 60px;
}

#service #smileEventTab {
    border-bottom: none;
    padding-right: 40px;
}

#service #smileEventTab .smile-mice-item {
    border: none;
    text-align: left;
    color: var(--grey);
    border-bottom: 1px solid var(--grey);
    padding: 0 40px 0 0;
    background-color: unset;
    margin-bottom: 60px;
    position: relative;
}

#service #smileEventTab .smile-mice-item h6 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 0;
}

#service #smileEventTab .smile-mice-item h5 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

#service #smileEventTab .smile-mice-item p {
    font-size: 400px;
    font-size: 15px;
    margin-bottom: 30px;
}

#service #smileEventTab .smile-mice-item .arrow img {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
}

#service #smileEventTab .smile-mice-item .arrow .green {
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#service #smileEventTab .smile-mice-item .arrow .grey {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#service #smileEventTab .smile-mice-item.active {
    color: var(--green);
    border-color: var(--green);
}

#service #smileEventTab .smile-mice-item.active p {
    color: var(--green);
}

#service #smileEventTab .smile-mice-item.active .arrow .green {
    opacity: 1;
}

#service #smileEventTab .smile-mice-item.active .arrow .grey {
    transform: rotate(-90deg);
    opacity: 0;
}

#service #smileEventTabContent img {
    width: 100%;
}

#service #smileTransportTab {
    border-bottom: none;
    justify-content: center;
    background-color: var(--green-light);
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 13px 25px;
    border-radius: 200px;
}

#service #smileTransportTab .nav-link {
    border: none;
    color: var(--green);
    background-color: unset;
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 200px;
}

#service #smileTransportTab .nav-link.active {
    color: var(--white);
    background-color: var(--green);
}

#service #smileTransportTabContent .smile-creative-item {
    border-radius: 15px;
    background-color: var(--background);
    border: 1px solid var(--grey-soft);
    margin-bottom: 70px;
}

#service #smileTransportTabContent .smile-creative-item .armada {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: calc(.75 * 100%);
    border-radius: 15px 15px 0 0;
}

#service #smileTransportTabContent .smile-creative-item .armada .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
    max-height: none;
    max-width: none;
}

#service #smileTransportTabContent .smile-creative-item .desc {
    position: relative;
    padding: 10px 30px 30px;
}

#service #smileTransportTabContent .smile-creative-item .desc h5 {
    font-weight: 600;
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 15px;
}

#service #smileTransportTabContent .smile-creative-item .desc .spec {
    display: flex;
    flex-wrap: wrap;
}

#service #smileTransportTabContent .smile-creative-item .desc .spec .tag {
    background-color: #7BC24233;
    color: var(--green);
    padding: 3px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    border-radius: 30px;
    margin-right: 15px;
    margin-bottom: 25px;
}

#service #smileTransportTabContent .smile-creative-item .desc .spec .tag:last-child {
    margin-right: 0;
}

#service #smileTransportTabContent .smile-creative-item .desc .btn {
    font-weight: 600;
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#service #smileTransportTabContent .smile-creative-item .desc .bg {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
}

#service .promo-desktop {
    margin-top: 30px;
}

#tour-package .title {
    margin-top: 80px;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: var(--black);
}

#tour-package p {
    font-weight: 400;
    font-size: 16px;
    color: var(--grey);
}

#tour-package .item img {
    border-radius: 50px 50px 0 50px;
    padding: 30px;
}

#tour-package .item .description {
    width: calc(100% - 60px);
    margin: 30px;
}

footer .top {
    background-color: var(--green-light);
    position: relative;
    padding-top: 40px;
    padding-bottom: 100px;
}

footer .top .logo-desktop {
    width: 110px;
    margin-bottom: 30px;
}

footer .top h5 {
    color: var(--black);
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

footer .top .subs-input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--green);
    font-size: 14px;
    width: 65%;
    padding: 5px;
}

footer .top .subs-input:focus-visible {
    outline: none;
}

footer .top .btn {
    border-radius: unset;
    font-size: 14px;
}

footer .top h3 {
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}

footer .top .link {
    display: flex;
    flex-direction: column;
}

footer .top .link a {
    text-decoration: none;
    color: var(--green);
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 15px;
}

footer .top .map-footer-desktop {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
}

footer .top .text-footer-desktop {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 530px;
}

footer .bottom {
    background-color: var(--green);
    padding: 15px 0;
}

footer .bottom p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
}

footer .bottom a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

footer .bottom a:first-child {
    margin-left: 0;
}

footer .bottom a i {
    font-size: 22px;
}

#experience {
    background-color: var(--green);
    margin-top: 100px;
    padding: 80px 0 20px;
    position: relative;
}

#experience h1 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 40px;
    line-height: 60px;
    color: var(--white);
}

#experience p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--white);
}

#experience .bg {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#experience .bg-mobile-top,
#experience .bg-mobile-bottom {
    display: none;
}

#experience .item {
    background-color: var(--background);
    border-radius: 20px;
    margin-bottom: 25px;
    width: 100%;
}

#experience .item .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--grey-soft);
    padding: 20px 20px 15px;
}

#experience .item .title .name h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--grey);
}

#experience .item .title .name h5 {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 0;
}

#experience .item .title .rating i {
    color: var(--yellow);
    margin: 0 2px;
}

#experience .item .title .rating {
    font-size: 14px;
    color: var(--grey);
}

#experience .item .comment {
    padding: 20px 20px 40px;
}

#experience .item .comment p {
    color: var(--grey);
}

@media (min-width: 1400px) {}

@media (min-width: 1200px) {
    #choose .item {
        min-height: 313px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar .navbar-collapse {
        margin-left: 0;
    }

    #choose .item {
        margin-left: 20px;
        margin-right: 20px;
        min-height: 313px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar .navbar-collapse {
        margin-left: 0;
    }

    .navbar .navbar-nav {
        align-items: center;
    }

    #home .company {
        padding: 20px;
    }

    #home .company .list img {
        height: 35px;
    }

    #home .ornamen-1 {
        width: 17%;
        right: 21%;
    }

    #home .ornamen-2 {
        width: 16%;
        right: 30px;
    }

    #customer .content img {
        height: 110px;
    }

    #choose .item {
        margin-right: 0;
        margin-left: 0;
        padding: 20px;
        min-height: 293px;
    }

    #service #smileTransportTabContent .smile-creative-item .desc {
        padding-left: 25px;
        padding-right: 25px;
    }

    #service #myService .nav-item:has(.nav-link.active) {
        width: 45%;
    }

    #service #myService .nav-item:has(.nav-link.active) .service-item h3 {
        font-size: 36px;
    }

    #service #myService .nav-item .service-item h3 {
        font-size: 21px;
    }

    #service #myService .nav-item .service-item .scroll-down {
        width: 85px;
    }

    #contact .content img {
        bottom: -40px;
    }
}

/* @media (min-width: 576px) and (max-width: 767.98px) { */
/* } */

@media (max-width: 767.98px) {
    .navbar {
        background-color: var(--green);
    }

    .navbar.radius {
        border-radius: 0 0 90px 0;
    }

    .navbar .navbar-brand .icon {
        display: none;
    }

    .navbar .navbar-brand .icon-white {
        display: block;
        height: 55px;
    }

    .navbar .navbar-collapse {
        margin-top: 10px;
        margin-left: 0;
        margin-bottom: 50px;
    }

    .navbar .nav-item {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .navbar .nav-link {
        color: var(--white);
        text-align: center;
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar .nav-link.active {
        color: var(--white);
        background-color: var(--blue);
    }

    .navbar .navbar-toggler {
        border: none;
    }

    .navbar .navbar-toggler:focus {
        outline: none;
        border: none;
        box-shadow: none;
    }

    .navbar .navbar-toggler img {
        height: 30px;
    }

    .navbar .btn {
        display: none;
    }

    .navbar .dropdown button {
        background-color: #FAF9FB66;
        padding: 10px;
        border-radius: 20px;
        margin-right: 0;
        color: var(--white);
        width: unset;
    }

    .navbar .dropdown button img {
        display: block;
        height: 30px;
        margin-right: 10px;
    }

    .navbar .dropdown .dropdown-menu {
        left: auto;
        background-color: #FAF9FB66;
        margin-top: 0;
    }

    .navbar .dropdown .dropdown-menu li .dropdown-item {
        color: var(--white);
        padding-left: 1rem;
    }


    /* home */
    #home {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    #home h1 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
        padding: 0px 13%;
    }

    #home .tagline {
        font-size: 10px;
        padding: 0px 15%;
    }

    #home .company {
        position: absolute;
        border-radius: unset;
        bottom: -100px;
        min-width: unset;
        min-height: unset;
        text-align: center;
        padding: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    #home .company .list img {
        height: 45px;
    }

    #home .company .list img:last-child {
        margin-right: 0;
    }

    #home .company p {
        font-size: 12px;
    }

    #home .company::before,
    #home .company::after,
    #home .company .dot-before,
    #home .company .dot-after {
        display: none;
    }

    #home .ornamen-1 {
        left: 50%;
        right: unset;
        width: 60px;
        transform: translate(calc(-100% - 70px), 40%);
    }

    #home .ornamen-2 {
        width: 110px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        transform: translateY(70%);
    }

    #home .ornamen-3 {
        display: block;
        right: 50%;
        width: 60px;
        position: absolute;
        bottom: 0;
        transform: translate(calc(100% + 70px), 40%);
        z-index: 3;
    }

    #home .btn {
        font-size: 10px;
        padding: 8px 18px;
    }

    #package {
        background-color: var(--background);
        border-radius: 30px 30px 0 0;
        margin-top: 40px;
        padding-top: 25px;
        padding-bottom: 90px;
    }

    #package h1 {
        font-size: 17px;
        line-height: 32px;
    }

    #package p {
        font-size: 11px;
        line-height: 16px;
    }

    #package .item {
        margin-top: 40px;
        padding-bottom: 25px;
        align-items: center;
    }

    #package .item .icon {
        width: 60px;
        margin-right: 20px;
    }

    #package .item .description {
        padding-right: 15px;
    }

    #package .item .description h2 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    #package .item .button {
        width: 40px;
        height: 40px;
    }

    #package .item .button .btn {
        transform: rotate(-45deg);
    }

    #package .item .button .btn img {
        width: 20px;
    }

    #package .item:hover {
        border-color: var(--grey-soft);
    }

    #package .item:hover .button .btn {
        transform: rotate(-45deg);
    }

    #package .item:hover .button .drop-shadow {
        opacity: 0;
    }

    #package .bg {
        display: none;
    }

    #destination {
        margin-top: -30px;
        border-radius: 30px 30px 0 0;
        padding-top: 25px;
        padding-bottom: 120px;
    }

    #destination h1 {
        font-size: 17px;
        line-height: 28px;
        padding-right: 47%;
        margin-bottom: 5px;
    }

    #destination p {
        font-size: 11px;
        line-height: 16px;
        padding-right: 14%;
    }

    #destination .text {
        margin-bottom: 30px;
    }

    #destination .bg {
        width: 100px;
    }

    #destination .content {
        position: relative;
        justify-content: space-between;
    }

    #destination .content .slider {
        width: 47%;
        position: relative;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    #destination .content .slider:nth-child(odd) {
        margin-top: 0;
    }

    #destination .content .slider .item {
        width: 100%;
    }

    #destination .content .item img,
    #tour-package .item img {
        border-radius: 8px 8px 0 8px;
    }

    #destination .content .item .description,
    #tour-package .item .description {
        border-radius: 0 50px 0 8px;
        padding: 10px 7px;
    }

    #destination .content .item .description h3,
    #tour-package .item .description h3 {
        font-size: 12px;
    }

    #destination .content .item .description h4,
    #tour-package .item .description h4 {
        font-size: 11px;
    }

    #destination .content .item .description h2,
    #tour-package .item .description h2 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    #customer {
        padding: 30px 0;
    }

    #customer h1 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 5px;
    }

    #customer p {
        font-size: 11px;
        line-height: 16px;
    }

    #customer .content {
        margin-top: 20px;
    }

    #customer .content img {
        height: 55px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 20px;
    }

    #choose {
        padding-top: 25px;
        border-radius: 30px 30px 0 0;
    }

    #choose h1 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 5px;
    }

    #choose p {
        font-size: 11px;
        line-height: 16px;
        padding-right: 11%;
    }

    #choose .content {
        margin-bottom: 40px;
    }

    #choose .item {
        margin: 0 15% 50px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    #choose .item h3 {
        font-size: 14px;
        line-height: 24px;
    }

    #choose .item h4 {
        font-size: 12px;
        line-height: 20px;
    }

    #choose .bg-promo {
        display: block;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
    }

    #choose.promo-container {
        padding-top: 95px !important;
        padding-bottom: 85px !important;
        margin-bottom: 50px;
    }

    #choose .promo-title {
        display: block;
        text-align: center;
        color: var(--white);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    #choose .promo-desktop {
        margin-top: 0;
    }

    #choose .promo-desktop .col-md-8 {
        margin-bottom: 10px;
    }

    #choose .promo-desktop .thumbnail {
        border-radius: 8px;
        /* width: 320px; */
        /* height: 180px; */
    }

    #choose .promo-desktop .thumbnail .description {
        border-radius: 8px;
        padding: 60px 45px 40px 20px;
    }

    #choose .promo-desktop .thumbnail .description h2 {
        font-size: 16px;
        line-height: unset;
    }

    #choose .promo-desktop .thumbnail .description h4 {
        font-size: 12px;
        line-height: unset;
        margin-bottom: 15px;
    }

    #choose .promo-desktop .thumbnail .description .btn {
        font-size: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #choose .promo-desktop .thumbnail-small {
        border-radius: 8px;
        min-height: 207px;
    }

    #choose .promo-desktop .thumbnail-small .description {
        border-radius: 8px;
        padding: 40px 20px;
        position: relative;
    }

    #choose .promo-desktop .thumbnail-small .description h4 {
        font-size: 16px;
        line-height: unset;
        position: absolute;
        bottom: 70px;
    }

    #choose .promo-desktop .thumbnail-small .description h3 {
        position: absolute;
        bottom: 40px;
    }

    #about,
    #contact,
    #service,
    #gallery,
    #tour-package {
        margin-top: 71px;
    }

    #about .header,
    #contact .header,
    #service .header,
    #gallery .header,
    #tour-package .header {
        padding-top: 60px;
        padding-bottom: 80px;
        border-radius: 0 0 0 90px;
    }

    #about .header .tagline,
    #contact .header .tagline,
    #service .header .tagline,
    #gallery .header .tagline,
    #tour-package .header .tagline {
        padding: 6px 25px;
    }

    #about .header .tagline h4,
    #contact .header .tagline h4,
    #service .header .tagline h4,
    #gallery .header .tagline h4,
    #tour-package .header .tagline h4 {
        font-size: 11px;
    }

    #about .header h1,
    #contact .header h1,
    #service .header h1,
    #gallery .header h1,
    #tour-package .header h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    #about .header h3,
    #contact .header h3,
    #service .header h3,
    #gallery .header h3,
    #tour-package .header h3 {
        font-size: 11px;
        line-height: 20px;
        padding: 0 8%;
    }

    #about .header .bg-star,
    #contact .header .bg-star,
    #service .header .bg-star,
    #gallery .header .bg-star,
    #tour-package .header .bg-star {
        width: 80px;
        top: 20px;
        left: 20px;
        bottom: unset;
    }

    #about .header .bg,
    #contact .header .bg,
    #service .header .bg,
    #gallery .header .bg,
    #tour-package .header .bg {
        width: 100px;
    }

    /* about */
    #about .welcome {
        padding: 40px 0 60px;
    }

    #about .welcome .company {
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 15px;
    }

    #about .welcome .company h5 {
        font-size: 11px;
        line-height: 16px;
    }

    #about .welcome h2 {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 15px;
        padding-right: 19%;
    }

    #about .welcome p {
        font-size: 11px;
        line-height: 18px;
    }

    #about #choose {
        padding-bottom: 80px;
    }

    #about .faq .title {
        margin-bottom: 25px;
    }

    #about .faq .title h2 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 5px;
    }

    #about .faq .title p {
        padding: 0 21%;
    }

    #about .faq .title .bg-left {
        height: 60px;
        top: -5px;
        left: 5px;
    }

    #about .faq .title .bg-right {
        height: 40px;
        top: unset;
        right: 5px;
        bottom: 0;
    }

    #about .faq .accordion-button {
        font-size: 14px;
        line-height: 24px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #about .faq .accordion-button::after {
        position: absolute;
        top: -18px;
        right: -11px;
        width: 27px;
        height: 27px;
    }

    #about .faq .accordion-item hr {
        margin-top: 0;
        margin-bottom: 0;
    }

    #about .faq .accordion-body {
        font-size: 12px;
        line-height: 20px;
    }

    #about .faq .accordion-item {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 40px;
    }

    /* contact */
    #contact .item {
        margin-top: 50px;
    }

    #contact .item .icon {
        width: 60px;
        height: 60px;
    }

    #contact .item .icon img {
        width: 30px;
    }

    #contact .item .text h5 {
        font-size: 16px;
        line-height: 26px;
    }

    #contact .item .text h6 {
        font-size: 11px;
        line-height: 20px;
        margin-bottom: 0;
    }

    #contact .content {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    #contact .content h2 {
        font-size: 18px;
        line-height: 26px;
        padding-right: 59%;
        margin-bottom: 5px;
    }

    #contact .content p {
        font-size: 11px;
        line-height: 18px;
        padding-right: 12%;
    }

    #contact .content img {
        top: -10px;
        right: 20px;
        bottom: unset;
        width: 60px;
    }

    #contact form label {
        font-size: 16px;
    }

    #contact form .form-group {
        margin-bottom: 20px !important;
    }

    #contact form .form-control {
        border-radius: 5px;
        border-width: 1px;
        font-size: 14px;
        padding: 10px 15px;
    }

    #contact form .col-md-6:first-child .form-group {
        padding-right: 0;
    }

    #contact form .col-md-6:last-child .form-group {
        padding-left: 0;
    }

    #contact form .btn {
        width: 100%;
    }

    /* service */
    #service .container-xl {
        padding-left: 0;
        padding-right: 0;
    }

    #service .content,
    #gallery .content {
        margin-top: 50px;
    }

    #service .content .title,
    #gallery .content .title {
        font-size: 18px;
        line-height: 26px;
    }

    #service .content .caption,
    #gallery .content .caption {
        font-size: 11px;
        line-height: 18px;
        padding-right: 14%;
    }

    #gallery #gallery-content {
        margin-top: 20px;
    }

    #service .service-detail h5 {
        font-size: 18px;
        line-height: 26px;
        padding-right: 36%;
    }

    #service #myService {
        flex-wrap: nowrap;
        justify-content: unset;
        overflow-x: auto;
        margin-top: 10px;
        margin-bottom: 50px;
        padding-top: 13px;
        padding-left: 25px;
        padding-right: 25px;
    }

    #service #myService .nav-item {
        width: 290px !important;
        height: 380px;
        flex-shrink: 0;
    }

    #service #myService .nav-item .service-item {
        padding: 0 15px;
    }

    #service #myService .nav-item .service-item .label {
        padding: 3px 0;
        width: 120px;
        font-size: 14px;
        top: 30px;
        left: -60px;
    }

    #service #myService .nav-item .service-item h3,
    #service #myService .nav-item .service-item.active h3 {
        margin-top: 40px;
        font-size: 24px;
        line-height: normal;
    }

    #service #myService .nav-item .service-item h4,
    #service #myService .nav-item .service-item.active h4 {
        font-size: 12px;
        line-height: 20px;
    }

    #service #myService .nav-item .service-item.active .scroll-down {
        width: 70px;
        right: 15px;
    }

    #service #smile-creative-tab-pane h5 {
        padding-right: 34%;
    }

    #service .service-detail p {
        font-size: 11px;
        line-height: 18px;
        padding-right: 9%;
    }

    #service .smile-mice-detail {
        margin-top: 30px;
    }

    #service #smileEventTab {
        padding-right: 0;
    }

    #service #smileEventTab .smile-mice-item,
    #service #smileEventTab .smile-mice-item.active {
        border-color: var(--green);
        padding: 0;
        margin-bottom: 40px;
    }

    #service #smileEventTab .smile-mice-item h6 {
        font-size: 12px;
        color: var(--green);
    }

    #service #smileEventTab .smile-mice-item h5,
    #service #smileEventTab .smile-mice-item.active h5 {
        font-size: 18px;
        line-height: 26px;
        padding-right: 0;
        color: var(--green);
    }

    #service #smileEventTab .smile-mice-item p,
    #service #smileEventTab .smile-mice-item.active p {
        color: var(--grey);
        font-size: 11px;
        line-height: 18px;
        padding-right: 12%;
        margin-bottom: 20px;
    }

    #service #smileEventTab .smile-mice-item .arrow {
        display: none;
    }

    #service #smileEventTabContent {
        display: none;
    }

    #service #smileTransportTab {
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #service #smileTransportTab .nav-link {
        font-size: 14px;
        padding: 5px 30px;
    }

    #service #smileTransportTabContent .smile-creative-item {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 50px;
    }

    #service #smileTransportTabContent .smile-creative-item .armada {
        padding-top: calc(.625 * 100%);
    }

    #service #smileTransportTabContent .smile-creative-item .desc {
        padding: 20px;
    }

    #service #smileTransportTabContent .smile-creative-item .desc h5 {
        font-size: 18px;
        line-height: 28px;
    }

    #service #smileTransportTabContent .smile-creative-item .desc .spec .tag {
        margin-right: 10px;
        margin-bottom: 15px;
        font-size: 11px;
        padding-top: 0;
        padding-bottom: 0;
    }

    #service #smileTransportTabContent .smile-creative-item .desc .btn {
        font-size: 12px;
    }

    #tour-package .title {
        margin-top: 40px;
        font-size: 20px;
        line-height: normal;
    }

    #tour-package p {
        font-size: 12px;
    }

    #tour-package .col-6:nth-child(even) .item {
        margin-top: 60px;
        margin-bottom: 0;
    }

    #tour-package .item {
        margin-top: 15px;
    }

    #tour-package .item img {
        padding: 0;
    }

    #tour-package .item .description {
        margin: 0;
        width: 100%;
    }

    #customer dt {
        font-size: 16px;
        margin-bottom: 15px;
    }

    #customer dd {
        margin-bottom: 30px;
    }

    #customer dd ul {
        padding-left: 20px;
    }

    #customer dd ul li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    footer .top {
        background-color: var(--green);
        border-radius: 30px 30px 0 0;
        padding-top: 30px;
        padding-bottom: 5px;
    }

    footer .top .logo-desktop,
    footer .top .map-footer-desktop,
    footer .top .text-footer-desktop {
        display: none;
    }

    footer .top h5 {
        color: var(--white);
        font-size: 16px;
        line-height: 22px;
    }

    footer .top h3 {
        color: var(--white);
        font-size: 16px;
        text-transform: capitalize;
    }

    footer .top .link a {
        color: var(--white);
        font-size: 14px;
        margin-bottom: 10px;
    }

    footer .top .subs-input {
        background-color: var(--white);
        border-radius: 4px;
        width: 100%;
        border-bottom: none;
        margin-bottom: 10px;
        font-size: 12px;
        padding: 10px 15px;
    }

    footer .top .btn {
        background-color: var(--blue) !important;
        color: var(--white) !important;
        border-radius: 8px;
        font-size: 12px;
        width: 100%;
        margin-bottom: 30px;
    }

    footer .top .logo-mobile {
        width: 100px;
    }

    footer .top .text-footer-mobile {
        width: 200px;
    }

    footer .top .map-footer-mobile {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        z-index: 0;
    }

    footer .bottom hr {
        border-color: var(--white);
        opacity: 1;
    }

    footer .bottom p {
        margin-top: 10px;
        font-size: 12px;
    }

    footer .bottom a i {
        font-size: 20px;
    }

    #experience {
        margin-top: 20px;
        margin-bottom: 0;
        padding-top: 30px;
        padding-bottom: 110px;
    }

    #experience h1 {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 5px;
    }

    #experience p {
        font-size: 11px;
        line-height: 16px;
    }

    #experience .bg {
        display: none;
    }

    #experience .bg-mobile-top,
    #experience .bg-mobile-bottom {
        display: block;
        position: absolute;
    }

    #experience .bg-mobile-top {
        top: 0;
        right: 0;
    }

    #experience .bg-mobile-bottom {
        bottom: 0;
        width: 100%;
    }

    #experience .rating-container {
        padding-left: 0;
        padding-right: 0;
    }

    #experience .rating-row {
        margin-left: 0;
        margin-right: 0;
    }

    #experience .item {
        margin-top: 20px !important;
        margin-bottom: 0;
    }

    #experience .col-md-6:nth-child(odd) {
        padding-right: 30%;
        padding-left: 0;
    }

    #experience .col-md-6:nth-child(odd) .item {
        border-radius: 0 12px 12px 0;
    }

    #experience .col-md-6:nth-child(even) {
        padding-left: 30%;
        padding-right: 0;
    }

    #experience .col-md-6:nth-child(even) .item {
        border-radius: 12px 0 0 12px;
    }

    #experience .item .title {
        padding: 15px 15px 10px;
    }

    #experience .item .comment {
        padding: 15px 15px 20px;
    }

    #experience .item .title .name h4 {
        font-size: 14px;
    }

    #experience .item .title .name h5 {
        font-size: 12px;
    }

    #experience .item .title .rating {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    #destination h1 {
        padding-right: 37%;
    }

    #choose h1 {
        padding-right: 63%;
    }

    #service .service-detail h5 {
        padding-right: 34%;
    }

    #service #smile-creative-tab-pane h5 {
        padding-right: 19%;
    }

    #contact .content h2 {
        padding-right: 51%;
    }

    footer .top .text-footer-mobile {
        width: 100px;
    }
}