/* ----------------------------------------- */
/* --------------Header styles-------------- */
/* ----------------------------------------- */

.site-header {
    background-color: var(--header-background-color);
}

.site-branding img {
    width: 200px;
    height: auto;
}

.site-toggle-btn {
    outline: none;
    border: none;
    background-color: transparent;
}

.site-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}

.burger-bar {
    margin: 8px 0;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--body-color);
}

.burger-bar:nth-child(2) {
    width: 22px;
}

.site-main-menu-primary ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-main-menu-primary ul li {
    display: block;
}

.site-main-menu-primary ul li a {
    display: block;
    padding: 10px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.site-main-menu-primary ul li a:hover {
    color: var(--link-hover-color);
}


/* Mobile menu */

.admin-bar div#mobile-navigation {
    top: 46px;
}

div#mobile-navigation {
    position: fixed;
    background: #fff;
    width: 80%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: all .3s ease-in;
}

div#mobile-navigation.show {
    transform: translateX(0);
}

.mobile-navigation__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mobile-navigation__logo .site-branding {
    font-size: 20px;
    color: var(--body-color);
    margin: 0;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children ul {
    position: absolute;
    z-index: 9;
    background: #fff;
    right: -50%;
    top: 100%;
    width: 100%;
    min-width: 200px;
    box-shadow: none;
    transform-origin: top;
    transform: rotateX(90deg);
    opacity: 0;
    transition: all 0.3s ease-in;
    max-height: 250px;
    overflow: auto;
}

.desktop-navigation__menu .menu-item-has-children:hover ul {
    box-shadow: 0 8px 14px #ccc;
    transform: rotateX(0deg);
    opacity: 1;
}

.mobile-navigation__menu .menu-item-has-children.show ul {
    transform: rotateX(0deg);
    opacity: 1;
    height: 100%;
}


a.mobile-navigation__close {
    font-size: 42px;
    color: var(--mobile-menu-close-btn-color);
    text-decoration: none;
}

.mobile-menu-support::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: 998;
    transform: translateX(-100%);
    transition: all 0.3s ease-in;
}

.menu-item-has-children::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: 0;
    top: 50%;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    transform-origin: center;
    transform: rotate(-135deg) translate(50%);
    transition: transform .3s ease-in;
}

.mobile-navigation__menu .menu-item-has-children::after {
    top: 15px;
    right: 15px;
}

.mobile-menu-open {
    overflow: hidden;
}

.desktop-navigation__menu .menu-item-has-children:hover::after,
.mobile-navigation__menu .menu-item-has-children.show::after {
    transform: rotate(45deg);
}

.mobile-navigation__menu-list {
    list-style: none;
    padding: 0;
}

.mobile-navigation__menu-list>li>a,
.mobile-navigation__menu .menu-item-has-children ul>li>a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid;
}

.mobile-navigation__menu .menu-item-has-children ul {
    left: 0;
    top: 110%;
    box-shadow: none;
    margin: 0;
    padding-left: 10px;
    list-style: none;
    overflow: hidden;
    position: relative;
    max-height: fit-content;
    height: 0;
}


.mobile-navigation__menu {
    height: calc(100% - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}


.mobile-menu-support.mobile-menu-open::before {
    transform: translateX(0);
}

body:not(.page-child) .page-title {
    color: #fff;
	text-align: center;
}

.front-page-header .page-header-inner {
    display: flex;
    justify-content: center;
    flex-flow: wrap column;
}

.page-header {
    padding: 30px 0;
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: -180px 0px;
    background-repeat: no-repeat;
    background-color: rgb(0 0 0 / 25%);
}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.section-title,
.widget-title {
    color: #FF6602;
}

.card-title {
    color: #1bb3f4;
}

/* ----------------------------------------- */
/* -----------------Footer------------------ */
/* ----------------------------------------- */

.footer {
    background-color: var(--footer-background-color);
    padding: 20px 0;
    margin-top: 50px;
    color: #fff;
}

.footer a {
    display: block;
    color: #fff;
}

.footer a:hover {
    color: #FF6602;
}

.footer h1 {
    color: #FF6602;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li>a {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.footer-bottom {
    background-color: var(--bottom-footer-background-color);
    padding: 15px 0;
    color: #fff;
}

.footer-bottom nav {
    justify-content: flex-end !important;
}

.bottom-footer-menu ul li {
    padding: 0 10px;
}

.bottom-footer-menu a {
    color: var(--white-color);
}

.bottom-footer-menu a:hover {
    color: var(--link-hover-color);
}

.navbar-expand-lg .bottom-footer-menu .navbar-nav {
    flex-direction: row;
}

.social-marketing-bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.social-icons-footer {
    display: flex;
    gap: 20px;
}

.social-content {
    width: 90%;
}

.social-content img {
    width: 250px;
    margin: 10px 0px;
}

#whereairlines-mail {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* header search form */

.search-form {
    display: none;
}

.search-form.show {
    display: block;
}

div#header-search-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 70%;
    z-index: 3;
    margin-top: 20px;
}

