:root {
    --blueColor-1: #5FC1D7; /* rgb(95, 193, 215) */
    --blueColor-2: #008399; /* rgb(0, 131, 153) */
    --blueColor-3: #2E5E66;
    --blackColor-1: #010101;
    --blackColor-2: #231F20;
    --whiteColor: #FFFFFF;
    --whiteColor-1: #F1F1F1;
    --grayColor: #999;
    --grayColor-1: #636363;
    --light-gray: #F4F5F8;
    --starColor: #e4a853;
    --mainColor: #5FC1D7;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-size: 1rem;
    font-family: sans-serif;
    line-height: 1.5;
    color: var(--blackColor-2);
    position: relative;
}

.container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

::selection {
    background-color: #2095AE;
    color: var(--whiteColor);
}

.section-subtitle {
    color: #2095AE;
    font-size: 0.8rem; /* 13px */
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

.section-title {
    font-size: 2.8rem; /* 45px */
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.button {
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    background-color: var(--blueColor-2);
    color: var(--whiteColor);
    font-size: 1rem;
    padding: 20px;
    outline: none;
    border: none;
}

.blueTxtColor {
    color: var(--blueColor-2);
}

/*********** Header ***********/
/* Navbar */
#home {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/home/home1.avif');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.navbar {
    height: 5rem;
    position: relative;
    z-index: 100;
    transition: 0.5s;
}

.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.navbar .nav-logo,
.fixed-navbar .nav-logo {
    width: 70px;
    object-fit: cover;
}

.nav-logo {
    display: block;
}

.navbar-nav {
    display: flex;
}

.navbar-nav li:not(:last-child) {
    margin-right: 2rem;
}

.navbar-nav li a {
    text-decoration: none;
    color: var(--whiteColor);
    transition: 0.5s;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
    color: var(--blueColor-2);
}

.navbar-nav li a.active {
    color: var(--blueColor-2);
}

.navbar.active {
    background-color: var(--whiteColor);
    color: var(--blackColor-2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.navbar .logo-iata {
    display: none;
}
.navbar .black {
    display: none;
}

.navbar .contact-box {
    display: none;
}

.navbar.active .navbar-nav {
    display: none;
}

.navbar.active .wrapper {
    display: flex;
    align-items: center;
}
.navbar.active .wrapper > a {
    margin-right: 2rem;
}
.navbar.active .logo-iata {
    width: 80px;
}

.navbar.active .contact-box {
    display: flex;
    align-items: center;
}

.navbar.active .contact-box .wrapper {
    display: flex;
    align-items: center;
}

.navbar.active .contact-box a {
    text-decoration: none;
    color: var(--whiteColor);
    background-color: var(--blueColor-2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.18rem; /* 35px */
    height: 2.18rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.navbar.active .contact-box span {
    color: var(--blueColor-2);
    font-weight: 600;
    font-size: 0.9rem;
}

.navbar.active .contact-box .wrapper:first-child {
    margin-right: 2rem;
}

/* Bars menu */
.off-screen-menu {
    height: calc(100vh - 5rem);
    width: 100%;
    position: fixed;
    bottom: 0;
    right: -100%;
    transition: 0.3s;
    background-color: var(--whiteColor);
    border-top: 1px solid rgba(0, 0, 0, .2);
    padding: 2rem;
    z-index: 5;
    overflow: hidden;
}

.off-screen-menu ul {
    display: flex;
    flex-direction: column;
}
.off-screen-menu a {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--blackColor-2);
    font-size: 2rem;
}

.off-screen-menu.active {
    right: 0;
}

.off-screen-menu a {
    padding: 2rem;
    text-align: center;
    color: var(--blackColor-2);
    transition: 0.3s ease;
}

.off-screen-menu a:hover {
    color: var(--blueColor-2);
}

.bars-menu {
    width: 40px;
    height: 40px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
    display: none;
}

.bars-menu span {
    height: 5px;
    width: 100%;
    background-color: var(--whiteColor);
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.bars-menu span:nth-child(1) {
    top: 25%;
}

.bars-menu span:nth-child(3) {
    top: 75%;
}

.bars-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.bars-menu.active span:nth-child(2) {
    opacity: 0;
}

.bars-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar.active .bars-menu span {
    background-color: var(--blackColor-2);
}

/* Home */
.home-wrapper {
    height: calc(100vh - 5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

.text-wrapper .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .text-wrapper .row .col {
    text-align: center;
}

.text-wrapper h4 {
    color: var(--whiteColor);
    font-size: 0.8rem; /* 13px */
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.text-wrapper h1 {
    color: var(--whiteColor);
    font-size: 4.6rem; /* 75px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.text-wrapper h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--whiteColor);
}

/*********** About ***********/
.about {
    padding: 120px 0;
}

.about .row:nth-child(1) .titles-box {
    width: 50%;
}
.about .row:nth-child(2) {
    display: flex;
}

.about .row:nth-child(2) .col {
    width: 50%;
}

.about .titles-box h4 {
    color: #2095AE;
    font-size: 0.8rem; /* 13px */
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 5px;
}

.about .titles-box h3 {
    font-size: 2.8rem; /* 45px */
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--grayColor-1);
    margin-bottom: 20px;
}

.about .about-list {
    margin-bottom: 30px;
}

.about .about-list li {
    display: flex;
    align-items: center;
}

.about .about-list li:not(:last-child) {
    margin-bottom: 10px;
}

.about .about-list-text {
    margin-left: 15px;
    color: var(--grayColor-1);
}

.about .about-list-icon i {
    font-size: 1.8rem; /* 30px */
    color: #2095AE;
}

.about .phone-call {
    display: flex;
    align-items: center;
}

.about .phone-call .icon i {
    font-size: 2.25rem; /* 36px */
    color: var(--blueColor-2);
}

.about .phone-call .text {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.about .phone-call .text p {
    margin: 0;
}

.about .phone-call .text a {
    text-decoration: none;
    font-size: 1.5rem; /* 24px */
    color: var(--blueColor-2);
}

.about .about-img {
    display: flex;
    justify-content: flex-end;
}

.about .about-img img {
    width: 80%;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

/*********** Clock ***********/
.clock {
    padding: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, .8)), url('images/clock.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.clock .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clock .row .col {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--whiteColor);
}

.clock .row .col .icon-box {
    font-size: 2.5rem; /* 40px */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.clock .row .col h3 {
    font-size: 2.25rem; /* 36px */
    font-weight: 600;
    margin-bottom: 10px;
}

.clock .row .col h5 {
    font-size: 1rem;
    font-weight: 600;
}

/*********** Tours ***********/
.tours {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.tours .section-title {
    margin-bottom: 2rem;
}

.tours .container .row:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 500px 250px;
    gap: 20px;
}

.tours .row:nth-child(2) .item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: all .3s;
}

.tours .row:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.tours .row:nth-child(2) .item1 {
    grid-column: 1 / span 2;
}

.tours .row:nth-child(2) .item:hover img {
    transform: scale(1.1);
}

.tours .row:nth-child(2) .item .text {
    color: var(--whiteColor);
    padding: 2rem 2rem 0 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
}

.tours .row:nth-child(2) .item .text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.tours .row:nth-child(2) .item .text h4 {
    font-size: 2rem;
    padding: 1rem 0;
    position: relative;
}

.tours .row:nth-child(2) .item .text h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.tours .row:nth-child(2) .item .text p {
    font-size: 0.9rem;
    padding: 1rem 0 0 0;
    height: 0;
    transition: 0.3s;
}

.tours .row:nth-child(2) .item:hover p {
    height: 5rem;
}

/*********** Destination ***********/
.destination {
    padding: 120px 0;
}

.destination .section-title {
    margin-bottom: 2rem;
}

.destination .item {
    overflow: hidden;
    height: 500px;
    margin-bottom: 30px;
    position: relative;
}

.destination .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: 0.3s;
}

.destination .row:nth-child(2) .item .text {
    color: var(--whiteColor);
    padding: 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    transition: 0.3s;
}

.destination .row:nth-child(2) .item .text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.destination .item:hover img {
    transform: scale(1.1);
}

.destination .item:hover .text {
    font-size: 1.2rem;
}

.destination .owl-nav {
    display: none;
}

.owl-carousel, .owl-carousel .owl-item {
    z-index: 0;
}

/*********** Dynamic video ***********/
.dynamic-video {
    max-width: 100%;
    max-height: 500px;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.dynamic-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blackColor-1);
    opacity: 0.5;
    z-index: 2;
}

.dynamic-video .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 1rem;
    color: var(--whiteColor);
    text-align: center;
}

.dynamic-video .content h3 {
    font-size: 2rem; /* 40px */
    margin-bottom: 1rem;
}

/*********** Engagement ***********/
.engagement {
    padding: 120px 0;
}

.engagement .row:nth-child(1) .col h3 {
    text-transform: none;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 100px;
}

.engagement .row:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
}

.engagement .row:nth-child(2) .col {
    width: 25%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

.engagement .row:nth-child(2) .col i {
    font-size: 2.25rem; /* 36px */
    margin-bottom: 30px;
}

/*********** Trust us ***********/
.trust-us {
    padding: 60px 0;
    background: linear-gradient(var(--light-gray), var(--light-gray));
}

.trust-us .row {
    display: flex;
    flex-direction: column;
}

.trust-us .col:nth-child(1) {
    text-align: center;
}
.trust-us .col:nth-child(1) p {
    color: var(--grayColor-1);
    font-weight: 600;
}

.trust-us .col:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 4rem;
    row-gap: 2rem;
    margin-top: 2rem;
}

.trust-us .col:nth-child(2) img {
    display: block;
    width: 100px;
    object-fit: cover;
    filter: grayscale(100);
}

/*********** Testimonials ***********/
.testimonials {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/explore-the-world.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.testimonials .row {
    display: flex;
}

.testimonials .row .col {
    width: 50%;
}

.testimonials .row .book-now {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--whiteColor);
}

.testimonials .row .book-now h4 {
    font-size: 1.3rem; /* 22px */
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonials .phone-call {
    display: flex;
    align-items: center;
}

.testimonials .phone-call .phone-icon i {
    font-size: 2.25rem; /* 36px */
    color: var(--whiteColor);
}

.testimonials .phone-call .text {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.testimonials .phone-call .text p {
    margin: 0;
}

.testimonials .phone-call .text a {
    text-decoration: none;
    font-size: 1.5rem; /* 24px */
    color: var(--whiteColor);
}

.testimonials .row .testimonials-box {
    height: 100%;
    width: 80%;
    margin-left: 20%;
    background-color: var(--whiteColor);
    padding: 60px 45px 45px 45px;
}

.testimonials .row .testimonials-box h3 {
    font-size: 1.8rem; /* 30px */
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grayColor);
}

.testimonials .row .testimonials-box p {
    line-height: 1.75;
    margin: 20px 0;
    color: var(--blackColor-1);
}

.testimonials .row .testimonials-box .author {
    display: flex;
    align-items: center;
}

.testimonials .row .testimonials-box .author .img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials .row .testimonials-box .author .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .row .testimonials-box .author .content {
    margin-left: 15px;
}

.testimonials .row .testimonials-box .author .content .name {
    margin-top: 5px;
}

.testimonials .row .testimonials-box .author .name h5 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--blueColor-3);
    line-height: 0.5;
}

.testimonials .row .testimonials-box .author .name span {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem; /* 13px */
    color: var(--grayColor);
}

.testimonials .row .testimonials-box .author .rating i {
    font-size: 0.75rem; /* 12px */
    color: var(--grayColor);
}

.testimonials .row .testimonials-box .author .rating i.active {
    color: var(--starColor);
}

/*********** Airlines ***********/
.airlines {
    padding: 60px 0;
}

.airlines .airlines-container .tem {
    overflow: hidden;
    width: 200px;
    height: 100px;
}
.airlines .airlines-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airlines .airlines-container .owl-dots {
    display: none;
}

/*********** Footer ***********/
footer {
    background-color: var(--blackColor-2);
    color: var(--whiteColor);
}

footer .container {
    display: flex;
    flex-direction: column;
}

footer .inner-first-footer .row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 8rem;
    border: 1px solid rgba(255, 255, 255, .2);
    margin: 4rem 0 1rem;
}

footer .inner-first-footer .row .col {
    height: 4rem;
    display: flex;
    justify-content: center;
}

footer .inner-first-footer .row .col a {
    height: 100%;
    width: 4.68rem; /* 75px */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem; /* 25px */
    color: var(--whiteColor);
    background-color: var(--blueColor-2);
}

footer .inner-first-footer .row .col-1,
footer .inner-first-footer .row .col-2,
footer .inner-first-footer .row .col-3 {
    font-size: 0.8rem;
    overflow: hidden;
}

footer .inner-first-footer .row .col-1 h3,
footer .inner-first-footer .row .col-2 h3,
footer .inner-first-footer .row .col-3 h3 {
    font-size: 1rem;
}

footer .inner-first-footer .row .col > div {
    padding: 0.5rem;
}

footer .inner-first-footer .row .col > div p {
    color: var(--grayColor);
    font-weight: 400;
}

footer .inner-first-footer .row .col:nth-child(3) > div p {
    line-height: 1;
}

footer .inner-second-footer {
    border-bottom: 1px solid rgba(255, 255, 255, .2);;
}

footer .inner-second-footer .row {
    display: flex;
    padding: 4rem 0;
}

footer .inner-second-footer .row .col {
    width: 33.33%;
}

footer .inner-second-footer .row .col-img {
    display: flex;
    flex-direction: column;
}

footer .inner-second-footer .footer-logo {
    width: 200px;
}

footer .inner-second-footer .logo-iata {
    width: 200px;
    object-fit: cover;
}

footer .inner-second-footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

footer .inner-second-footer .quick-links {
    padding-left: 5rem;
}

footer .inner-second-footer .quick-links li {
    margin-bottom: 5px;
    line-height: 1.75;
}

footer .inner-second-footer .quick-links a {
    text-decoration: none;
    color: var(--grayColor);
    transition: 0.5s;
}

footer .inner-second-footer .quick-links a:hover {
    color: var(--whiteColor);
}

footer .inner-second-footer .newsletter {
    display: flex;
    flex-direction: column;
}

footer .inner-second-footer .newsletter p {
    color: var(--grayColor);
    line-height: 1.75;
    margin-bottom: 20px;
}

footer .inner-second-footer .newsletter-form form {
    position: relative;
    width: 100%;
}

footer .inner-second-footer .newsletter-form input {
    height: 60px;
    outline: none;
    border: none;
    padding: 0 90px 0 20px;
    background-color: var(--whiteColor);
    color: var(--grayColor);
    font-size: 1rem;
    width: 100%;
}

footer .inner-second-footer .newsletter-form button {
    height: 50px;
    outline: none;
    border: none;
    padding: 0 25px;
    background-color: var(--blueColor-2);
    color: var(--whiteColor);
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

footer .inner-third-footer .row {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .inner-third-footer .copyright {
    color: var(--grayColor);
    font-size: 0.8rem;
    font-weight: 400;
}

footer .inner-second-footer .social {
    margin-top: 2rem;
}

footer .inner-second-footer .social-link-wrapper {
    display: flex;
}

footer .inner-second-footer .social-link-wrapper a {
    display: inline-block;
    width: 3.125rem; /* 50px */
    height: 3.125rem;
    background-color: var(--blueColor-2);
    color: var(--whiteColor);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

footer .inner-second-footer .social-link-wrapper a:not(:last-child) {
    margin-right: 1rem;
}

/*********** Back to top ***********/
.to-top {
    text-decoration: none;
    color: var(--whiteColor);
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--blueColor-2);
    border-radius: 50%;
    background-color: var(--blueColor-2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
}

.to-top:hover {
    box-shadow: 4px 4px 20px rgba(0, 131, 153, 0.6);
}

.to-top.active {
    opacity: 1;
    pointer-events: auto;
}

/*********** Contact page ***********/
.contact {
    padding: 120px 0;
}

.contact .row:nth-child(1) {
    display: flex;
}

.contact .row:nth-child(1) .about-contact h2 {
    color: var(--blueColor-2);
    font-size: 2rem;
}

.contact .row:nth-child(1) .about-contact p {
    margin: 2rem 0;
    color: var(--grayColor-1);
}

.contact .row:nth-child(1) .phone-box,
.contact .row:nth-child(1) .email-box,
.contact .row:nth-child(1) .location-box {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact .row:nth-child(1) .location-box {
    margin-bottom: 0;
}

.contact .row:nth-child(1) .icon i {
    font-size: 2.25rem; /* 36px */
}

.contact .row:nth-child(1) .phone-box .icon i,
.contact .row:nth-child(1) .email-box .icon i,
.contact .row:nth-child(1) .location-box .icon i {
    color: var(--blueColor-2);
}

.contact .row:nth-child(1) .text {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    color: var(--grayColor-1);
}

.contact .row:nth-child(1) h4 {
    font-weight: normal;
    font-size: 1rem;
}

.contact .row:nth-child(1) .phone-box p,
.contact .row:nth-child(1) .email-box p {
    font-size: 1.5rem; /* 24px */
    color: var(--blueColor-2);
}

.contact .row:nth-child(1) .location-box p {
    font-size: 1rem;
    color: inherit;
}

.contact .contact-form {
    background-color: var(--light-gray);
}

.contact .contact-form h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--whiteColor);
    background-color: var(--blueColor-2);
    width: 100%;
}

.contact form {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contact-form .form-group-box {
    display: flex;
    column-gap: 1rem;
}

.contact-form .form-group-box .form-group {
    width: 50%;
}

.contact-form .form-group label {
    display: none;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    display: block;
    outline: none;
    border: none;
    padding: 20px;
    background-color: var(--whiteColor);
    color: var(--grayColor-1);
    font-size: 1rem;
    font-family: sans-serif;
}

.contact-form .form-group-box input {
    width: 100%;
}

.contact-form .form-group input#object {
    width: 100%;
}
.contact-form .form-group textarea {
    width: 100%;
    height: 200px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
}

.contact .row:nth-child(2) .google-map {
    margin-top: 4rem;
    
}

.contact .row:nth-child(2) iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

/*********** White navbar ***********/
.navbar.white {
    color: var(--blackColor-2);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.navbar.white .navbar-nav a {
    color: var(--blackColor-2);
    transition: 0.3s;
}

.navbar.white .navbar-nav a:hover {
    color: var(--blueColor-2);
}

/*********** Miscellaneous ***********/
.overflow {
    overflow: hidden;
}

.navbar.white .navbar-nav a.active {
    color: var(--blueColor-2);
}

.nav-logo-box img {
    transition: 0.3s;
}

.nav-logo-box:hover img {
    transform: scale(0.9);
}

.page404 {
    height: 100vh;
    display: flex;
    align-items: center;
}

.page404 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page404 h1 {
    font-size: 10rem;
    color: var(--blueColor-2);
}

.page404 .button {
    margin-top: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/*********** Header home2 ***********/
/* Navbar */
header#home2 {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/home/home2.avif');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-wrapper {
    height: calc(70vh - 5rem);
}

.text-wrapper .container {
    height: 100%;
}

.text-wrapper .row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: inherit;
}

.text-wrapper .row .col {
    text-align: left;
}

.text-wrapper h3 {
    color: var(--whiteColor);
}

.section-title {
    margin-bottom: 0;
}

.home-header .navbar.active .navbar-nav {
    display: flex;
}
.home-header .navbar.active .navbar-nav li a {
    color: var(--blackColor-2);
    transition: 0.3s;
}
.home-header .navbar.active .navbar-nav li a:hover {
    color: var(--blueColor-2);
}

/*********** Destinations page ***********/
section.destinations {
    padding: 120px 0;
}

section.destinations .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 500px);
    gap: 20px;
}

section.destinations .row .item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: all .3s;
}

section.destinations .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

section.destinations .row .item:hover img {
    transform: scale(1.1);
}

section.destinations .row .item .text {
    color: var(--whiteColor);
    padding: 2rem 2rem 0 2rem;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
}

section.destinations .row .item .text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: -1;
}

section.destinations .row .item .text h4 {
    font-size: 2rem;
    padding: 1rem 0;
    position: relative;
}

section.destinations .row .item .text h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

section.destinations .row .item .text p {
    font-size: 0.9rem;
    padding: 1rem 0 0 0;
    height: 0;
    transition: 0.3s;
}

section.destinations .row .item:hover p {
    height: 5rem;
}

/*********** Gallery page ***********/
/* Images gallery */
.images-gallery {
    padding: 120px 0 0;
}

.images-gallery .section-title {
    margin-bottom: 2rem;
}

.images-gallery .row:nth-child(2) .grid1 {
    display: grid;
    grid: 250px / 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.images-gallery .row:nth-child(2) .grid2 {
    display: grid;
    grid: 350px / 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.images-gallery .row:nth-child(2) .item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: all .3s;
}

.images-gallery .row:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.images-gallery .row:nth-child(2) .item:hover img {
    transform: scale(1.1);
}

.images-gallery .row:nth-child(2) .grid2 .item:nth-child(1) {
    grid-column: 1 / span 2;
}
.images-gallery .row:nth-child(2) .grid2 .item:nth-child(2) {
    grid-column: 3 / span 2;
}

/* Videos gallery */
.videos-gallery {
    padding: 120px 0;
}

.videos-gallery .section-title {
    margin-bottom: 2rem;
}

.videos-gallery .row:nth-child(2) .grid1 {
    display: grid;
    grid: 350px / 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.videos-gallery .row:nth-child(2) .grid2 {
    display: grid;
    grid: 250px / 1fr 1fr 1fr;
    grid-gap: 20px;
}

.videos-gallery .row:nth-child(2) .item {
    overflow: hidden;
    position: relative;
    z-index: 0;
    transition: all .3s;
}

.videos-gallery .row:nth-child(2) video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.videos-gallery .row:nth-child(2) .grid1 .item:nth-child(1) {
    grid-column: 1 / span 2;
}
.videos-gallery .row:nth-child(2) .grid1 .item:nth-child(2) {
    grid-column: 3 / span 2;
}

/*********** Review page ***********/
.write-review {
    height: 100vh;
}

.write-review .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.write-review .review-form {
    padding: 50px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
}

.write-review .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.write-review input {
    height: 60px;
    padding: 0 90px 0 20px;
    background-color: var(--whiteColor);
    color: var(--grayColor);
    font-size: 1rem;
    width: 360px;
    outline: none;
    border: 1px solid var(--grayColor);
}

.write-review input[type=number] {
    padding: 0 20px 0 20px;
}

.write-review input[type=file] {
    padding: 0;
    border: none;
}

.write-review label {
    margin-bottom: 0.5rem;
}

.write-review button {
    height: 50px;
    padding: 0 25px;
    background-color: var(--blueColor-2);
    color: var(--whiteColor);
    font-size: 1rem;
    text-transform: uppercase;
}

.write-review textarea {
    resize: vertical;
    padding: 20px 90px 0 20px;
    background-color: var(--whiteColor);
    color: var(--grayColor);
    font-size: 1rem;
    border: 1px solid var(--grayColor);
    font-family: sans-serif;
}

.write-review input::placeholder,
.write-review textarea::placeholder {
    color: var(--grayColor);
}


/*********** Responsive design ***********/
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 600px) {
    html {
        font-size: 80%;
    }

    .container {
        max-width: 540px;
    }

    /* Header */
    header#home .navbar-nav {
        display: none;
    }

    header#home .contact-box {
        display: none;
    }

    .home-wrapper {
        z-index: -1;
    }

    header#home {
        z-index: 1;
    }

    .bars-menu {
        display: block;
    }
    
    #home {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/home/home1-small2.avif');
        background-repeat: no-repeat;
        background-size: cover;
    }
    

    /* About */
    .about .row {
        flex-direction: column;
    }

    .about .row:nth-child(1) .titles-box {
        width: 100%;
    }
    
    .about .row:nth-child(2) .col {
        width: 100%;
    }

    .about .row:nth-child(2) .col:nth-child(1) {
        order: 2;
    }

    .about .row:nth-child(2) .col:nth-child(2) {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .about .about-img img {
        width: 100%;
    }

    /* Tours */
    .tours .container .row:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
        gap: 40px;
    }

    .tours .row:nth-child(2) .item1 {
        grid-column: 1;
    }

    .tours .row:nth-child(2) .item2 {
        grid-row: 2 / span 2;
    }

    /* Dynamic video */
    .dynamic-video .content h3 {
        font-size: 1.8rem;
    }

    /* Engagement */
    .engagement .row:nth-child(2) {
        flex-direction: column;
        align-items: center; /* New */
    }
    
    .engagement .row:nth-child(2) .col {
        width: 100%;
        /* margin-bottom: 2rem; */
    }

    .engagement .row:nth-child(2) .col:last-child {
        margin-bottom: 0;
    }

    /* Testimonials */
    .testimonials .row {
        flex-direction: column;

    }

    .testimonials .row .col {
        width: 100%;
    }

    .testimonials .row .book-now {
        margin-bottom: 2rem;
    }

    .testimonials .row .testimonials-box {
        width: 100%;
        margin-left: 0;
    }
    
    /* World clock */
    .clock .row {
        flex-direction: column;
    }
    
    .clock .row .col {
        width: 100%;
        margin-bottom: 2rem;
    }

    .clock .row .col:last-child {
        margin-bottom: 0;
    }

    .clock .row .col .text-box {
        padding: 2rem;
        border: 2px dashed rgba(255, 255, 255, .2);
        border-radius: 50%;
    }

    /* Footer */
    footer .inner-first-footer .row {
        gap: 10%;
        
    }

    footer .inner-first-footer .row .col-1,
    footer .inner-first-footer .row .col-2,
    footer .inner-first-footer .row .col-3 {
        width: 30%;
    }

    footer .inner-first-footer .row .col.col-1,
    footer .inner-first-footer .row .col.col-2 {
        border-right: 0;
    }

    footer .inner-first-footer .col > div {
        display: none;
        
    }

    footer .inner-second-footer .row {
        flex-direction: column;
    }

    footer .inner-second-footer .row .col {
        width: 100%;
    }

    footer .inner-second-footer .row .col-img {
        display: none;
    }

    footer .inner-second-footer .quick-links {
        padding-left: 0;
        margin-bottom: 4rem;
    }

    .navbar.white .bars-menu > span {
        background-color: var(--blackColor-2);
    }

    .navbar.white .navbar-nav {
        display: none;
    }

    .home-header .navbar .navbar-nav {
        display: none !important;
    }

    .contact .row:nth-child(2) iframe {
        min-height: 300px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea,
    .contact-form .button {
        font-size: 0.9rem;
    }

    footer .inner-second-footer .social-link-wrapper a:not(:last-child) {
        margin-right: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }

    /* About */
    .about .row {
        flex-direction: column;
    }

    .about .row:nth-child(1) .titles-box {
        width: 100%;
    }
    
    .about .row:nth-child(2) .col {
        width: 100%;
    }

    .about .row:nth-child(2) .col:nth-child(1) {
        order: 2;
    }

    .about .row:nth-child(2) .col:nth-child(2) {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .about .about-img img {
        width: 100%;
    }

    /* Tours */
    .tours .container .row:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
        gap: 40px;
    }

    .tours .row:nth-child(2) .item1 {
        grid-column: 1;
    }

    .tours .row:nth-child(2) .item2 {
        grid-row: 2 / span 2;
    }

    /* Engagement */
    .engagement .row:nth-child(2) {
        row-gap: 2rem;
    }
    
    .engagement .row:nth-child(2) .col {
        width: 50%;
    }

    /* Testimonials */
    .testimonials .row {
        flex-direction: column;

    }

    .testimonials .row .col {
        width: 100%;
    }

    .testimonials .row .book-now {
        margin-bottom: 2rem;
    }

    .testimonials .row .testimonials-box {
        width: 100%;
        margin-left: 0;
    }

    /* Clock */
    .clock .row {
        row-gap: 2rem;
    }
    .clock .row .col {
        width: 50%;
    }

    footer .inner-first-footer .row .col.col-1,
    footer .inner-first-footer .row .col.col-2 {
        border-right: 0;
    }

    footer .inner-first-footer .col > div {
        display: none;
        
    }

    footer .inner-second-footer .row {
        flex-direction: column;
    }

    footer .inner-second-footer .row .col {
        width: 100%;
    }

    footer .inner-second-footer .row .col-img {
        display: none;
    }

    footer .inner-second-footer .quick-links {
        padding-left: 0;
        margin-bottom: 4rem;
    }

    .contact .row:nth-child(1) .col:first-child {
        display: none;
    }
    .contact .row:nth-child(1) .col:last-child {
        width: 100%;
    }

    section.destinations .row {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 500px);
    }

    .images-gallery .row:nth-child(2) .grid1 {
        grid: repeat(3, 350px) / 1fr;
    }
    
    .images-gallery .row:nth-child(2) .grid2 {
        grid: 350px 350px / 1fr;
    }

    .images-gallery .row:nth-child(2) .grid2 .item:nth-child(1),
    .videos-gallery .row:nth-child(2) .grid1 .item:nth-child(1),
    .videos-gallery .row:nth-child(2) .grid1 .item:nth-child(2) {
        grid-column: 1;
    }

    .images-gallery .row:nth-child(2) .grid2 .item:nth-child(2) {
        grid-column: 1;
    }

    .videos-gallery .row:nth-child(2) .grid1 {
        grid: 350px 350px / 1fr;
    }

    .videos-gallery .row:nth-child(2) .grid2 {
        grid: repeat(3, 350px) / 1fr;
    }

}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .engagement .row:nth-child(2) .col {
        width: 50%;
    }

    /* Testimonials */
    .testimonials .row {
        flex-direction: column;

    }

    .testimonials .row .col {
        width: 100%;
    }
    .testimonials .row .book-now {
        margin-bottom: 2rem;
    }

    .testimonials .row .testimonials-box {
        width: 100%;
        margin-left: 0;
    }

    /* Clock */
    .clock .row {
        row-gap: 2rem;
    }

    .clock .row .col {
        width: 50%;
    }

    footer .inner-first-footer .row .col.col-1,
    footer .inner-first-footer .row .col.col-2 {
        border-right: 0;
    }
    
    footer .inner-first-footer .col > div {
        display: none;
        
    }

    footer .inner-second-footer .row .col {
        width: 50%;
    }
    footer .inner-second-footer .row .col-img {
        display: none;
    }
    footer .inner-second-footer .quick-links {
        padding-left: 0;
    }

}

