.header-logo img {
    height: 70px;
}
.why-choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.why-choose-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #0c2041, #215572);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.why-choose-card:hover:before {
    transform: scaleX(1);
}
.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.1);
}
.why-choose-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0c2041, #215572);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    transition: all 0.4s ease;
}
.why-choose-card:hover .why-choose-card-icon {
    transform: scale(1.1) rotate(5deg) translateY(-3px);
    box-shadow: 5px 5px 3px #215572;
}
.why-choose-card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0c2041;
    font-size: 1.4rem;
}
.why-choose-card-content {
    line-height: 1.6;
}
@keyframes top-card-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.why-choose-card.animated {
    animation: top-card-up 0.6s ease forwards;
}
.destination-item_img.service-img {
    height: 15rem;
}
.destination-item_img.service-img img {
    height: 100%;
}
.destination-text.desc-height {
    height: 8rem;
    overflow-y: auto;
    padding: 5px 10px;
}
.destination-text.desc-height::-webkit-scrollbar {
    width: 6px;
}
.destination-text.desc-height::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.destination-text.desc-height::-webkit-scrollbar-thumb {
    background-color: rgb(16 44 88 / 0.85);
    border-radius: 10px;
}
.destination-text.desc-height::-webkit-scrollbar-thumb:hover {
    background-color: rgb(18 52 106 / 0.85);
}
.explore-container {
    background: linear-gradient(rgb(12 32 65 / 0.85), rgb(12 32 65 / 0.95)),
        url(https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80)
            no-repeat center center;
    background-size: cover;
    padding: 50px;
    color: var(--white-color);
    box-shadow: 0 20px 50px rgb(0 0 0 / 0.1);
    position: relative;
    overflow: hidden;
}
.explore-container:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    z-index: 0;
}
.explore-content {
    position: relative;
    z-index: 1;
}
.explore-title {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white-color);
}
.explore-subtitle {
    margin-bottom: 20px;
    max-width: 600px;
    opacity: 0.9;
    color: #fff;
}
.explore-section-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.explore-section-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    background: rgb(255 255 255 / 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #fff;
}
.explore-section-contact:hover {
    background: rgb(255 255 255 / 0.2);
    transform: translateY(-3px);
}
.explore-section-contact i {
    color: #fff;
    font-size: 1.5rem;
}
.review-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.review-cards .review-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    margin-top: 2rem;
}
.review-cards .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.12);
}
.review-cards .review-logo {
    height: 30px;
    margin-bottom: 10px;
}
.review-cards .review-title {
    font-family: var(--title-font);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.review-cards .review-text {
    color: var(--body-color);
    margin-bottom: 20px;
}
.review-cards .stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.review-cards .stat {
    text-align: center;
    flex: 1;
}
.review-cards .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme-color);
}
.review-cards .stat-label {
    font-size: 0.9rem;
    color: var(--body-color);
}
.box-title2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-text2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-text3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-text4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tour-slider-img {
    height: 25rem;
    width: 100%;
}
.tour-slider-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tour-slider-thumb-img {
    height: 10rem;
    width: 100%;
}
.tour-slider-thumb-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tour-gallery-card .gallery-img {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.tour-gallery-card .gallery-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.floating_btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
@keyframes pulsing {
    to {
        box-shadow: 0 0 0 15px #fff0;
    }
}
.contact_icon img {
    border-radius: 50px;
    color: hsl(0 0% 100%);
    width: 55px;
    height: 55px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: 1.25s cubic-bezier(0.66, 0, 0, 1) infinite pulsing;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: 1.25s cubic-bezier(0.66, 0, 0, 1) infinite pulsing;
    -moz-animation: 1.25s cubic-bezier(0.66, 0, 0, 1) infinite pulsing;
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: 400;
    font-family: sans-serif;
    text-decoration: none !important;
}
.blog-grid4 .blog-img.global-img {
    min-width: 20rem;
    width: 20rem;
    height: 15rem;
}
.blog-grid4 .blog-img.global-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.term-card {
    transition: all 0.3s ease;
    transform: translateY(0);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
}
.term-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgb(243 209 209 / 0.12);
    background: #f8fbff;
    border-left: 5px solid var(--secondary-color);
}
.info-card {
    background: #fdf3e7;
    border-left: 5px solid #f80;
    padding: 20px;
}
.modern-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16.5px;
    line-height: 1.5;
    list-style: none;
}
.modern-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #1f3f72ff, #4065a0ff);
    border-radius: 50%;
    box-shadow: 0 0 8px rgb(0 89 255 / 0.3);
}
.img-text-section {
    padding: 40px 10px;
}
.img-text-section .img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 12px;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border: 1px solid rgb(101 113 255 / 0.15);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.05);
    transition: all 0.4s ease;
}
.img-text-section .img-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgb(101 113 255 / 0.15);
    border-color: rgb(101 113 255 / 0.3);
}
.img-text-section .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    max-height: 350px;
}
.img-text-section .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.img-text-section .img-container:hover .img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.img-text-section .img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgb(34 44 180 / 0.37),
        rgb(218 218 218 / 0.188)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}