body.front-page-php .toggle-search-form {
    display: none;
}


/* Author Page */
body.single-post .author-info-on-blog {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 1px 35px;
    gap: 33px;
}

body.single-post .author-info-on-blog img {
    width: 90px;
    border-radius: 50%;
}

body.single-post .post-author-on-blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.single-post .author-info-on-blog .author-bio {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    float: left;
}

body.single-post .author-info-on-blog .author-bio p {
    font-size: 27px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 15px;
}
.post-meta {
    font-size: 14px;
    color: #FF6602;
    margin-top: 5px;
	margin-bottom: 0;
}

/* ------------Breadcrums styles----------- */

body.page-template-child-page #breadcrumbs {
    justify-content: start;
}
nav#theme-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


nav#theme-breadcrumbs ol li {
    position: relative;
    display: inline-block;
}

nav#theme-breadcrumbs ol li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #cfcfcf;
    border-radius: 50px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%)
}

body:not(.page-child) nav#theme-breadcrumbs ol li a,
body:not(.page-child) #breadcrumbs a {
    color: #FF6602;
    display: block;
    padding-right: 10px;
    text-decoration: none;
}

body:not(.page-child) nav#theme-breadcrumbs ol li span,
body:not(.page-child) #breadcrumbs span {
    color: #fff;
    display: block;
    padding-right: 10px;
}

body:not(.page-child) #breadcrumbs>span {
    color: #FF6602;
}


body #breadcrumbs span,
body #breadcrumbs a {
    display: inline-block !important;
    padding-right: 0 !important;
}

#breadcrumbs {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

body.page-child #breadcrumbs {
    margin-bottom: 15px;
}

/* comment section */
.comment-respond {
    padding: 20px 10px;
}

#commentform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.comment-notes {
    font-size: 14px;
    color: #555;
}

.comment-form p {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#commentform .comment-form-email,
#commentform .comment-form-author {
    width: calc(50% - 15px);
}

#commentform .comment-form-email {
    margin-left: auto;
}

#commentform label {
    font-weight: bold;
    margin-bottom: 4px;
}

#commentform input,
#commentform textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#commentform textarea {
    resize: vertical;
}

.comment-form-cookies-consent {
    flex-direction: row !important;
    align-items: center;
}

.comment-form-cookies-consent input {
    margin-right: 8px;
}

#commentform .submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#commentform .submit:hover {
	background-color: var(--secondary-color);
}
ul.commentlist {
	list-style: none;
	padding: 0;
}
.comment-author.vcard img{
	width: 60px;
	height: auto;
	margin-bottom: 40px;
}
.comment-author.vcard {
    display: flex;
    gap: 25px;
}
ul.commentlist .comment-meta {
    color: var(--secondary-color);
}

/* Enhanced CTA Section */
.travel-cta {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 33px 0;
    margin-bottom: -30px;
    position: relative;
    width: 95%;
    margin: 50px auto;
    text-align: center;
}