@media (max-width: 992px) {
    .contact .row:nth-child(1) .col:first-child {
        display: none;
    }
    .contact .row:nth-child(1) .col:last-child {
        width: 100%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    /* Engagement */
    .engagement .row:nth-child(2) {
        row-gap: 0;
    }
    
    .engagement .row:nth-child(2) .col {
        width: 25%;
    }

    /* Testimonials */
    .testimonials .row {
        flex-direction: row;

    }

    .testimonials .row .col {
        width: 50%;
    }

    .testimonials .row .book-now {
        margin-bottom: 0;
    }

    .testimonials .row .testimonials-box {
        width: 80%;
        margin-left: 20%;
    }

    /* Clock */
    .clock .row {
        row-gap: 0;
    }
    .clock .row .col {
        width: 25%;
    }

    /* Footer */
    footer .inner-first-footer .row {
        gap: 0;
        
    }

    footer .inner-first-footer .row .col-1,
    footer .inner-first-footer .row .col-2,
    footer .inner-first-footer .row .col-3 {
        width: 30%;
    }

    footer .inner-first-footer .col > div {
        display: block;
        
    }

    footer .inner-second-footer .row .col {
        width: 33.33%;
    }

    footer .inner-second-footer .row .col-img {
        display: flex;
        flex-direction: column;
    }

    footer .inner-second-footer .logo-iata {
        margin-top: 1rem;
    }
    
    footer .inner-second-footer .quick-links {
        padding-left: 5rem;
    }

    .contact .row:nth-child(1) .col:first-child {
        width: 60%;
        padding-right: 5rem;
    }
    .contact .row:nth-child(1) .col:last-child {
        width: 40%;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
