@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
:root {
    --white: #ffffff;
    --black: #505051;
    --red: #EE3825;
    --dark_red: #FF2E00;
    --blue: #5E8BC8;
    --brown: #3c3434;
    --gray: #6c757d;
    --orange: #fd7e14;
    --off_white: #ECECEC;
}
.modal .modal-header i {
    cursor: pointer;
    background-color: gainsboro;
    padding: 10px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.modal .modal-header i:hover {
    transition: all 0.3s;
    background-color: rgb(214, 214, 214);
}
.video-container {
    position: relative;
}
.video-container .video-content {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
}
.video-container .overlay .navbar {
    margin-bottom: 40px;
}
.video-container .overlay .navbar, .video-container .overlay .city-name-div, .video-container .overlay .city-description-div {
    width: 95%;
}
.video-container .overlay .navbar .nav-item {
    margin: 0 15px;
}
.video-container .overlay .navbar .nav-item.book-btn {
    position: absolute;
    right: 10%;
    top: -30%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red);
}
.video-container .overlay .navbar .nav-item.book-btn .btn {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.5s;
}
.video-container .overlay .navbar .nav-item.book-btn .btn:hover {
    background-color: var(--blue);
    transition: all 0.5s;
}
.video-container .overlay .navbar .nav-item .nav-link {
    color: var(--white);
    padding: 0;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 3px solid transparent;
}
.video-container .overlay .navbar .nav-item .nav-link.active {
    border-bottom: 3px solid var(--white);
}
.video-container .overlay .navbar .info.mobile {
    display: none;
}
.video-container .overlay .logo {
    width: 210px;
    height: 210px;
}
.video-container .overlay .city-name-div {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5%;
}
.video-container .overlay .city-name-div .city-name {
    font-size: 75px;
    font-weight: 600;
    line-height: 85px;
    text-align: left;
    letter-spacing: 7px;
    margin-bottom: 5px;
}
.video-container .overlay .city-name-div .timings {
    font-size: 25px;
    font-weight: 600;
    text-align: left;
}
.video-container .overlay .city-description-div {
    text-align: left;
    font-size: 20px;
    line-height: 35px;
}
.video-container .overlay .city-description-div .follow-us {
    font-size: 18px;
    letter-spacing: 0.8px;
}
.video-container .overlay .city-description-div .social a {
    margin-right: 10px;
}
.video-container .overlay .city-description-div .social i {
    font-size: 25px;
    color: var(--white);
}
.video-container .overlay .city-description-div .play-btn {
    width: 100px;
    height: 100px;
    background: radial-gradient(#ff2e00 60%, rgba(255, 255, 255, 1) 62%);
    border-radius: 50%;
    position: relative;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 0 25px 3px #ff2e00;
}
.video-container .overlay .city-description-div .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.video-container .overlay .city-description-div .play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.75);
    top: -25%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}
@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0 0 25px 3px rgba(255, 255, 255, 0.75), 0 0 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}
@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0 0 25px 3px rgba(255, 255, 255, 0.75), 0 0 25px 10px rgba(255, 255, 255, 0.75);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}
.video-container .overlay .feature-div {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    background-color: var(--dark_red);
    padding: 30px;
    color: var(--white);
}
.feature-div-mobile {
    text-align: left;
    background-color: var(--dark_red);
    padding: 15px 45px;
    color: var(--white);
    display: none;
}

#playModal .modal-body {
    padding: 0;
}
#playModal .modal-body .modal-video-content {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about {
    margin-top: 2%;
    font-size: 19px;
    font-weight: 500;
}
.about .about-image {
    object-fit: cover;
    height: 500px;
    width: 100%;
}
.about .swiper-button-next:after, .about .swiper-button-prev:after {
    font-size: 20px;
    color: white;
    background-color: red;
    padding: 10px 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}