.cta-header h3 {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.cta-header p {
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    color: #fff;
    margin-top: 20px;
}

.cta-action a {
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

.travel-cta svg {
    fill: #fff;
    width: 4em;
    padding-bottom: 20px;
}

.cta-action a:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}

/* How It Works */
.how-it-works {
    text-align: center;
    padding: 60px 20px;
    background-color: #FF6602;
    color: white;
    border-radius: 8px;
    margin: auto;
    width: 95%;
}

.howworks-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.howworks-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.step {
    background: white;
    color: #334e6f;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.step:hover {
    transform: translateY(-10px);
}

.step img {
    width: 100px;
    margin-bottom: 15px;
}

.step .step-image svg {
    width: 100px;
}

.step-image {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9f8fb;
    border-radius: 50%;
    padding: 20px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.step h3 a {
    color: #FF6602;
    font-size: 22px;
    text-decoration: none;
}

.step p {
    font-size: 16px;
    opacity: 0.7;
}


/* ----------------------------------------- */
/* --------------Main styles---------------- */
/* ----------------------------------------- */

.page-content {
    margin: 0px auto 50px;
}
.page-content .child-page-sidebar>p{
	background-color: var(--secondary-color) !important;
}
.other-locations>h4 {
    background: var(--secondary-color) !important;
    border-radius: 5px;
}
.has-luminous-vivid-orange-background-color {
    border-radius: 1em 1em 0 0;
    padding: 20px !important;
}

.pill-image-se{
	border-bottom-left-radius: 150px;
	border-top-right-radius: 150px;
}

.card-image-wrapper {
    min-height: 255px;
}
.page-content .section-child-pages .card-img-top{
	height:auto;
	width:100%;
}

.thumbnail-container {
    padding: 10px;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.map-container iframe {
	max-width: 100%;
	width: 100%;
	height: 100%;
	min-height: 300px;
}

body.page-template-child-page .page-content .col-12.col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
}
body.page-template-child-page .page-content .col-12.col-lg-7 ul.airlines-listing {
    float: left;
    list-style: none;
    padding: 0; 
}
body.page-template-child-page .page-content .col-12.col-lg-7 ul.airlines-listing li{
	font-size: 18px;
    border-bottom: 1px dashed var(--primary-color);
	padding-top:5px;
	padding-bottom:5px;
	line-height: 30px;
}
body.page-template-child-page .page-content .col-12.col-lg-7 .list-unstyled b{
	font-size: 18px;
}
.page-content .has-fixed-layout{
	width: 100%;
}
.page-content .has-fixed-layout td{
	border-width: 1px !important;
	padding-top: 5px;
	padding-bottom: 5px;
}


body.single-post .page-content .has-text-align-center {
    border-radius: 1em 1em 0em 0em !important;
    background-color: #FF6602;
    margin-bottom: 10px;
    padding: 10px 0px;
}



/* --------------404 page styles------------- */
.error-page-main {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.error-page {
    text-align: center;
    margin: auto;
    font-family: 'Arial', sans-serif;
}
.error404 #page{
	background: #fff;
}
.error-page-image {
    width: 40%;
}
.error-page h1 {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #333;
}

.error-page p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
}

.error-page .buttons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error-page .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.error-page .btn:hover {
    background-color: var(--secondary-color);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-share a:hover {
    background: var(--secondary-color);
}

.below-banner-image {
    border-radius: 6em;
}

.sidebar {
    overflow: hidden;
}

.sidebar h2,
.sidebar h3 {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 4px 8px;
    font-size: 24px
}

.sidebar ul {
    margin: 0 5px 10px;
}

.sidebar ul>li {
    margin-bottom: 15px;
}

.sidebar ul>li img {
    width: 100%;
    max-height: 150px;
}

.sidebar ul>li>a {
    float: left;
    font-weight: 500;
    margin-bottom: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 12px;
    display: block;
    width: 100%;
}


.airline-alphabet {
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    margin-bottom: 20px;
}

.airline-alphabet::before,
.airline-alphabet::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%)
}

.airline-alphabet::before {
    left: -15px;
}

.airline-alphabet::after {
    right: -15px;
}

body .article-child-page .is-layout-flex {
    flex-flow: column;
}

.article-child-page iframe {
    width: 100%;
}

.schema-faq-section {
    border: 1px solid var(--primary-color);
    margin-bottom: 15px;
}

.schema-faq-section .schema-faq-question {
    background: var(--primary-color);
    display: block;
    padding: 5px 10px;
    color: var(--white-color);
    border-bottom: 2px dashed;
}

#ez-toc-container {
    position: sticky;
    top: 50px;
}


.schema-faq-section .schema-faq-answer {
    margin: 0;
    padding: 10px;
}

@keyframes apparition {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(180px);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-180px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(28px);
    }
}

@keyframes floatReverse2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-28px);
    }
}


@media screen and (min-width: 992px) {
    .mobile-navigation {
        display: none;
    }

    .front-page-header .page-header-inner,
    .search-page-header .page-header-inner {
        max-width: 75%;
        margin: 0 auto;
        text-align: center;
    }

    .menu-item-has-children {
        padding-right: 10px;
    }

    .mobile-menu-support::before {
        display: none;
    }

    .mobile-menu-open {
        overflow: auto;
    }

    .map-container iframe {
        min-height: 300px;
    }

    form#searchform {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
}

@media only screen and (min-width: 1024px) {
    .page-header {
        min-height: 470px;
        background-position: top center;
    }
}


@media only screen and (max-width: 1080px) {

    body.single-post .author-info-on-blog {
        gap: 5px;
    }

    body.single-post .author-info-on-blog .author-bio {
        flex-direction: column;
        align-items: center;
    }

    body.single-post .author-info-on-blog .author-bio .author-name {
        text-align: center;
    }

    #commentform .comment-form-email,
    #commentform .comment-form-author {
        width: 100%;
    }

    .travel-cta {
        width: 90%;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .step {
        width: 90%;
    }

    .step img {
        width: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .footer-bottom nav {
        justify-content: flex-start !important;
    }
}

@media only screen and (min-width: 412px){
	.page-header{
		background-position: top center;
	} 
}