.img-text-section .img-container:hover .img-wrapper::before {
    opacity: 1;
}
.img-text-section .content-wrapper {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img-text-section .content-wrapper p:last-child {
    margin-bottom: 0;
}
.img-text-section .content-wrapper {
    position: relative;
}
.img-text-section .content-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}
.img-text-section.alternate .content-wrapper::before {
    left: auto;
    right: 0;
}
.telangana-culture-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}
.telangana-culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(101 113 255 / 0.15);
    border-color: rgb(101 113 255 / 0.3);
}
.telangana-culture-card-img {
    position: relative;
    overflow: hidden;
    height: 15rem;
    border-bottom: 1px solid #f1f3f9;
}
.telangana-culture-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.telangana-culture-card:hover .telangana-culture-card-img img {
    transform: scale(1.05);
}
.telangana-culture-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(101 113 255 / 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.telangana-culture-card:hover .telangana-culture-card-img::after {
    opacity: 1;
}
.telangana-culture-card-body {
    padding: 15px;
    height: calc(100% - 200px);
}
.telangana-culture-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1em;
}
.telangana-culture-card-text {
    margin-bottom: 15px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 130px;
    padding-right: 10px;
}
.telangana-culture-card-text::-webkit-scrollbar {
    width: 4px;
}
.telangana-culture-card-text::-webkit-scrollbar-track {
    background: #f1f3f9;
    border-radius: 2px;
}
.telangana-culture-card-text::-webkit-scrollbar-thumb {
    background: #0c2041;
    border-radius: 2px;
}
.telangana-culture-card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #be832b;
    transition: width 0.4s ease;
}
.telangana-culture-card:hover .telangana-culture-card-border {
    width: 100%;
}
.places-visit-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}
.places-visit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgb(101 113 255 / 0.18);
    border-color: var(--secondary-color);
}
.places-visit-inner {
    display: flex;
    gap: 15px;
    padding: 15px;
}
.places-visit-img {
    position: relative;
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    height: 15rem;
}
.places-visit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.places-visit-card:hover .places-visit-img img {
    transform: scale(1.08);
    opacity: 0.85;
}
.places-visit-img::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgb(101 113 255 / 0.25),
        rgb(101 113 255 / 0.05)
    );
    transition: all 0.45s ease;
}
.places-visit-card:hover .places-visit-img::before {
    top: 0;
}
.places-visit-content {
    width: 55%;
    display: flex;
    flex-direction: column;
}
.places-visit-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.places-visit-text {
    flex-grow: 1;
    height: 13rem;
    overflow-y: auto;
    padding-right: 8px;
}
.places-visit-text::-webkit-scrollbar {
    width: 4px;
}
.places-visit-text::-webkit-scrollbar-thumb {
    background: #0c2041;
    border-radius: 2px;
}
.places-visit-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #be832b;
    transition: width 0.4s ease;
}
.places-visit-card:hover .places-visit-border {
    width: 100%;
}
.price-table-wrapper {
    width: 100%;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.08);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table thead {
    background-color: var(--primary-color);
}
.price-table thead th {
    color: #fff;
    padding: 7px;
    font-size: 16px;
    text-align: center;
}
.price-table tbody td {
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
}
.price-table tbody tr:last-child td {
    border-bottom: none;
}
.price-table tbody tr:hover {
    background-color: rgb(12 32 65 / 0.05);
}
.call-slider {
    position: fixed;
    top: 5%;
    right: -360px;
    width: 360px;
    height: auto;
    background: #fff;
    box-shadow: 18px 0 20px rgb(0 0 0 / 0.25);
    transition: right 0.45s ease;
    z-index: 9999;
}
.call-slider:hover {
    right: 0;
}
.call-tab {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: auto;
    padding:15px 0;
    background: var(--primary-color);
    color: #fff;
    border-radius: 18px 0 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}