.booking {
    margin-top: 2%;
}
.booking .right {
    padding: 0 40px;
}
.booking .form-title {
    font-size: 40px;
    color: var(--red);
    font-weight: 700;
}
.booking .weather {
    padding-right: 40px;
}
.booking .weather iframe {
    height: 570px;
}
/* .booking .inner-weather {
    background-image: url('/storage/weather.png');
    padding: 25px;
}
.booking .weather .current-weather {
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking .weather .current-weather .main-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}
.booking .weather .current-weather .info {
    margin-top: 4%;
    margin-bottom: 7%;
}
.booking .weather .current-weather .icon img {
    height: 60px;
    width: 100px;
    object-fit: cover;
}
.booking .weather .daily-forecast .card {
    color: #fff;
    padding: 10px 16px;
    border-radius: 0;
    background: #fafafa3e;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
} */
.booking .form-description {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 30px;
    text-align: justify;
}
.booking form .title {
    font-weight: 500;
    margin-bottom: 10px;
    text-decoration: underline;
}
.booking form .number-passes input {
    width: 10%;
    text-align: center;
    display: inline-block;
}
.booking form .pass-price .price {
    font-weight: 600;
    color: brown;
}
.booking form .form-label {
    font-size: 15px;
    margin-bottom: 5px;
}
.booking form .asterisk {
    color: red;
}
.booking form .coupon-error {
    color: red;
    font-size: 14px;
    font-weight: 600;
}
.booking .group-pass-msg {
    font-style: italic;
}
.booking form .form-control {
    border: 1px solid #ced4da!important;
    font-size: 15px;
    border-radius: 0;
    letter-spacing: 0.5px;
}
.booking form .buy-now {
    display: flex;
    margin: 30px auto auto;
    justify-content: center;
    border-radius: 0;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s;
}
.booking form .buy-now:hover {
    background: var(--dark_red);
    transition: all 0.2s;
}

.payment-success-status-modal .modal-title {
    color: var(--red);
    font-weight: 700;
    font-size: 25px;
}
.payment-success-status-modal .status-msg {
    color: green;
    font-size: 19px;
    font-weight: 900;
    /* margin-bottom: 15px; */
}
.payment-success-status-modal .receipt .title {
    text-decoration: underline;
}
.payment-success-status-modal .download-btn {
    display: flex;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    width: 600px;
    transition: all 0.3s;
    margin: 10px 0px;
}
.payment-success-status-modal .download-btn:hover {
    background: var(--dark_red);
    transition: all 0.2s;
}
.payment-error-status-modal .status-msg {
    color: red;
    font-size: 19px;
    font-weight: 900;
}

.map {
    margin-top: 2%;
}
.map iframe {
    width: 100%;
    height: 600px;
    max-width: 100%;
}

.faq {
    margin-top: 2%;
}
.faq .top {
    margin-bottom: 25px;
}
.faq .top .title {
    font-size: 40px;
    color: var(--red);
    text-align: center;
    font-weight: 700;
}
.faq .bottom .title {
    color: #5E8BC8;
    font-size: 25px;
    font-weight: 600;
}
.accordion-flush .accordion-item {
    border: none!important;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s;
}
.accordion-flush .accordion-item .accordion-button:hover, .accordion-flush .accordion-item .accordion-button.collapsed:hover {
    background-color: var(--dark_red);
    color: var(--white);
    transition: all 0.5s;
}
.accordion-button:not(.collapsed) {
    color: var(--white)!important;
    background-color: var(--dark_red)!important;
    box-shadow: none!important;
}


.instagram {
    margin-top: 2%;
}


.footer {
    margin-top: 1%;
    background-color: #333333;
    color: var(--white);
    padding: 3% 15%;
}
.footer .row {
    justify-content: space-between;
}
.footer .column-1 {
    width: 20%;
}
.footer .column-2 {
    width: 28%;
}
.footer .column-3 {
    width: 25%;
    padding-top: 5%;
}
.footer .column-2, .footer .column-4 {
    padding-top: 2%;
}
.footer .column-4 {
    width: 16%;
}
.footer .column-1 .footer-logo {
    height: 150px;
    margin-bottom: 10%;
}
.footer .column-1 .social a {
    margin-right: 25px;
}
.footer .column-1 .social i {
    font-size: 25px;
    color: var(--white);
}
.footer .column-2 p, .footer .column-3 p {
    display: flex;
    align-items: baseline;
    font-size: 15px;
    margin-bottom: 15px;
}
.footer .column-3 p {
    flex-direction: column;
}
.footer .column-3 p a {
    color: var(--white);
    padding-left: 7%;
}
.footer .column-3 p a:hover {
    text-decoration: underline;
}
.footer .column-2 p i, .footer .column-3 p i {
    margin-right: 6px;
}
.footer .column-3 p i {
    color: #FFE400;
}
.footer .column-2 .title, .footer .column-4 .title {
    color: #FFE400;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.footer .column-4 .link {
    display: table;
    color: var(--white);
    font-size: 16px;
    margin-top: 10px;
}
.footer .column-4 .link:hover {
    text-decoration: underline;
}
.copyright-div {
    background-color: black;
    color: var(--white);
    padding: 20px;
    text-align: center;
}



