/**
 * Table of Contents
 * 1.0 - Global Component
 * 2.0 - Header - Footer
 * 3.0 - Homepage
   3.0.1 - Banner section
   3.0.2 - Package section
   3.0.3 - About section
   3.0.4 - Best Quality section
   3.0.5 - Popular section
   3.0.6 - Testimonial section
   3.0.7 - Offer section
   3.0.8 - News section
 * 9.0 - Media Query
*/

/**
* 1.0 Global Css
*/

@font-face {
    font-family: 'Oleo Script';
    src: url('../font/OleoScript-Bold.woff2') format('woff2'),
        url('../font/OleoScript-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Spectral';
    src: url('../font/Spectral-Regular.woff2') format('woff2'),
        url('../font/Spectral-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('../font/Spectral-Medium.woff2') format('woff2'),
        url('../font/Spectral-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('../font/Spectral-SemiBold.woff2') format('woff2'),
        url('../font/Spectral-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spectral';
    src: url('../font/Spectral-Bold.woff2') format('woff2'),
        url('../font/Spectral-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Global css start here */
:root {
    --body-font: 'Spectral';
    --title-font: 'Spectral';
    --content-font: 'Spectral';
    --meta-font: 'Spectral';
    --primary:#00ABE6;
    --secondary: #2A3950;
    --title-color:#2A3950;
    --meta-color:#2A3950;
    --border-color: #2A3950;
    --content-color: #2A3950;
    --button-color: #3D246C;
    --white-color: #ffffff;
    --black-color: #000000;
    --footer-color: #180045;
    --footer-copyright-color: #180045;
}

*, *::after, *::before {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
}
html {
    font-family: var(--body-font);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--body-font);
    color: var(--content-color);
    background: var(--white-color);
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
input, optgroup, select, textarea {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--content-color);
    outline: none;
    box-shadow: none;
    width: 100%;
    margin-bottom: 10px;
}
::-webkit-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
:-ms-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::-ms-input-placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
::placeholder {
    font-family: var(--body-font);
    color: var(--content-color);
    opacity: 0.75;
    font-size: 16px;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, footer .copyright-footer .copyright p a, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, em, strong, button, blockquote, small, strike, sub, sup, tt, time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    font-family: var(--body-font);
    color: var(--content-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 0;
    background-color: transparent;
    text-decoration: none;
    transition: all .3s;
}
a:hover, a:focus, a:active {
    text-decoration: none;
    outline: 0 none;
    color: var(--content-color);
}
b {
    font-weight: bolder;
}
img {
	max-width: 100%;
}
strong {
    font-weight: bolder;
}
.container {
	max-width: 1320px;
}
.section-wrapper {
    position: relative;
	padding: 100px 0;
    overflow: hidden;
}
h1 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 64px;
    line-height: 88px;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 15px 0;
}
h2 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 54px;
    line-height: 82px;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 15px 0;
}
h3 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 44px;
    line-height: 66px;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 15px 0;
}
h4 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 38px;
    line-height: 58px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h5 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 26px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 15px 0;
}
p {
    font-family: var(--body-font);
    color: var(--content-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
}
/* Section Title */
.section-title {
    margin-bottom: 48px;
    text-align: center;
}
.section-title h2 {
    margin:  0 0 8px 0;
}
.section-title p {
    margin: 0;
}
.theme-button {
    display: inline-block;
}
.theme-button .btn {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: var(--white-color);
    padding: 8px 32px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    text-shadow: none;
    transition: all .3s;
}
.theme-button .btn:hover {
    color: var(--white-color);
    background: var(--primary);   
}
#button-scroll-top {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}
#button-scroll-top.show {
    opacity: 1;
    visibility: visible;
}
#button-scroll-top:after {
    display: block;
    content: "";
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    height: 12px;
    width: 12px;
    transform: rotate(225deg);
    margin: 14px auto;
}
/* Global css start end */

/**
* 2.0 Header - Footer - Breadcrumb
*/

/* Header */
header {
    background: #2A3950;
    padding: 30px;
}
header .navbar {
    padding: 0;
}
header .container {
    max-width: 100%;
    padding: 0;
}
header .container .row {
    width: 100%;
    margin: 0;
}
header .container .row .col-12 {
    padding: 0;
}
header .header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
header .header-wrapper .logo {
    flex: auto;
    max-width: 200px;
}
header .header-wrapper .logo a {
    display: inline-block;
}
header .header-wrapper .logo a img {
    display: block;
}
header .header-wrapper .menu {
    flex: 0 0 calc(100% - 590px);
}
header .header-wrapper .menu ul {
    padding: 0;
    margin: 0;
}
header .header-wrapper .menu ul li {
    margin: 0 20px;
}
header .header-wrapper .menu ul li a.nav-link {
    font-size: 26px;
    color: #7E7E7E;
    padding: 0;
}
header .header-wrapper .menu ul li.active a.nav-link {
    color: var(--primary);
}
header .header-wrapper .menu ul li a.nav-link:hover,
header .header-wrapper .menu ul li a.nav-link:focus {
    color: var(--primary);
}
header .header-wrapper .menu-button {
    flex: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    max-width: 360px;
}
header .header-wrapper .menu-button .call-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
header .header-wrapper .menu-button .call-btn .icon img {
    width: 45px;
}
header .header-wrapper .menu-button .call-btn .call p {
    color: #ffffff;
    margin: 0;
}
header .header-wrapper .menu-button .call-btn .call a {
    color: #ffffff;
}
header .header-wrapper .menu-button .call-btn .call a:hover,
header .header-wrapper .menu-button .call-btn .call a:focus {
    color: var(--primary);
}
/* Footer */
.footer .footer-top {
    background: #2A3950;
    padding: 48px 0;
}
.footer .footer-top .footer-title h4 {
    color: var(--primary);
    text-align: left;
    margin: 0 0 32px 0;
}
.footer .footer-top ul {
    padding: 0;
    margin: 0;
}
.footer .footer-top ul li {
    margin: 0 0 24px 0;
}
.footer .footer-top ul li:last-of-type {
    margin: 0;
}
.footer .footer-top ul li a {
    font-family: var(--title-font);
    color: var(--white-color);
    font-size: 26px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
}
.footer .footer-top ul li a:hover {
    color: var(--primary);
}
.footer .footer-top .footer-info ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.footer .footer-top .footer-info ul li .icon {
    flex: 0 0 40px;
}
.footer .footer-top .footer-info ul li .icon img {
    display: flex;
}
.footer .footer-top .footer-info ul li .content p {
    font-family: var(--title-font);
    color: var(--white-color);
    font-size: 26px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    margin: 0;
}
.footer .footer-top .footer-book p {
    font-family: var(--title-font);
    color:#7E7E7E;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin: 0 0 24px 0;
}
.footer .footer-top .footer-book .theme-button .btn {
    border: 1px solid #ffffff;
    background: transparent;
}
.footer .footer-top .footer-book .theme-button .btn:hover,
.footer .footer-top .footer-book .theme-button .btn:focus {
    background: var(--primary);
}
.footer .copyright {
    border-top: 1px solid #969696;
    padding: 16px 0;
    background: #2a3950;
}
.footer .copyright .row {
    align-items: center;
}
.footer .copyright .footer-logo {
    display: inline-block;
}
.footer .copyright .footer-logo a {
    display: block;
}
.footer .copyright .footer-logo a img {
    display: block;
}
.footer .copyright .reserved p {
    color: #7E7E7E;
    margin: 0;
    text-align: right;
}


/**
* 3.0 Homepage
*/

/**
* 3.0.1  Banner section
*/

.banner {
    background: url('../image/banner-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
}
.banner .banner-content h1 {
    font-family: 'Oleo Script';
    margin-bottom: 32px;
}
.banner .banner-content p {
    margin: 0;
}
.banner .banner-image {
    display: none;
}
.banner .banner-desk-image {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: contain;    
    object-position: right;
}

/**
* 3.0.2  Package section
*/

.package .section-title {
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}
.package .item {
    transition: max-height 1s;
    overflow: hidden;
}
.package .item.hoverheight {
    transition: max-height 1s;
}
.package .item .package-content {
    background: #2A3950;
    padding: 16px;
    height: 0;
    padding: 0;
    transition: max-height 1s;
}
.package .item .package-content h5 {
    color: #ffffff;
    margin: 0 0 15px 0;
}
.package .item .package-content p {
    color: #7E7E7E;
    margin: 0;
}
.package .item .package-image {
    position: relative;
    text-align: center;
    cursor: pointer;
    height: 110px;
    transition: max-height 1s;
}
.package .item .package-image img {
    display: block;
    width: 100%;
    object-position: bottom;
    height: 100%;
    object-fit: cover;
    transition: max-height 1s;
}
.package .item .package-image .city {
    position: absolute;
    width: auto;
    top: auto;
    bottom: 10px;
    left: 10px;
    right: auto;
    opacity: 1;
    z-index: 11;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.package .item .package-image .city .city-icon {
    max-width: 30px;
}
.package .item .package-image .city .city-name {
    display: inline-block;
    width: auto;
}
.package .item .package-image .city .city-name h6 {
    margin: 0 0 5px 0;
    color: #ffffff;
}
.package .item .package-image .city .city-name p {
    color: #7e7e7e;
    margin: 0;
}
.package .viewmore {
    position: relative;
}
.package .viewmore .theme-button {
    width: 100%;
}
.package .viewmore .theme-button a {
    color: var(--primary);
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0px 3px 10px 0px #0000001F;
    text-align: center;
}
.package .viewmore .theme-button a img {
    margin-left: 15px;
    transition: 0.1s ease-in;
}
.package .viewmore .theme-button a:hover img {
    transform: translateX(10px);
    transition: 0.1s ease-in;
}
.package .item.hoverheight .position-bottom .package-content {
    height: auto;
    padding: 16px;
    transition: max-height 1s;
}
.package .item.hoverheight .position-bottom .package-image {
    height: auto;
    transition: max-height 1s;
}
.package .item.hoverheight .position-bottom .package-image img {
    height: auto;
    transition: max-height 1s;
}

/**
* 3.0.3  About section
*/

.about {
    background: #2A3950;
}
.about .section-title {
    text-align: left;
    margin: 0 0 30px 0;
}
.about .section-title h2 {
    color: #ffffff;
    margin: 0 0 30px 0;
}
.about .section-title p {
    margin: 0 0 30px 0;
    color: #ffffff;
}
.about .about-form form {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.about .about-form form fieldset label {
    color: #00ABE6;
    font-size: 26px;
    margin: 0 0 15px 0;
}
.about .about-form form fieldset input,
.about .about-form form fieldset select {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    padding: 8px;
    margin: 0;
    color: #7E7E7E;
    text-transform: capitalize;
}
.about .about-form form fieldset input[type="date"] {
    text-transform: uppercase;
}
.about .about-form form fieldset input::placeholder,
.about .about-form form fieldset select::placeholder {
    color: #7E7E7E;
}
.about .about-form form fieldset input[type="date" i]::-webkit-calendar-picker-indicator {
    background-image: url('../image/ic-calendar.svg');
    background-origin: content-box;
    background-repeat: no-repeat;
    background-size: cover;
    block-size: 1em;
    inline-size: 1em;
    opacity: 1;
    outline: none;
    padding: 2px;
}
.about .about-form form fieldset {
    flex: 0 0 calc(33.3333% - 20px);
}
.about .about-form form .button {
    flex: 0 0 100%;
}

.about .about-image {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about .about-image img {
    display: block;
    width: 100%;
}
.about .about-image .customer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.about .about-image .customer .happy {
    display: inline-block;
    background: #00ABE6;
    padding: 16px;
}
.about .about-image .customer h2 {
    color: #ffffff;
    margin: 0;
}
.about .about-image .customer p {
    color: #ffffff;
    margin: 0;
}

/**
* 3.0.4  Best Quality section
*/

.quality .container {
    background: url('../image/quality-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 120px;
    position: relative;
    border-radius: 50px;
}
.quality .section-title h2,
.quality .section-title p {
    color: #ffffff;
}
.quality .counter {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.quality .counter .item {
    flex: 0 0 25%;
    padding: 0 15px;
    text-align: center;
    border-right: 1px solid #7E7E7E;
}
.quality .counter .item:last-of-type {
    border-right: none;
}
.quality .counter .item h3 {
    color: #ffffff;
}
.quality .counter .item h3 span {
    position: relative;
}
.quality .counter .item p {
    color: #ffffff;
    margin: 0;
}

/**
* 3.0.5  Popular section
*/

.popular {
    background: #2A3950;
    padding-bottom: 70px;
}
.popular .item {
    margin-bottom: 30px;
}
.popular .section-title h2,
.popular .section-title p {
    color: #ffffff;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}
.popular .popular-image {
    position: relative;
    text-align: center;
    cursor: pointer;
}
.popular .popular-image:after {
    display: block;
    content: '';
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.popular .popular-image:hover:after {
    opacity: 1;
}
.popular .popular-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popular .popular-image .destination {
    position: absolute;
    width: auto;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    opacity: 0;
    z-index: 11;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.popular .popular-image:hover .destination {
    opacity: 1;
}
.popular .popular-image .destination .viewmore {
    display: inline-block;
    width: auto;
}
.popular .popular-image .destination .viewmore .theme-button .btn {
    background: #ffffff;
    color: #2A3950;
    padding: 16px;
    display: flex;
    align-items: center;
}
.popular .popular-image .destination .viewmore .theme-button .btn span {
    color: var(--primary);
    margin: 0 10px;
}
.popular .popular-image .destination .viewmore .theme-button .btn img {
    width: auto;
}

/**
* 3.0.6  Testimonial section
*/

.testimonial .testimonial-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
.testimonial .item {
    padding-left: 15px;
    padding-right: 15px;
}
.testimonial .item .item-box {
    border: 2px solid #2A3950;
    border-radius: 30px;
    padding: 60px 30px;
    margin-top: 80px;
    position: relative;
}
.testimonial .item .author {
    position: absolute;
    top: -80px;
    left: auto;
    right: 40px;
}
.testimonial .item .qoute img {
    max-width: 40px;
}
.testimonial .item .desc p {
    color: #7E7E7E;
}
.testimonial .item .name h5 {
    color: #2A3950;
}
.testimonial .item .rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.testimonial .item .rating h6 {
    color: #2A3950;
    margin: 0;
}
.testimonial .item .rating img {
    max-width: 130px;
}

/**
* 3.0.7  Offer section
*/

.offer {
    background: #2A3950;
}
.offer .offer-image {
    position: relative;
    text-align: center;
    cursor: pointer;
}
.offer .offer-image:after {
    display: block;
    content: '';
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.offer .offer-image:hover:after {
    opacity: 1;
}
.offer .offer-image img {
    display: block;
    width: 100%;
}
.offer .offer-image .sale {
    position: absolute;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 11;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.offer .offer-image:hover .sale {
    top: 50%;
    left: 50%;
    opacity: 1;
}
.offer .offer-image .sale .discount {
    display: inline-block;
    width: auto;
}
.offer .offer-image .sale h3 {
    color: #ffffff;
}
.offer .offer-content {
    padding: 48px 0;
}
.offer .offer-content h3 {
    color: #ffffff;
}
.offer .offer-content p {
    color: #7E7E7E;
    text-align: left;
    margin: 0;
}

/**
* 3.0.8  News section
*/

.news .item .post-image {
    position: relative;
    text-align: center;
}
.news .item .post-image img {
    display: block;
    width: 100%;
}
.news .item .post-image .category {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
.news .item .post-image .category .tag {
    font-family: var(--title-font);
    color:#ffffff;
    font-size: 38px;
    font-weight: 600;
    line-height: 58px;
    background: #2A3950;
    border-radius: 10px;
    padding: 8px 32px;
    text-align: center;
    display: inline-block;
}
.news .item .post-image .category .tag:hover,
.news .item .post-image .category .tag:focus {
    background: var(--primary);
}
.news .item .post-content {
    padding: 32px;
}
.news .item .post-content h5 a {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 32px;
    line-height: 48px;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 15px 0;
}
.news .item .post-content h5 a:hover,
.news .item .post-content h5 a:focus {
    color: var(--primary);
}
.news .item .post-content .author {
    margin: 0 0 15px 0;
}
.news .item .post-content .author span {
    font-family: var(--body-font);
    color: #7E7E7E;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding: 0;
    display: inline-block;
}
.news .item .post-content .author span:first-of-type {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #7E7E7E;
}
.news .item .post-content p {
    margin: 0;
}
#button-scroll-top {
    display: inline-block;
    background: var(--primary);
    border: 1px solid var(--primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}
#button-scroll-top:after {
    display: block;
    content: "";
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    height: 12px;
    width: 12px;
    transform: rotate(225deg);
    margin: 14px auto;
}
#button-scroll-top.show {
    opacity: 1;
    visibility: visible;
}
/* 
12.0 Media Query
*/

@media screen and (min-width: 1200px) {
    header {
        padding: 15px 20px;
    }
    header .header-wrapper .menu ul li {
        margin: 0 15px;
    }
    header .header-wrapper .menu ul li a.nav-link {
        font-size: 22px;
    }
    header .header-wrapper .menu-button {
        gap: 20px;
    }
    .footer .footer-top .container .row {
        flex-wrap: nowrap;
        gap: 96px;
    }
    .footer .footer-top .container .row .col-lg-4 {
        width: calc(33.33333333% - 64px);
    }
}
@media screen and (min-width: 1600px) {
    header {
        padding: 30px;
    }
    header .header-wrapper .menu {
        padding-left: 60px;
    }
    header .header-wrapper .menu ul li {
        margin: 0 20px;
    }
    header .header-wrapper .menu ul li a.nav-link {
        font-size: 26px;
    }
    header .header-wrapper .menu-button {
        gap: 30px;
    }
    .banner {
        padding: 250px 0;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .section-wrapper {
        padding: 80px 0;
    }
    h1 {
        font-size: 48px;
        line-height: 64px; 
    }
    h2 {
        font-size: 42px;
        line-height: 56px; 
    }
    h3 {
        font-size: 32px;
        line-height: 46px;
    }
    h4 {
        font-size: 30px;
        line-height: 38px;
    }
    h5 {
        font-size: 26px;
        line-height: 34px;
    }
    h6 {
        font-size: 24px;
        line-height: 32px;
    }
    header {
        padding: 15px 20px;
    }
    header .header-wrapper .logo {
        max-width: 140px;
    }
    header .header-wrapper .menu ul li {
        margin: 0 10px;
    }
    header .header-wrapper .menu ul li a.nav-link {
        font-size: 20px;
    }
    header .header-wrapper .menu-button {
        gap: 20px;
    }
    header .header-wrapper .logo {
        max-width: 140px;
    }
    header .header-wrapper .menu {
        flex: 0 0 calc(100% - 520px);
    }
    header .header-wrapper .menu-button .theme-button .btn {
        font-size: 16px;
        padding: 8px 15px;
    }
    header .header-wrapper .menu-button .call-btn .icon img {
        width: 35px;
    }
    header .header-wrapper .menu-button .call-btn .call p,
    header .header-wrapper .menu-button .call-btn .call a {
        font-size: 18px;
    }


    .quality .container {
        padding: 80px 20px;
    }  
    .testimonial .item .item-box {
        padding: 20px;
        border-radius: 20px;
        padding-top: 60px;
    }
    .news .item .post-image .category .tag {
        font-size: 28px;
        line-height: 42px;
    }
}
@media screen and (max-width: 991px) {
    h1 {
        font-size: 44px;
        line-height: 52px; 
    }
    h2 {
        font-size: 40px;
        line-height: 54px;
    }
    h3 {
        font-size: 30px;
        line-height: 44px;
    }
    h4 {
        font-size: 24px;
        line-height: 32px;
    }
    h5 {
        font-size: 22px;
        line-height: 30px;
    }
    h6 {
        font-size: 20px;
        line-height: 28px;
    }
    .section-title {
        margin-bottom: 24px;
    }
    .banner {
        display: flex;
        flex-direction: column-reverse;
    }
    .banner .banner-desk-image {
        margin-bottom: 30px;
        width: 100%;
        position: relative;
        max-width: 70%;
        margin-left: auto;
    }
    .about .about-form form fieldset label {
        font-size: 22px;
    }
    .quality .container {
        border-radius: 30px;
        padding: 60px 15px;
    }    
    .testimonial .item .item-box {
        padding: 20px;
        border-radius: 20px;
        padding-top: 60px;
    }
    .testimonial .item .author {
        right: 20px;
    }
    .package .viewmore {
        margin-bottom: 30px;
    }
    .news .center .item {
        display: flex;
        flex-direction: column-reverse;
    }
    .news .item .post-content {
        padding: 20px 15px;
    }
    .news .item .post-content .author span:first-of-type {
        padding-right: 15px;
        margin-right: 15px;
    }
    .news .item .post-image .category .tag {
        font-size: 28px;
        border-radius: 5px;
        line-height: 42px;
    }
    .news .item .post-content h5 a {
        font-size: 26px;
        line-height: 38px;
    }
    .footer .footer-top {
        padding: 40px 0;
    }
    .footer .footer-top .footer-info ul li .icon {
        flex: 0 0 30px;
    }
    .footer .footer-top ul li a,
    .footer .footer-top .footer-info ul li .content p,
    .footer .footer-top .footer-book p {
        font-size: 18px;
        line-height: 26px;
    }
    header {
        padding: 15px 15px;
    }
    header .header-wrapper {
        gap: 10px;
    }
    header .header-wrapper .logo {
        order: 1;
        max-width: 100%;
        flex: 1 0 auto;
    }
    header .header-wrapper .logo a {
        display: block;
    }
    header .header-wrapper .logo a img {
        max-width: 140px;
        max-height: 48px;
    }
    header .header-wrapper .menu {
        order: 3;
        text-align: right;
        flex: none;
    }
    header .header-wrapper .menu ul {
        padding: 10px 0;
    }
    header .menu .header-menu {
        position: absolute;
        top: 63px;
        left: -15px;
        width: calc(100% + 30px);
        background: #ffffff;
    }
    header .header-wrapper .menu ul li a.nav-link {
        font-size: 20px;
        color: #7E7E7E;
        padding: 8px 0;
        text-align: left;
    }
    header .menu .navbar-toggler {
        padding: 0;
        border: none;
        box-shadow: none;
        outline: none;
        font-size: 0;
        line-height: 0;
    }
    header .menu .navbar-toggler img {
        width: 30px;
        height: 30px;
    }
    header .header-wrapper .menu-button {
        order: 2;
        gap: 0;
        justify-content: flex-end;
    }
    header .header-wrapper .menu-button .call-btn .icon img {
        width: 30px;
    }
    header .header-wrapper .menu-button .theme-button,
    header .header-wrapper .menu-button .call-btn .call {
        display: none;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .section-wrapper {
        padding: 60px 0;
    }
    header .header-wrapper {
        gap: 15px;
    }
    header .menu .header-menu {
        top: 73px;
    }
    header .header-wrapper .menu-button {
        gap: 10px;
    }
    header .header-wrapper .menu-button .theme-button,
    header .header-wrapper .menu-button .call-btn .call {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 36px;
        line-height: 42px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h4 {
        font-size: 28px;
        line-height: 36px;
    }
    h5 {
        font-size: 24px;
        line-height: 32px;
    }
    h6 {
        font-size: 22px;
        line-height: 30px;
    }
    p {
        font-size: 16px;
        line-height: 24px;
    }
    .section-wrapper {
        padding: 40px 0;
    }
    .theme-button .btn {
        font-size: 16px;
        line-height: 24px;
    }
    .about .about-image {
        margin-bottom: 30px;
    }
    .about .about-form form fieldset label {
        font-size: 20px;
    }
    .quality .container {
        border-radius: 20px;
        padding: 60px 15px 30px 15px;
    }
    .quality .counter .item {
        flex: 0 0 50%;
        margin: 0 0 30px 0;
    }
    .quality .counter .item:nth-child(2) {
        border-right: 0;
    }
    .popular .item {
        margin-bottom: 20px;
    }
    .popular .popular-image .destination .viewmore .theme-button .btn {
        padding: 12px;
    }
    .offer .offer-content {
        padding: 20px 0;
    }
    .offer .first-offer {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }
    .offer .last-offer .offer-content {
        padding-bottom: 0;
    }
    .news .item .post-image .category .tag {
        font-size: 24px;
        line-height: 36px;
    }
    .news .item .post-content h5 a {
        font-size: 24px;
        line-height: 32px;
    }
    .news .item .post-content .author span {
        font-size: 16px;
        line-height: 24px;
    }
    .footer .copyright .reserved p {
        text-align: center;
    }
    .footer .copyright .footer-logo {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    .footer .copyright .footer-logo a {
        display: inline-block;
    }
    .footer .footer-top .footer-info {
        margin: 40px 0;
    }
}
@media screen and (max-width: 575px) {
    .about .about-form form fieldset {
        flex: 0 0 100%;
    }
    .quality .container {
        padding: 40px 15px 10px 15px;
    }
    .quality .counter .item {
        flex: 0 0 100%;
        padding: 0 15px 30px 15px;
        border: none;
        border-bottom: 1px solid #7E7E7E;
    }
    .quality .counter .item:last-of-type {
        margin: 0;
        border: none;
    }
}