.call-tab i {
    font-size: 22px;
    animation: phoneRing 1.3s infinite;
}
.call-tab span {
    writing-mode: vertical-rl;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}
.call-content {
    height: auto;
}
.tray-header {
    background: var(--primary-color);
    padding: 22px;
    color: #fff;
}
.tray-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.tray-body {
    padding: 26px;
    /*background:#f9f9f9;*/
}
.info-block {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid lightgrey;
}
.info-icon {
    width: 44px;
    height: 44px;
    background: rgb(0 0 0 / 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}
.info-text h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}
.info-text a {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
}
.info-text a:hover {
    text-decoration: underline;
}
.info-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.social-section {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}
.social-section h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(0 0 0 / 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}
@keyframes phoneRing {
    0% {
        transform: rotate(0);
    }
    5% {
        transform: rotate(15deg);
    }
    10% {
        transform: rotate(-15deg);
    }
    15% {
        transform: rotate(10deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    25% {
        transform: rotate(5deg);
    }
    30% {
        transform: rotate(-5deg);
    }
    35% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}
.portfolio-slider.style3 {
    position: relative;
    overflow: hidden;
}
.portfolio-slider.style3 .box-img {
    position: relative;
}
.portfolio-slider.style3 .icon-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}
.portfolio-slider.style3:hover .icon-btn {
    opacity: 1;
    visibility: visible;
}
.portfolio-slider.style3 .box-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.4);
    opacity: 0;
    transition: 0.3s;
}
.portfolio-slider.style3:hover .box-img::after {
    opacity: 1;
}
.ourServiceSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff0;
    border: 2px solid var(--primary-color);
    opacity: 1;
    transition: 0.25s ease;
}
.ourServiceSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.recommendedTourSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff0;
    border: 2px solid var(--primary-color);
    opacity: 1;
    transition: 0.25s ease;
}
.recommendedTourSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.space20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.space20top {
    padding-top: 20px;
}
.space20bottom {
    padding-bottom: 20px;
}
.category-card .box-img {
    height: 17rem;
}
.brand-box {
    border-radius: 15px;
    padding: 15px 10px;
    border: 1px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
}
.brand-box a {
    width: auto;
    max-width: 100%;
}
.brand-box img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.not-found-card {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 14px 30px rgb(0 0 0 / 0.08);
    transition: 0.35s ease;
}
.not-found-card img {
    width: 100px;
    height: auto;
    margin-bottom: 14px;
}
.not-found-card h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 700;
}
.not-found-card p {
    color: var(--body-color);
    opacity: 0.8;
    margin: 0;
}
.not-found-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgb(0 0 0 / 0.12);
}

.main-tour-img {
    height: 400px; /* adjust if needed */
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.main-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1600px) {
  .header-layout1 .logo-bg{
      width:15%;
  }
}
@media (min-width: 1850px) {
  .header-layout1 .logo-bg{
      width:18%;
  }
}
@media (min-width: 1400px) {
    .img-box3 .img2 {
        right: 5%;
    }
}
@media (max-width: 1200px) {
    .header-logo img {
        height: 56px;
    }
    .th-widget-contact {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .img-text-section .img-wrapper {
        min-height: 300px;
    }
    .img-text-section .content-wrapper {
        margin-top: 30px;
    }
    .img-text-section .content-wrapper::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        transform: none;
    }
    .img-text-section.alternate .content-wrapper::before {
        left: 0;
        right: auto;
    }
}
@media (max-width: 768px) {
    .blog-img.global-img {
        margin-left: auto;
        margin-right: auto;
    }
    .explore-container {
        padding: 50px 0px;
    }
    .explore-title {
        font-size: 2rem;
    }
    .explore-section-contacts {
        flex-direction: column;
    }
    .review-cards .review-card {
        min-width: 100%;
    }
    .img-text-section .img-wrapper {
        max-height: 350px;
    }
    .places-visit-inner {
        flex-direction: column;
    }
    .brand-box {
        height: 140px;
        width: 180px;
    }
    .places-visit-img,
    .places-visit-content {
        width: 100%;
    }
    .choose-item {
        display: block;
        text-align: center;
    }
    .choose-item .box-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }
    .choose-item .box-text {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .th-btn.sld-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    .th-btn.sld-btn:after {
        width: 20px;
        height: 20px;
    }
    .th-btn {
        padding: 12px 20px;
    }
}