/* Responsive */
@media screen and (max-width: 1920px) {
    .video-container .overlay .navbar {
        margin-bottom: 60px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 1900px) {
}

@media screen and (max-width: 1850px) {
}

@media screen and (max-width: 1800px) {
    .about {
        font-size: 18px;
    }
    .about .about-image {
        height: 470px;
    }
}

@media screen and (max-width: 1750px) {
}

@media screen and (max-width: 1750px) and (max-height: 875px) {
    .video-container .overlay .navbar {
        margin-bottom: 10px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 4%;
    }

    .about .about-image {
        height: 480px;
    }
}

@media screen and (max-width: 1680px) {
    .about .about-image {
        height: 510px;
    }
}

@media screen and (max-width: 1600px) {
    .video-container .overlay .navbar {
        margin-bottom: 30px;
    }
    .video-container .overlay .navbar .nav-item.book-btn {
        right: 5%;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 3%;
    }

    .about .about-image {
        height: 500px;
    }
    .about {
        font-size: 17px;
    }
}

@media screen and (max-width: 1536px) {
    .video-container .overlay .navbar {
        margin-bottom: 15px;
    }
    .video-container .overlay .logo {
        width: 175px;
        height: 175px;
    }
    .video-container .overlay .navbar .nav-item.book-btn .btn {
        font-size: 15px;
        padding: 8px 15px;
    }
    .video-container .overlay .navbar .nav-item .nav-link {
        font-size: 15px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 2%;
    }
    .video-container .overlay .city-name-div .city-name {
        font-size: 60px;
        line-height: 75px;
        margin-bottom: 0px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 20px;
    }
    .video-container .overlay .city-description-div {
        font-size: 17px;
        line-height: 30px;
    }
    .video-container .overlay .city-description-div .play-btn {
        width: 85px;
        height: 85px;
    }

    
    .about {
        font-size: 16px;
    }
    .about .about-image {
        height: 440px;
    }

    .booking .form-title {
        font-size: 30px;
    }

    .map iframe {
        height: 500px;
    }

    .faq .top .title {
        font-size: 30px;
    }
    .faq .bottom .title {
        font-size: 20px;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        font-size: 14px;
    }
    .accordion-body {
        font-size: 14px;
    }

    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 16px;
        margin-bottom: 11px;
    }
    .footer .column-4 .link {
        font-size: 14px;
        margin-top: 5px;
    }
    .footer .column-3 p a {
        padding-left: 8%;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 14px;
    }

    .copyright-div .copyright {
        font-size: 13px;
    }
}

/* Height: 900 */
@media screen and (max-width: 1440px) {
    .video-container .overlay .navbar {
        margin-bottom: 45px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 6%;
    }

    .about .about-image {
        height: 450px;
    }

    .footer {
        padding: 3% 8%;
    }
}

/* Height: 768 */
@media screen and (max-width: 1366px) {
    .video-container .overlay .navbar {
        margin-bottom: 15px;
    }
    .video-container .overlay .logo {
        width: 150px;
        height: 150px;
    }
    .video-container .overlay .navbar .nav-item.book-btn {
        top: -22%;
    }
    .video-container .overlay .navbar .nav-item.book-btn .btn {
        font-size: 13px;
        padding: 5px 10px;
    }
    .video-container .overlay .navbar .nav-item .nav-link {
        font-size: 13px;
    }
    .video-container .overlay .navbar .info .date {
        font-size: 15px;
    }
    .video-container .overlay .navbar .info .temp {
        font-size: 25px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 3%;
    }

    .about {
        font-size: 15px;
    }
    .about .about-image {
        height: 440px;
    }
    .about .swiper-button-next:after, .about .swiper-button-prev:after {
        font-size: 15px;
    }

    /* .booking .weather .current-weather .main-title {
        font-size: 20px;
        line-height: 28px;
    }
    .booking .weather .current-weather .icon img {
        height: 50px;
        width: 80px;
    }
    .booking .weather .current-weather .info, .booking .weather .current-weather .icon {
        font-size: 14px;
    }
    .booking .weather .daily-forecast .card {
        padding: 10px 10px;
        font-size: 14px;
    } */
    .booking .form-description {
        font-size: 15px;
        line-height: 25px;
    }
    .booking form .form-label {
        font-size: 14px;
    }

    .map iframe {
        height: 450px;
    }

    .footer .column-1 .footer-logo {
        height: 120px;
        margin-bottom: 5%;
    }
    .footer .column-1 .social a {
        margin-right: 15px;
    }
    .footer .column-1 .social i {
        font-size: 20px;
    }
    .footer .column-1 {
        width: 15%;
    }
    .footer .column-2 {
        width: 30%;
    }
}

@media screen and (max-width: 1366px) and (max-height: 730px) {
    .video-container .overlay .navbar {
        margin-bottom: 0px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 2%;
    }
    .video-container .overlay .city-name-div .city-name{
        font-size: 50px;
        line-height: 60px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 17px;
    }
}

@media screen and (max-width: 1366px) and (max-height: 660px) {
    .video-container .overlay .city-description-div .play-btn {
        width: 60px;
        height: 60px;
    }
}

/* Height: 768 */
@media screen and (max-width: 1360px) {
    .video-container .overlay .city-name-div .city-name{
        font-size: 75px;
        margin-bottom: 3px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 25px;
    }
}

/* Height: 800 */
@media screen and (max-width: 1280px) {
}

/* Height: 768 */
@media screen and (max-width: 1024px) {
    .video-container .overlay .navbar {
        margin-bottom: 35px;
    }
    .video-container .overlay .logo {
        width: 120px;
        height: 120px;
    }
    .video-container .overlay .navbar .nav-item.book-btn {
        right: 1%;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 7%;
    }
    .video-container .overlay .city-name-div .city-name {
        font-size: 50px;
        line-height: 60px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 18px;
    }
    .video-container .overlay .city-description-div {
        font-size: 16px;
    }
    .video-container .overlay .city-description-div .follow-us {
        font-size: 16px;
        line-height: 20px;
    }
    .video-container .overlay .city-description-div .social a {
        margin-right: 7px;
    }
    .video-container .overlay .city-description-div .social i {
        font-size: 20px;
    }
    .video-container .overlay .city-description-div .play-btn {
        width: 70px;
        height: 70px;
    }
    .video-container .overlay .feature-div {
        padding: 20px;
    }
    .video-container .overlay .feature-div .title {
        font-size: 16px;
    }
    .video-container .overlay .feature-div .description {
        font-size: 14px;
    }

    .about .about-image {
        height: 480px;
    }

    .booking .right {
        padding: 0 35px;
    }
    .booking .form-description {
        margin-bottom: 10px;
    }
    .booking .title, .booking .form-check-label, .booking .pass-price {
        font-size: 15px;
    }

    .booking .form-title {
        font-size: 25px;
    }

    .map iframe {
        height: 400px;
    }

    .faq .top {
        margin-bottom: 10px;
    }
    .faq .top .title {
        font-size: 25px;
    }
    .faq .bottom .title {
        font-size: 16px;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        font-size: 13px;
        padding: 10px;
    }

    .footer {
        padding: 2% 3%;
    }
    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .footer .column-4 .link {
        font-size: 12px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 12px;
    }

    .footer .column-1  .footer-logo {
        height: 100px;
    }
    .footer .column-1 .social a {
        margin-right: 10px;
    }
    .footer .column-1 .social i {
        font-size: 18px;
    }
    .footer .column-2 {
        width: 32%;
    }
    .footer .column-3 {
        width: 26%;
    }

    .copyright-div {
        padding: 10px;
    }
    .copyright-div .copyright {
        font-size: 12px;
    }
}

/* Height: 1024 */
@media screen and (max-width: 991px) { 
    .video-container .video-content {
        height: 77vh;
    }
    .video-container .overlay .navbar .nav-item.book-btn {
        right: 0%;
        position: relative;
        top: 0;
    }
    .video-container .overlay .navbar .info.mobile {
        display: block;
    }
    .video-container .overlay .navbar .info.desktop {
        display: none;
    }
    .navbar .navbar-collapse {
        position: absolute!important;
        right: 10%;
        top: 50%;
    }
    .navbar .navbar-toggler {
        border: 0;
        color: white;
        font-size: 40px;
    }
    .navbar .navbar-toggler:focus {
        box-shadow: none!important;
    }
    .video-container .overlay .navbar .nav-item {
        margin: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 10px
    }
    .video-container .overlay .feature-div {
        justify-content: center;
    }
    .video-container .overlay .feature-div .row {
        align-items: center;
        margin-bottom: 8px;
    }

    .booking .right {
        padding: 0 16px;
    }
    .booking .weather {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Height: 1024 */
@media screen and (max-width: 844px) {
    .video-container .video-content {
        height: 70vh;
    }
    .video-container .overlay .navbar {
        margin-bottom: 10px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 5%;
    }
    .video-container .overlay .city-name-div .city-name {
        font-size: 40px;
        line-height: 50px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 15px;
    }

    .footer .column-2 .title, .footer .column-4 .title {
        margin-bottom: 3px;
    }
    .footer .column-2 {
        width: 29%;
    }
    .footer .column-3 {
        width: 28%;
    }
    .footer .column-4 {
        width: 20%;
    }
    .footer .column-3 p a {
        padding-left: 9%;
    }
}

/* Height: 1024 */
@media screen and (max-width: 768px) {
    .video-container .video-content {
        height: 65vh;
    }
    .video-container .overlay .logo {
        width: 90px;
        height: 90px;
    }
    .video-container .overlay .navbar {
        margin-bottom: 20px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 8%;
    }
    .video-container .overlay .feature-div {
        padding: 10px;
    }

    .about .about-image {
        height: 400px;
    }

    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        line-height: 20px;
    }

    .footer .column-1 .footer-logo {
        height: 80px;
    }
    .footer .column-1 .social a {
        margin-right: 5px;
    }
    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 12px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 11px;
    }
    .footer .column-4 .link {
        font-size: 11px;
    }
    .footer .column-2 {
        width: 37%;
    }
    .footer .column-3 {
        width: 30%;
    }
    .footer .column-3 p a {
        padding-left: 9%;
    }
    .footer .column-4 {
        width: 18%;
    }
}

/* Height: 1080 */
@media screen and (max-width: 720px) {
    .video-container .video-content {
        height: 55vh;
    }

    .feature-div-mobile {
        display: block;
    }
    .feature-div-desktop {
        display: none;
    }

    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 10px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 10px;
    }
}

/* Height: 960 */
@media screen and (max-width: 650px) {
    .video-container .video-content {
        height: 60vh;
    }

    .footer .column-1 .footer-logo {
        height: 60px;
    }
    .footer .column-1 .social i {
        font-size: 12px;
    }
    .footer .column-1 {
        width: 14%;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 9px;
    }
    .footer .column-4 .link {
        font-size: 9px;
    }
}

/* Height: 736 */
@media screen and (max-width: 428px) {
    .video-container .video-content {
        height: 63vh;
    }
    .video-container .overlay .logo {
        width: 75px;
        height: 75px;
    }
    .navbar .navbar-toggler {
        font-size: 25px;
    }
    .video-container .overlay .navbar {
        margin-bottom: 0px;
    }
    .video-container .overlay .city-description-div .play-btn {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .video-container .overlay .city-description-div .play-btn::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #fff;
    }
    .video-container .overlay .city-description-div .follow-us {
        font-size: 11px;
        line-height: 15px;
    }
    .video-container .overlay .city-description-div .social i {
        font-size: 15px;
    }
    .video-container .overlay .navbar .nav-item.book-btn .btn {
        font-size: 10px;
    }
    .video-container .overlay .navbar .nav-item .nav-link {
        font-size: 10px;
    }
    .video-container .overlay .navbar .info .date {
        font-size: 12px;
    }
    .video-container .overlay .navbar .info .temp {
        font-size: 18px;
    }
    .video-container .overlay .city-name-div {
        margin-bottom: 5%;
    }
    .video-container .overlay .city-name-div .city-name {
        font-size: 20px;
        line-height: 30px;
    }
    .video-container .overlay .city-name-div .timings {
        font-size: 11px;
        width: 120px;
    }
    .video-container .overlay .city-description-div {
        font-size: 12px;
        line-height: 22px;
    }

    #playModal .modal-body .modal-video-content {
        height: 370px;
    }

    .feature-div .row {
        align-items: center;
    }
    .feature-div .title {
        font-size: 13px;
    }
    .feature-div .description {
        font-size: 12px;
    }
    .feature-div img {
        height: 40px;
    }
    .feature-div-mobile {
        padding: 10px 15px;
    }

    .about {
        margin-top: 0%;
        font-size: 14px;
    }
    .about .about-image {
        height: 260px;
    }
    .about .swiper-button-next:after, .about .swiper-button-prev:after {
        font-size: 10px;
        padding: 9px 12px;
    }

    .booking .inner-weather {
        padding: 10px;
    }
    .booking form .form-label {
        font-size: 13px;
        margin-bottom: 2px;
    }
    .booking .right {
        padding: 0 10px;
    }
    .booking form .buy-now {
        margin: 0px auto auto;
    }
    .booking .weather {
        padding-right: 10px;
        padding-left: 10px;
    }

    .booking .form-title {
        font-size: 20px;
    }

    .map iframe {
        height: 360px;
    }

    .faq {
        margin-top: 5%;
    }
    .faq .top .title {
        font-size: 20px;
    }
    .faq .bottom .title {
        font-size: 16px;
    }
    .accordion-body {
        font-size: 13px;
        padding: 5px;
    }
    .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
        padding: 7px;
    }

    .instagram {
        margin-top: 5%;
    }


    .footer {
        padding: 5% 5%;
    }
    .footer .column-1 {
        width: 25%;
        margin-bottom: 5%;
    }
    .footer .column-2 {
        width: 75%;
        padding-top: 3%;
    }
    .footer .column-3 {
        width: 65%;
        padding-top: 0;
    }
    .footer .column-4 {
        width: 35%;
        padding-top: 0;
    }
    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 12px;
    }
    .footer .column-4 .link {
        font-size: 12px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 12px;
    }
    .footer .column-1 .footer-logo {
        height: 80px;
    }
    .footer .column-1 .social i {
        font-size: 16px;
    }
    .copyright-div .copyright {
        font-size: 11px;
    }
}

/* Height: 736 */
@media screen and (max-width: 414px) {
}

/* Height: 667 */
@media screen and (max-width: 395px) {
    .video-container .video-content {
        height: 69vh;
    }

    .footer .column-1 .social i {
        font-size: 14px;
    }
}

/* Height: 667 */
@media screen and (max-width: 376px) {
    .video-container .video-content {
        height: 72vh;
    }

    /* .booking .weather .current-weather .main-title {
        font-size: 15px;
        line-height: 22px;
    }
    .booking .weather .current-weather .info, .booking .weather .current-weather .icon {
        font-size: 12px;
    }
    .booking .weather .daily-forecast .card {
        padding: 5px 5px;
        font-size: 11px;
    } */
    .booking .form-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .footer .column-1 .footer-logo {
        height: 70px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 11px;
    }
    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 11px;
    }
    .footer .column-4 .link {
        font-size: 11px;
    }
}

/* Height: 720 */
@media screen and (max-width: 360px) {
    .footer .column-1 {
        width: 30%;
    }
    .footer .column-2 {
        width: 70%;
    }
}

/* Height: 568 */
@media screen and (max-width: 320px) {
    .video-container .video-content {
        height: 84vh;
    }
    .video-container .overlay .city-name-div .city-name {
        font-size: 13px;
        line-height: 20px;
    }
    .video-container .overlay .city-description-div .play-btn:before {
        width: 130%;
        height: 130%;
        top: -15%;
        left: -15%;
    }

    #playModal .modal-body .modal-video-content {
        height: 280px;
    }

    .about {
        font-size: 13px;
    }
    .about .about-image {
        height: 230px;
    }

    .booking .title, .booking .form-check-label, .booking .pass-price {
        font-size: 14px;
    }

    .booking #date-field {
        font-size: 14px;
    }

    .footer .column-2 .title, .footer .column-4 .title {
        font-size: 9px;
        margin-bottom: 3px;
    }
    .footer .column-4 .link {
        font-size: 10px;
        margin-top: 2px;
    }
    .footer .column-2 p, .footer .column-3 p {
        font-size: 10px;
    }

    .copyright-div .copyright {
        font-size: 10px;
    }
}
/* Responsive */