h1, h2, h3, h4, h5, h6{
	font-family: "Montserrat", sans-serif!important
}
.wrapx {
    background-color: #f8f8f8;
    padding: 2em 0;
    border-bottom: solid 1px #ededed;
}
.site-logo {
    height: 50px;
}
.aon_social_links .wp-block-getwid-social-links__link {
    text-decoration: none;
    box-shadow: none;
    color: #54a15d;
    border: 1px solid #54a15d;
    padding: 5px;
    border-radius: 10px;
    /* width: 50px; */
    /* height: 50px; */
    /* line-height: 30px; */
    display: flex;
    /* align-items: center; */
}
.wp-block-getwid-social-links__link svg {
    width: 18px;
    height: 18px;
    fill: #54a15d;
}
.disc__main p {
    padding: 10px 0px;
    margin: 0px;
    color: #fff;
}
.disc__main{
	border-bottom: 1px solid #54a15d;
}
.aon_features_sec {
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
}

.aon_features_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.aon_features_row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.aon_feature_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.aon_feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #138b70; /* Brand Color */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.aon_feature_icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #fff8e6; /* Soft Golden Accent Background */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}
.aon_feature_content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #002248;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.aon_feature_content p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.aon_feature_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.aon_feature_card:hover::before {
    opacity: 1;
}

.aon_feature_card:hover .aon_feature_icon {
    transform: scale(1.05);
    background: #fff0c2;
}
@media (max-width: 991px) {
    .aon_features_row {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Tablet: 2 Columns */
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .aon_features_row {
        grid-template-columns: 1fr; /* Mobile: 1 Column */
        gap: 14px;
    }
    
    .aon_feature_card {
        padding: 18px 16px;
    }
    
    .aon_feature_icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .aon_feature_icon svg {
        width: 28px;
        height: 28px;
    }

    .aon_feature_content h4 {
        font-size: 16px;
    }
    
    .aon_feature_content p {
        font-size: 13px;
    }
}
.pdx_latest_sec {
    padding: 30px 0;
    width: 100%;
}

.pdx_latest_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.pdx_latest_head {
    margin-bottom: 22px;
}
.pdx_section_title {
    font-size: 20px;
    color: #2d373c;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin: 0;
}
.pdx_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #54a15d;
    border-radius: 2px;
}
.pdx_pages_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.pdx_grid_item {
    height: 100%;
}

.pdx_card_inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.pdx_card_overlay_link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.pdx_img_box {
    width: 100%;
    height: 155px;
    overflow: hidden;
    background-color: #f8fafc;
    position: relative;
}

.pdx_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pdx_no_img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.pdx_content_box {
    padding: 14px 16px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.pdx_item_title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    color: #2d373c;
}
.pdx_item_title a {
    color: inherit;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

/* Hover Effects */
.pdx_card_inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.pdx_card_inner:hover .pdx_img_box img {
    transform: scale(1.05);
}

.pdx_card_inner:hover .pdx_item_title a {
    color:#54a15d;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .pdx_pages_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pdx_pages_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .pdx_img_box {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .pdx_pages_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* Section Wrapper */
.p_air_sec {
    padding: 50px 0;
    width: 100%;
    background-color: #ffffff;
}

.p_air_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Area */
.p_air_header {
    text-align: center;
    margin-bottom: 35px;
}
.p_air_subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #54a15d;
    font-size: 15px;
    /* font-weight: 600; */
    margin-bottom: 6px;
}
.p_air_title {
    /* font-size: 38px; */
    /* font-weight: 700; */
    color: #2d373c;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}
.p_air_desc {
    color: #2d373c;
    font-size: 14px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}
.p_air_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* Card Styling */
.p_air_card_item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px; /* Tall vertical cards */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.p_air_card_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    position: relative;
}

/* Image Box */
.p_air_card_img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Default State: Image slightly zoomed-in */
.p_air_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12); /* Start zoomed in */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Gradient Overlay at Bottom */
.p_air_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(2, 44, 34, 0.85) 100%);
    transition: opacity 0.3s ease;
}

/* Card Content Overlay */
.p_air_card_content {
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    z-index: 2;
    color: #ffffff;
    text-align: left;
}
.p_air_card_content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.p_air_card_content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    display: block;
}

/* Hover Effects (Zoom Out Effect) */
.p_air_card_item:hover {
    transform: translateY(-6px);
}

/* Hover State: Image zooms OUT back to normal scale */
.p_air_card_item:hover .p_air_card_img img {
    transform: scale(1); /* Smooth Zoom-Out */
}

.p_air_card_item:hover .p_air_overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(2, 44, 34, 0.92) 100%);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .p_air_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .p_air_card_item {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .p_air_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .p_air_title {
        font-size: 28px;
    }

    .p_air_card_item {
        height: 290px;
        border-radius: 12px;
    }
    
    .p_air_card_content h4 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .p_air_grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .p_air_card_item {
        height: 260px;
    }
}
/* Section Container */
.aod_process_sec {
    padding: 60px 0;
    background-color: #f8fafc;
    width: 100%;
}

.aod_process_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.aod_process_header {
    text-align: center;
    margin-bottom: 50px;
}
.aod_process_badge {
    display: inline-block;
    padding: 5px 14px;
    background-color: #54a15d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    /* text-transform: uppercase; */
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.aod_process_title {
    /* font-size: 34px; */
    /* font-weight: 800; */
    color: #2d373c;
    margin: 0 0 10px 0;
}
.aod_process_subtitle {
    font-size: 14px;
    color: #2d373c;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}
.aod_process_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Individual Card */
.aod_step_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 28px 30px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Big Number Tag */
.aod_step_num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    font-weight: 900;
    color: #f1f5f9;
    transition: color 0.3s ease;
    user-select: none;
}

/* Icon Box */
.aod_step_icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.aod_step_icon svg {
    width: 26px;
    height: 26px;
    fill: #16a34a;
    transition: transform 0.3s ease;
}
.aod_step_title {
    font-size: 20px;
    /* font-weight: 700; */
    color: #2d373c;
    margin: 0 0 5px 0;
}
.aod_step_desc {
    font-size: 14px;
    color: #2d373c;
    line-height: 1.6;
    margin: 0;
}
.aod_step_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
}
.aod_step_card:hover .aod_step_num {
    color: #2d373c;
    opacity: 0.25;
}
.aod_step_card:hover .aod_step_icon {
    background: #54a15d;
}
.aod_step_card:hover .aod_step_icon svg {
    fill: #ffffff;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .aod_process_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .aod_process_title {
        font-size: 28px;
    }

    .aod_step_card {
        padding: 28px 22px;
    }
}
.ao_offices_sec {
    padding: 40px 0;
    width: 100%;
    background-color: #ffffff;
}
.ao_offices_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.ao_offices_header {
    margin-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.ao_section_title {
    font-size: 22px;
    color:#2d373c;
    margin: 0;
    position: relative;
    display: inline-block;
}
.ao_section_title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #54a15d;
    border-radius: 2px;
}
.ao_offices_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card Styling */
.ao_office_card {
    height: 100%;
}

.ao_card_inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Thumbnail Container */
.ao_card_thumb {
    width: 100%;
    height: 155px;
    background-color: #f8fafc;
    overflow: hidden;
    position: relative;
}

.ao_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ao_thumb_icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Card Title Box */
.ao_card_body {
    padding: 14px 16px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
}
.ao_card_title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #2d373c;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.ao_card_inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ao_card_inner:hover .ao_card_thumb img {
    transform: scale(1.06);
}

.ao_card_inner:hover .ao_card_title {
    color:#54a15d;
}

.ao_card_body {
    gap: 10px;
}
.ao_card_marker {
    flex-shrink: 0;
    color: #54a15d;
}
.ao_card_inner:hover .ao_card_marker {
    color: #2d373c;
}

@media (max-width: 1100px) {
    .ao_offices_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ao_offices_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ao_card_thumb {
        height: 135px;
    }

    .ao_card_title {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .ao_offices_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* Section Base */
.aod_blog_sec {
    padding: 50px 0;
    background-color: #f8fafc;
    width: 100%;
}

.aod_blog_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.aod_blog_header {
    text-align: center;
    margin-bottom: 40px;
}
.aod_blog_badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #54a15d;
    color: #fefefe;
    font-size: 12px;
    /* font-weight: 700; */
    border-radius: 20px;
    /* text-transform: uppercase; */
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.aod_blog_title {
    font-size: 28px;
    color:#2d373c;
    margin: 0;
}
.aod_blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card Outer & Link */
.aod_blog_card {
    height: 100%;
}

.aod_blog_card_inner {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Thumbnail Container */
.aod_blog_thumb {
    width: 100%;
    height: 200px;
    background-color: #e2e8f0;
    overflow: hidden;
    position: relative;
}

.aod_blog_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aod_blog_thumb_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Blog Content Area */
.aod_blog_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.aod_blog_date {
    font-size: 14px;
    font-weight: 500;
    color: #54a15d;
    margin-bottom: 8px;
    /* text-transform: uppercase; */
}
.aod_blog_post_title {
    font-size: 16px;
    line-height: 1.4;
    color: #2d373c;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.aod_blog_readmore {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    /* font-weight: 600; */
    color: #54a15d;
    transition: all 0.2s ease;
}
.aod_blog_readmore svg {
    transition: transform 0.2s ease;
}
.aod_blog_card_inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 25px -8px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.aod_blog_card_inner:hover .aod_blog_thumb img {
    transform: scale(1.05);
}
.aod_blog_card_inner:hover .aod_blog_post_title {
    color: #54a15d;
    text-decoration: underline;
}
.aod_blog_card_inner:hover .aod_blog_readmore {
    color:#54a15d;
}

.aod_blog_card_inner:hover .aod_blog_readmore svg {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .aod_blog_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .aod_blog_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .aod_blog_thumb {
        height: 180px;
    }

    .aod_blog_title {
        font-size: 24px;
    }
}
.aon_hero_banner {
    padding: 15px;
    background: #f7f7f7;
    margin-bottom: 20px;
    border-radius: 8px;
}
.aon_main_container {
    margin-bottom: 20px;
}
.aon_sidebar_box, 
.aon_sidebar_box ul li, 
.aon_info_fields, 
.aon_social_media {
    float: left;
    width: 100%;
}

/* Headings & Typography */
.aon_child_wrapper .wp-block-getwid-section h1 {
    color: #000 !important;
    font-size: 26px;
    margin-bottom: 15px;
}
p#breadcrumbs:not(.single p#breadcrumbs) {
    color:#2d373c;
}
#breadcrumbs a {
    color:#ffae0d;
}

/* Custom Field List Styling */
.aon_info_fields ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.aon_info_fields ul li {
    margin: 0 0 8px;
    text-align: left;
    font-weight: 400;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    display: flex;
    align-items: center;
}
.aon_info_fields ul li svg {
	width: 22px;
	height: 22px;
	fill: #54a15d;
}
.aon_info_fields ul li i {
    color:#54a15d;
    font-weight: 700;
}

/* Social Links & Call CTA */
.aon_social_media {
    clear: both;
    margin-top: 10px;
}
.aon_social_links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}
.aon_call_cta {
    clear: both;
    margin-top: 15px;
    float: left;
    width: 100%;
}
.aon_call_cta button.callusnw {
    background:#54a15d;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}
.aon_call_cta button.callusnw:hover {
    background:#192b7d;
}
.aon_call_cta svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    margin-right: 8px;
    vertical-align: middle;
}

/* Featured / Fallback Banner Image Box */
.aon_featured_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Blog Wrapper */
.aod_blog_main_wrapper {
    padding: 30px 0 60px 0;
    width: 100%;
}

/* Banner Styling */
.aod_blog_banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
    color: #ffffff;
}

.aod_blog_title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

/* Yoast Breadcrumb Override */
.aod_breadcrumbs, 
.aod_breadcrumbs a {
    color: #94a3b8 !important;
    font-size: 13.5px;
    text-decoration: none !important;
}

.aod_breadcrumbs a:hover {
    color: #38bdf8 !important;
}

/* 3-Column Grid */
.aod_blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog Post Card */
.aod_blog_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aod_blog_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* Card Media / Thumbnail */
.aod_card_media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.aod_thumb_link {
    display: block;
    width: 100%;
    height: 100%;
}

.aod_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aod_blog_card:hover .aod_card_img {
    transform: scale(1.06);
}

.aod_img_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

/* Card Content Body */
.aod_card_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data (Author & Date) */
.aod_card_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.aod_meta_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color:#54a15d;
    font-weight: 500;
}

.aod_meta_item svg {
    color:#54a15d;
}
.aod_card_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 16px 0;
}
.aod_card_title a {
    color:#2d373c;
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aod_blog_card:hover .aod_card_title a {
    color:#54a15d;
}
.aod_card_footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.aod_read_more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #54a15d;
    text-decoration: none !important;
    transition: gap 0.2s ease;
}
.aod_blog_card:hover .aod_read_more {
    gap: 10px;
}

/* Pagination Styling */
.aod_pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.aod_pagination .page-numbers {
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.aod_pagination .page-numbers.current,
.aod_pagination .page-numbers:hover {
    background-color: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .aod_blog_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .aod_blog_banner {
        padding: 26px 18px;
        margin-bottom: 24px;
    }

    .aod_blog_title {
        font-size: 24px;
    }

    .aod_blog_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .aod_card_media {
        height: 180px;
    }
}
.aod_quicklinks_sec {
    padding: 30px 0;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.aod_quicklinks_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.aod_quicklinks_header {
    margin-bottom: 20px;
}

.aod_quicklinks_title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.aod_quicklinks_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
	float:left
}

.aod_quicklink_anchor {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    gap: 12px;
}
.aod_link_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color:#54a15d;
    background-color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}
.aod_link_text {
    font-size: 14px;
    color:#2d373c;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aod_arrow_icon {
    display: flex;
    align-items: center;
    color: #94a3b8;
    flex-shrink: 0;
}

.aod_quicklink_anchor:hover {
    border-color:#54a15d;
    box-shadow: 0 8px 16px -4px rgba(2, 132, 199, 0.12);
    transform: translateY(-2px);
}

.aod_quicklink_anchor:hover .aod_link_text,
.aod_quicklink_anchor:hover .aod_arrow_icon {
    color:#54a15d;
}

@media (max-width: 992px) {
    .aod_quicklinks_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .aod_quicklinks_list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.aon_featured_box img.aon_banner_img {
    width: 100%;
    min-height: 270px;
    max-height: 270px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.aon_feedback_btn {
    padding: 8px 30px;
    background:#54a15d;
    color: #fff;
    margin-top: 10px;
    text-align: center;
    border-radius: 6px;
    width: 100%;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}
.aon_feedback_btn:hover {
    background:#fff;
	color:#54a15d;
	border:1px solid #54a15d
}
.aon_sidebar_box .aon_sidebar_title {
    text-align: center;
    margin-bottom: 0px;
    font-size: 16px;
    /* font-weight: 700; */
    background:#54a15d;
    padding: 12px 8px;
    color: #fff;
    border-radius: 8px 8px 0px 0px;
}
.aon_sidebar_box ul {
    margin: 0px;
    padding: 10px;
    border: 1px solid #dee2e6;
    float: left;
    width: 100%;
    list-style: none;
    box-sizing: border-box;
}
.aon_sidebar_box ul li {
    text-align: left;
    font-size: 15px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding: 10px;
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
}
.aon_sidebar_box ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.aon_sidebar_thumb_link {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}
.aon_sidebar_box ul li img {
    width: 100%;
    min-height: 140px;
    max-height: 140px;
    object-fit: cover;
    border-radius: 4px;
}
.aon_sidebar_title_link {
    color: #000;
    text-decoration: none;
}
.aon_sidebar_title_link:hover, .aon_inner_content a, .aon_inner_content a:hover {
    color:#54a15d!important;
}

/* Related Posts Bottom Section */
.aon_related_posts {
    margin-top: 30px;
}
.aon_related_posts h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #002248;
}
.aon_related_posts ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.aon_related_posts ul li a {
    color: #138b70;
    text-decoration: none;
}
.aon_related_posts ul li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .aon_hero_banner {
        padding: 10px;
    }
    .aon_child_wrapper .wp-block-getwid-section h1 {
        font-size: 22px;
    }
    .aon_featured_box {
        margin-top: 15px;
		display:none;
    }
    .aon_call_cta button.callusnw {
        width: 100%;
        justify-content: center;
    }
    .aon_info_fields ul li {
        font-size: 14px;
        line-height: 24px;
    }
}
/* Parent Section Fix */
.aon_related_posts {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevents layout break */
}

/* Heading Fix */
.aon_section_header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #002248;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Dynamic Grid Fix (Strict 3 Columns) */
.aon_nearby_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* Prevents horizontal overflow */
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Card Styling */
.aon_office_card {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}
.aon_card_icon {
    width: 32px;
    height: 32px;
    /* background: #ffffff; */
    color: #54a15d;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 10px;
    flex-shrink: 0;
}
.aon_card_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
}
.aon_office_title {
    color: #000000;
    font-size: 13px;
    padding-right: 6px;
}
.aon_card_arrow {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover Effects */
.aon_office_card:hover {
    background: #ffffff;
    border-color: #138b70;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}
.aon_office_card:hover .aon_card_icon {
    background:#54a15d;
    color: #ffffff;
}
.aon_office_card:hover .aon_card_arrow {
    color:#54a15d;
    transform: translateX(3px);
}

/* Responsiveness for Smaller Screens */
@media (max-width: 1199px) {
    .aon_nearby_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns on laptops/tablets */
    }
}

@media (max-width: 767px) {
    .aon_nearby_grid {
        grid-template-columns: repeat(1, minmax(0, 1fr)); /* 1 column on mobile */
    }
}
.custom_fields ul li svg{
	fill: #ffae0d;
	width:18px;
	height:18px;
}
.custom_fields ul li{
	display:flex;
	align-items:center;
}
.custom_fields ul li span {
    width: 100%;
}
.Bannerfrontpage {
    background: linear-gradient(rgb(0 0 0 / 49%), rgb(0 0 0 / 73%)), url(/wp-content/uploads/2026/07/banner.jpg);
    width: 100%;
    color: #fff;
    background-position: 100% 30% !important;
    background-size: cover !important;
    padding: 10% 0% 10% 0%;
}
.content-inner a {
    color: #54a15d!important;
}
.editor-styles-wrapper, .entry-content {
    float: left;
}
.fa, .far, .fas {
    font: normal normal normal 18px / 1 FontAwesome!important;
}
.airlinesofficedesk .margin_bottomX .card-body .card-title{
	text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.PopularDestinations .PopularDestinationsINA .PopularDestinationsINB h4:hover{
	color:#ffae0d
}
#colophon {
    margin-bottom: 50px;
    border-bottom: 1px solid #54a15d;
}
.footer_bottom {
    text-align: center;
}
.footer_bottom ul {
    margin: 0;
    padding: 0;
    margin-right: 15px;
}
.airlinesofficedesk_displayrule{
	width:100%;
	float:left
}
.airlinesofficedesk_displayrule ul{
	margin:0px;
	padding:0px;
}
.airlinesofficedesk_displayrule ul li {
    border: solid 1px #ffae0d;
    padding: 10px;
    min-height: 50px;
    max-height: 50px;
    float: left;
    display: flex;
    align-items: center;
    width: 31%;
    list-style-type: none;
    margin-bottom: 10px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
}
.footer_bottom ul li a {
    font-size: 16px;
    transition: 0.9s;
    color: #fff;
}
.footer_bottom ul li a:hover{
	color:#54a15d
}
.footer_bottom ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    float: right;
}
.footer_bottom ul li {
    list-style-type: none;
    float: left;
    padding:10px!important;
}
.callusnw .content{
	display:flex;
	align-items:center;
	gap:3px;
}
.callusnw svg{
	width:18px;
	height:18px;
	fill:#fff;
	transition:0.3s;
}
.callusnw:hover svg{
	fill:#54a15d;
}
.custom_fields ul li i{
	color:#ffae0d
}
.socialmedia.right_BOXA ul li span{
	color: #ffae0d;
    border-radius: 50%;
    transition: .9s;
    text-align: center;
    border: 1px solid #ffae0d;
    width: 2em;
    height: 2em;
	display:flex;
	align-items:center;
	justify-content:center;
}
.socialmedia.right_BOXA ul li svg{
	width:18px;
	height:18px;
	fill: #ffae0d;
}
.right_BOXA{
	clear:both;
	width:100%;
	float:left
}
.right_BOXA .fb{
	width:100%;
}
.right_BOXA .fb ul{
	margin:0px;
	padding:0px;
}
.right_BOXA .fb ul li {
    list-style-type: none;
    float: left;
    margin: 10px 10px 0px 10px;
}
.right_BOXA .fb ul li i{
	color:#ffae0d;
	border-radius: 50%;
    transition: .9s;
    text-align: center;
    border: 1px solid #ffae0d;
    padding: 16px;
	width: 1em;
    height: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1em;
    font-style: normal;
}
.custom_fields{
	width:100%;
	float:left;
}
.custom_fields ul{
	margin:0px;
	padding:0px;
}
.custom_fields ul li {
    margin: 0 0 5px;
    text-align: left;
    font-weight: 400;
    color: #192b7d;
    border-bottom: 1px dotted #192b7d;
    list-style-type: none;
    font-size: 18px;
}
.card-title{
	margin:0px!important;
	line-height:30px;
}
.airlinesofficedesk_how {
    background: linear-gradient(rgb(0 0 0 / 35%), rgba(0, 0, 0, .7)), url(/wp-content/uploads/2025/07/peralexx.webp);
    clear: both;
    padding: 10px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    clear: both;
    text-align: center;
    align-items: center;
    height: 100%;
    padding: 50px 0px;
	margin: 20px 0 30px;
}
.airlinesofficedesk_hOWA{
	display:block;
	width:100%;
}
.airlinesofficedesk_hOWB {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: -80px;
    background: #8d8d8d00;
    padding: 20px 0px;
}
.airlinesofficedesk_hOWB i {
    width: 80px;
    height: 80px;
    line-height: 82px !important;
    border-radius: 80px 80px 80px 80px;
    font-size: 26px !important;
    background-color: #192b7d;
    color: #ffae0d;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    margin-top: -20px;
}
.airlinesofficedesk_hOWB h4 {
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin: 20px 0px 0px 0px;
    border-bottom: 1px dotted #ffae0d;
    padding-bottom: 20px;
}
.airlinesofficedesk_hOWB p {
    padding: 10px 30px;
    color: #fff;
}
.airlinesofficedesk_how .airlinesofficedesk_hOW{
	width:100%;
	float:left;
}
.airlinesofficedesk_how .airlinesofficedesk_hOW h4 {
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    border-bottom: 2px dotted #ffae0d;
    display: inline-block;
}
.airlinesofficedesk_how .airlinesofficedesk_hOW p {
    width: 50%;
    margin: 0px auto;
    margin-bottom: 50px !important;
    color: #fff;
}
.heading h4{
	text-align: center;
    font-size: 30px;
    line-height: 56px;
    color: #192b7d;
    margin-bottom: 30px;
    font-weight: bold;
}
.airlinesofficedesk_about_inB ul li svg {
    fill: #ffae0d;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB ul{
	margin:0px;
	padding:0px;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB ul li {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #2D2330;
    /* padding-left: 36px; */
    margin-bottom: 3px;
    list-style-type: none;
    vertical-align: middle;
    display: flex;
    line-height: 40px;
	align-items:center;
}
.PopularDestinations{
	width:100%;
	padding:10px;
	float:left;
	margin-top:40px;
}
.PopularDestinations .PopularDestinationsIN{
	width:100%;
	text-align:center
}
.PopularDestinations .PopularDestinationsIN h2{
	font-weight:bold;
	margin:0px;
}
.PopularDestinations .PopularDestinationsIN p{
	width: 50%;
    margin: 0px auto;
    margin-bottom: 40px!important;
}
.PopularDestinations .PopularDestinationsINA{
	width:100%;
	float:left
}
.PopularDestinations .PopularDestinationsINA .PopularDestinationsINB{
	position: relative;
    border-radius: 173px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	text-align:center
}
.PopularDestinations .PopularDestinationsINA .PopularDestinationsINB img {
    border-radius: 173px;
    height:230px;
    width: 230px;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: initial;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border: 2px dotted #ffae0d;
    padding: 4px;
}
.PopularDestinations .PopularDestinationsINA .PopularDestinationsINB h4 {
    font-weight: 600;
    margin-bottom: 4px;
}
.PopularDestinations .PopularDestinationsINA .PopularDestinationsINB p{
	color: #9c9c9c;
    font-size: 17px;
    font-weight: 500;
	border-bottom: 2px dotted #ffae0d;
}
.airlinesofficedesk_hOWB .icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: #192b7d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
	margin-top:-20px;
}
.airlinesofficedesk_hOWB .icon svg {
    width: 26px;
    height: 26px;
    fill: #ffae0d;
    position: relative;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB a.exploreMORe:hover{
	background:#192b7d;
	color:#ffae0d;
	transition:0.9s
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB a.exploreMORe{
	display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color:#ffae0d;
    color:#192b7d;
    font-size:16px;
    font-weight: 700;
    padding: 20px 40px;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    text-align: center;
	margin-top:20px;
	transition:0.9s
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB ul li i{
	color:#ffae0d;
	font-size:28px;
	margin-right:20px;
}
.why_choose_US{
	width: 100%;
    border: 1px solid #ccc;
    float: left;
    margin-top: 40px;
	margin-bottom:20px;
}
.why_choose_US .why_choose_USIN h4 {
    margin-bottom: 0px;
    font-size: 18px;
    color: #20324d;
    font-weight: 600;
}
.airlinesofficedesk_about{
	width: 100%;
    margin-top: 40px;
    background: #fff;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in{
	width:100%;
	float:left
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inA{
	width:100%;
	float:left;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inA img {
    width: 100%;
    min-height: 540px;
    max-height: 540px;
    object-fit: cover;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB {
    width: 100%;
    float: left;
    margin-top: 40px;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB p.text-first {
    font-size: 14px;
    color: #ffae0d;
    line-height: 0.9;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 11px;
	font-weight:700;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB h2 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB h5 {
    color: #ffae0d;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 25px;
    padding-right: 30px;
    font-weight: 700;
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inB  p.secound_text{
	color:#736D75;
    line-height: 1.875;
    font-weight: 500;
}
#savag{
	border:0px;
}
.why_choose_US .why_choose_USIN p {
    margin-bottom: 0px!important;
    font-size: 16px;
    width: 80%;
    margin: 0px auto;
}
.why_choose_US .why_choose_USIN .elementor-icon svg{
	margin-top:40px;
	fill:#ffae0d
}
.why_choose_US .why_choose_USIN {
    width: 100%;
    text-align: center;
    border-right: 1px solid #ccc;
    padding-bottom: 20px;
}
.Bannerfrontpage_in .asl_w_container{
	width:60%;
	margin:0px auto
}
.footer-widgets{
	clear:both
}
.mobile-header .align-center{
	width:100%;
}
.pro_footer {
    width: 100%;
    background: #390879;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    padding-top: 10px;
	clear:both;
	border-top:1px solid #fff;
}
.pro_footer .pro_footerIn {
    color: #fff;
    font-size: 16px;
}
.padx{
	padding-right:0px!important	
}
.airlinesofficedesk_inner_der {
    width: 100%;
    background: #fff;
    /* transform: skewX(-10deg); */
    clip-path: polygon(14% 0%, 100% 0, 100% 100%, 0% 100%);
    float: left;
    /* border-left: 0px solid #fff; */
	
}
.airlinesofficedesk_inner_der img {
    /* padding: 10px; */
    box-shadow: 0 3px 1px -2px rgb(255 255 255 / 93%), 0 2px 2px 0 rgb(255 255 255), 0 1px 5px 0 rgb(0 0 0);
    min-height: 430px;
    max-height: 430px;
    object-fit: cover;
    margin-bottom: 0px;
    /* float: right; */
    width: 100%;
    /* border-left: 0px solid #fff; */
	
}
.promagnifier:hover{
	background: white!important;
}
.themetechmount-static-box-desc {
    color: inherit;
    font-size: 15px;
}
.home-page_reating p{
	color:#fff!important
}
.airlinesofficedesk_ka_header .wp-block-getwid-section h1 {
    margin-bottom: 0px;
    color:#192b7d!important;
}
.Sydney-Posts-Page ul li:first-child, .Sydney-Posts-Page ul li:nth-child(2), .Sydney-Posts-Page ul li:nth-child(3), .Sydney-Posts-Page ul li:nth-child(4), .Sydney-Posts-Page ul li:nth-child(5), .Sydney-Posts-Page ul li:nth-child(6){
	display:none
}
.airlinesofficedesk_homelisting .airlinesofficedesk_homelisting_in {
    margin-bottom: 20px;
    float: left;
    align-items: center;
}
.airlinesofficedesk_homelisting .airlinesofficedesk_homelisting_in img {
    vertical-align: bottom;
    border-radius: 8px;
    min-height: 170px;
    max-height: 170px;
	border-radius:20px;
}
.airlinesofficedesk_homelisting .airlinesofficedesk_homelisting_in .airlinesofficedesk_home_blog .meta-item {
    display: block;
    text-transform: uppercase;
    letter-spacing: .055em;
    margin: 0 0 0.7em;
    font-size: 14px;
    color: #525252;
    font-weight: 400;
}
.airlinesofficedesk_homelisting .airlinesofficedesk_homelisting_in p {
    font-size: 25px;
    text-align: left;
    line-height: 40px;
}
.airlinesofficedesk_bannER_in .author_name img {
    width: auto!important;
    object-fit: cover!important;
    min-height: 40px!important;
    max-height: 40px!important;
    margin-top: 10px!important;
    border-radius: 50%;
    margin-bottom: 0px!important;
}
.airlinesofficedesk_bannER_in .author_name .meta-item {
    /* margin-left: 40px; */
    float: right;
    margin-top: 8px;
}
.single .entry-header .entry-title {
    font-size: 3.375rem;
    line-height: 1.1111111111111112;
    font-weight: 400;
}
.airlinesofficedesk_Bar_side p{
	font-size:24px;
}
.airlinesofficedesk_Bar_side {
    float: left;
    margin-top: 20px;
    width: 100%;
    border: 0px solid #ccc;
    background: #fff;
}
.airlinesofficedesk_Bar_side ul li {
    line-height: 20px;
    text-align: left;
    border: 0px solid #ccc;
    color: #132747bf!important;
    font-size: 15px;
    margin-bottom: 10px;   
    padding: 10px;
    display: flex;
    align-items: center;
}
.images_side_travo {
    width: 50%;
    margin-right: 10px;
}
#secondary ul li img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    padding: 2px;
    border: 1px solid #ccc;
}
.attachment-post-thumbnail {
    margin-bottom: 8px;
}
.airlinesofficedesk_Bar_side ul li a {
    color:#390879;
    width: 80%;
}
.navigation{
	clear:both;
	margin-bottom:10px;
}
.Sydney-Posts-Page ul li {
    width: 49%!important;
    margin: 0px 2px 10px 0px!important;
    border-bottom: 0px!important;
    display: flex;
    vertical-align: middle;
    align-items: center;
}
.airlinesofficedesk_latest_bloInhomephp{
	width:100%;	
}
.airlinesofficedesk_homelisting_inAhomephp .author_name{
	font-size: 14px;
    font-weight: 500;
}
.airlinesofficedesk_homelisting_inAhomephp .author_name i{
	font-style:normal
}
.airlinesofficedesk_homelistinghomephp{
	width:100%;
}
.airlinesofficedesk_homelisting_inAhomephp h4{
	font-size: 21px;
    margin: 0px;
}
.airlinesofficedesk_homelisting_inAhomephp {
    text-align: left;
    padding: 10px;
    border: 1px solid transparent !important;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(100,102,106,.1), 0 1px 4px 0 rgba(100,102,106,.36);
    margin-bottom: 20px;
    min-height: 350px;
    max-height: 350px 
}
.airlinesofficedesk_homelisting_inAhomephp img {
    margin: 0 0 24px 0;
    margin-bottom: 10px !important;
    min-height: 210px;
    max-height: 210px;
    object-fit: cover;
}
#secondary {
    position: sticky;
    top: 0;
}
.airlinesofficedesk_SIDe_Bar ul li a {
    color:#192b7d;
    width: 80%;
}
.airlinesofficedesk_SIDe_Bar ul li a:hover{
	color:#ffae0d
}
.images_side_travo {
    width: 50%;
    margin-right: 10px;
}
#ez-toc-container li, #ez-toc-container ul, #ez-toc-container ul li, div.ez-toc-widget-container, div.ez-toc-widget-container li{
	line-height:40px!important
}
#secondary, #secondary a {
    color: #ffae0d!important;
}
#secondary, #secondary a:hover {
    color: #ffae0d!important;
}
.airlinesofficedesk_parent p.card-title{
	font-size: 20px;
    margin-bottom: 0px;
    padding: 10px;
}
.airlinesofficedesk_parent img{
	width: 100%;
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
}
.airlinesofficedesk_parent{
	padding: 10px;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.07);
    border: 1px solid #ccc;
    text-align: center;
	margin-bottom:20px;
}
.Right_fly{
	width:100%;
}
.Right_fly ul{
	margin:0px;
	padding:0px;
}
.Right_fly ul li {
    list-style-type: none;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
	display: inline-flex;
}
.Right_fly ul li .col-mdXB h4{
	margin:0px;
	font-size:16px;
}
.Right_fly ul li .airlinesofficedesk_home_blog{
	font-size:14px;
}
.Sydney-Posts-Page ul li .imaxw {
    width: 190px!important;
    padding: 0px!important;
     border: 0px solid #ccc!important; 
    float: left;
    object-fit: cover;
    border-radius: 10px!important;
    margin-right: 20px!important;
}
.Right_fly ul li .imaxw {
    width: 50%;
    padding: 4px;
    border: 0px solid #ccc;
    float: left;
    object-fit: cover;
    /* border-radius: 10px; */
    margin-right: 10px;
}
.col-mdXB{
	float:right;
	width:50%;
}
.Right_fly ul li .imaxw img {
    width: 100%;
    float: left;
    object-fit: cover;
    margin-bottom: 0px;
	border-radius:10px;
}
.Sydney-Posts-Page ul li .imaxw img{
	border-radius:10px!important
}
.col-mdXA {
    width: 100%;
}
.col-mdXA h4 {
    font-size: 24px;
    margin: 0px;
    font-weight: 600;
}
.col-mdXA p {
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
}
.col-mdXA .airlinesofficedesk_home_blog .meta-item{
	float:right
}
.col-mdXA .airlinesofficedesk_home_blog {
    width: 100%;
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}
.airlinesofficedesk_latest_blo{
	background:#fff;
	width:100%;
	clear:both;
	margin-bottom:20px;
}
.padd{
	padding:0px!important
}
.airlinesofficedesk_latest_bloI{
	text-align:center
}
.airlinesofficedesk_homelisting_in{
	width: 100%;
}
.airlinesofficedesk_homelisting_in img {
    padding: 5px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    min-height: 250px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.airlinesofficedesk_latest_bloI h4 {
    text-align: center;
    font-size: 30px;
    line-height: 56px;
    color: #192b7d;
    margin-bottom: 30px;
    font-weight: bold;
}
.airlinesofficedesk_latest_bloIn{
	width:100%;
	border-right: 1px dotted #ccc;
    float: left;
	margin-bottom:40px;
}
section.france-sec {
    padding: 40px 0;
    background: #fff;
}
.openx {
    width: 100%;
    float: left;
}
.heading {
    margin-bottom: 30px;
    text-align: center;
}
.margin_bottomX {
    margin-bottom: 2.5rem!important;
    min-height: 210px;
    max-height: 210px;
}
.cardinx {
    transition: .9s;
    background: none!important;
}
.cardins {
    overflow: hidden;
    text-align: center;
    /* border: 1px solid #ccc; */
    /* padding: 10px; */
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    border-radius: 6px;
    width: 100%;
}
.cardins a {
    text-decoration: none;
    color: #000;
}
.cardins img {
    transform-origin: 50% 65%;
    transition: transform 1s,filter 1s ease-in-out;
    filter: brightness(110%);
    min-height: 230px;
    max-height: 230px;
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.card-body {
    bottom: 80px;
    -moz-transform: translate(-50%,90%);
    -ms-transform: translate(-50%,90%);
    -webkit-transform: translate(-50%,90%);
    -o-transform: translate(-50%,90%);
    transform: translate(-50%,90%);
    overflow: hidden;
    background: #fff;
    width: 80%;
    border: 1px solid #ccc;
    text-align: left;
    position: absolute;
    width: 84%;
    background-color: #fff;
    border-radius: 5px;
    left: 50%;
    z-index: 2;
    box-shadow: 0 0 30px rgb(0 0 0/8%);
    margin: 0 auto;
    transition: all .41s ease-in-out;
    padding: 13px 15px;
    font-size: 18px;
}
.margin_bottomX .card-body p.card-title a {
    color: #192b7d;
    text-decoration: none;
}
.margin_bottomX .card-body p.card-title a:hover {
    color: #ffae0d;
    text-decoration: underline;
}
.cardins:hover {
    box-shadow: rgb(17 17 26/10%) 0px 0px 16px;
    transition: transform 1s,filter 1s ease-in-out;
    transform: scale(1.04);
}
.airlinesofficedesk_latest_page {
    width: 100%;
    float: left;
}
.airlinesofficedesk_latest_page ul {
    margin: 0;
    padding: 0;
}
.airlinesofficedesk_latest_page ul li {
    line-height: 25px;
    text-align: left;
    border: 1px dashed #e9e9e9;
    font-size: 18px;
    padding: 10px;
    display: flex;
    vertical-align: middle;
    align-items: center;
    width: 32%;
    float: left;
    margin: 10px 0px 0px 10px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}
.images_side_left {
    width: 60%;
    margin-right: 10px;
}
.our_latest_fly{
	width:100%;
	padding:40px 0px;
}
.airlinesofficedesk_latest_page{
	width:100%;
}
.airlinesofficedesk_latest_page h4{
	text-align:center;
	font-size: 28px;
}
.airlinesofficedesk_latest_page ul li a {
    color: #053d99!important;
    width: 80%;
}
.images_side_left img {
    width: 100%;
    height: 80px;
    padding: 4px;
    border: 1px solid #ccc;
    object-fit: cover;
}
.choose_locationINA{
	width:100%;
	float:left
}
.choose_locationINA p{
	font-size: 20px;
    margin-top: 10px;
}
.choose_locationINA img {
    /* border: 2px solid #E6E7EF; */
    padding: 14px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}
.choose_location span {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 21px;
    color:#390879;
    text-align: center;
}
.choose_location h4 {
    font-size: 30px;
    line-height: 56px;
    color:#390879;
    margin-bottom: 20px;
}
.choose_location{
	padding:10px;
	background:#f8f9ff;
	width:100%;
}
.choose_locationIN{
	width:100%;
	text-align:center;
	padding:40px 0px;
}
.airlinesofficedesk_enjoyON{
	padding:40px 0px;
	width:100%;
}
.airlinesofficedesk_enjoyON h4{
	font-size: 64px;
    line-height: 75px;
	color: #fff;
}
.airlinesofficedesk_enjoyON .enjoy {
    padding: 12px 20px;
    border: 1px solid #390879;
    color: #b8df10;
    background: #390879;
}
.airlinesofficedesk_enjoyON p {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}
.airlinesofficedesk_enjoy {
    width: 100%;
    padding: 10px;
    background-image: linear-gradient(rgb(0 0 0/35%),rgba(0,0,0,.7)),url(https://www.wheredoesitfly.com/wp-content/uploads/2023/09/banner_front.jpg);
    clear: both;
    background-position: 30% 80%;
    background-attachment: fixed;
	background-repeat:no-repeat;
}
.airlinesofficedeskWhychooseusINA {
    width:100%;
	float:left
}
.tm-static-iconbox{
	border-top-color: #fa2964;
}
.tm-static-iconbox {
    display: table;
    height: 100%;
    width: 100%;
}
.tm-box-title h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0px;
}
.tm-box-contentdesc {
    padding-top: 20px;
    z-index: 1;
    position: relative;
}
.tm-ptable-icon-wrapper i {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    display: block;
}
.tm-ptable-icon-wrapper {
    position: absolute;
    top: 24%;
    left: 0;
    right: 0;
    color: #b8df10;
    font-size: 50px;
    line-height: 78px;
}
.tm-box-icon {
    position: relative;
}
.tm-static-iconbox {
    text-align: center;
    position: relative;
	box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
	padding:10px;
}
.airlinesofficedeskWhychooseusIN {
    width: 100%;
    float: left;
    text-align: center;
    padding: 40px 0px;
}
.airlinesofficedeskWhychooseusIN h3{
    font-size: 43px;
    line-height: 56px;
    color:#390879;
	margin-bottom:40px;
}
.airlinesofficedeskWhychooseusIN span{
	font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 21px;
    color:#390879;
	text-align:center
}
.airlinesofficedeskWhychooseus{
	background:#fff;
	width:100%;
	clear:both
}
.airlinesofficedesk_aboutsecINE {
    width: 100%;
    float: left;
    padding: 10px;
    /* text-align: center; */
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    background: #fff;
    margin-top: 10px;
}
.airlinesofficedesk_aboutsecINE p {
    font-size: 18px;
    /* font-weight: bold; */
    text-align: left;
}
.airlinesofficedesk_aboutsecINC{
	width:100%;
	float:left
}
.airlinesofficedesk_aboutsecIND {
    width: 100%;
    float: left;
    padding: 10px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    background: #fff;
}
.airlinesofficedesk_aboutsecIND i{
	float: left;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 16px;
	color:#b8df10
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINB {
    width: 100%;
    float: left;
    padding: 0px 0px 10px 0px;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINB span{
	font-weight: 500;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 21px;
    color: #390879;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINB h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 56px;
    color:#390879;
    clear: both;
    margin-bottom: 0px;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINB p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-top: 15px;
}
.airlinesofficedesk_aboutsec{
	background-color: #f8f9ff;
	padding:10px;
	width:100%;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINA{
	width:100%;
	float:left;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN .airlinesofficedesk_aboutsecINA img{
	border: 2px solid #E6E7EF;
    padding: 14px;
}
.airlinesofficedesk_aboutsec .airlinesofficedesk_aboutsecIN{
	padding:40px 0px;
}
.airlinesofficedesk_aboutsecIN{
	width:100%;
	float:left;
}
.Bannerfrontpage_in {
    text-align: center;
    color: #fff;
    width: 85%;
    margin: 0px auto;
    padding-left: 20px;
    padding-right: 20px;
}
.Bannerfrontpage_in h1 {
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 36px !important;
    margin-bottom: 0px;
}
.Bannerfrontpage_in .asl_w_container{
	margin-top:20px;
}
.Bannerfrontpage_in a {
    padding: 15px;
    background: #390879;
    color: #b8df10!important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
}
.Bannerfrontpage_in p{
	color:#fff;
	font-size:16px;
}
.Bannerfrontpage_in .promagnifier .innericon{
	background: #54a15d !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: -10px;
    margin-left: -13px;
}

.Bannerfrontpage_in span {
    color: #b8df10;
    /* font-weight: 700; */
    font-size: 18px;
    background: #390879;
    padding: 10px;
}
.airlinesofficedesk_bannER_in {
    float: left;
    width: 100%;
    margin-top: 0px;
}
.airlinesofficedesk_main_blog_page .content-inner {
    text-align: left;
    padding: 24px 24px 16px;
    border: 1px solid transparent!important;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(100,102,106,.1), 0 1px 4px 0 rgba(100,102,106,.36);
}
.airlinesofficedesk_main_blog_page .entry-thumb{
	margin-bottom:10px!important;
}
.airlinesofficedesk_main_blog_page .entry-header .title-post{
	font-size:20px;
}
.airlinesofficedesk_main_blog_page .entry-header{
	margin-bottom:10px!important
}
.airlinesofficedesk_bannER_in .entry-header img{
	margin-bottom:10px;
}
.latest_poatOME .latest_postIN .airlinesofficedesk_homelisting .card-body{
	min-height: auto;
    max-height: 100%;
}
.h-callh-ic{
	display:none
}
.h-callh-ic i{
	color:#EE4C50
}
.go-top.position-right{
	display:none
}
#primary .site-main .content-inner .entry-content p a{
	color:#EE4C50
}
.whychooseusINR img{
	margin-top:80px;
}
.airlinesofficedeskX_releated_post_inn ul li a:hover{
	color:#ffae0d
}
.airlinesofficedeskX_releated_post_inn ul li a {
    color:#192b7d;
}
.airlinesofficedeskX_releated_post_inn ul li {
    float: left;
    width: 30%;
    overflow: hidden;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    transition: 0.9s;
    padding: 10px;
    min-height: 100px;
    max-height: 100px;
    border: 1px solid #ccc;
    text-align: left;
}
.airlinesofficedeskX_releated_post_inn{
	width: 100%;
    float: left;
    margin-bottom: 20px
}
.airlinesofficedeskX_releated_post_inn h4 {
    padding: 10px;
    text-align: center;
    width: 100%;
    color: #192b7d;
    /* margin-bottom: 30px; */
    font-weight: bold;
    font-size: 30px;
}
.airlinesofficedeskX_releated_post_inn ul {
    margin: 0;
    padding: 0;
}
a:hover{
	text-decoration:underline
}
#page-content .NewWebsite .NewWebsiteA .entry-content a{
	color:#ffae0d
}
#page-content .NewWebsite .NewWebsiteA .entry-content a:hover{
	text-decoration:underline;
	color:#ffae0d
}
body{
	overflow-x:hidden
}
.wpj-jtoc.--jtoc-theme-basic-light .wpj-jtoc--header .wpj-jtoc--header-main .wpj-jtoc--title span.wpj-jtoc--title-label {
    display: block;
    width: 100%;
    font-size: 18px;
    color:#192b7d;
    font-weight: 700;
}
.wpj-jtoc--item .wpj-jtoc--item-content>a:hover{
	color:#ffae0d
}
.wpj-jtoc--item .wpj-jtoc--item-content>a{
	color:#192b7d
}
.wpj-jtoc--item .wpj-jtoc--item-content>a:before {
    color:#ffae0d;
}
.wpj-jtoc--nav>.wpj-jtoc--items li{
	font-size:16px;
	line-height:30px;
}
.bottom-header-row #mainnav ul ul li, .main-header #mainnav ul ul li{
	background:#fff!important
}
#mainnav .sub-menu li a{
	color:#54a15d!important;
	font-weight:400;
}
.airlinesofficedesk_Airlines {
    width: 100%;
    float: left;
}
.airlinesofficedeske_Airlines ul {
    margin: 0;
    padding: 0;
}
.airlinesofficedesk_Airlines ul li {
    text-decoration: none;
    float: left;
    font-size: 18px;
    margin: 5px;
    margin-bottom: 5px;
    border: 1px solid #47405D;
    list-style-type: none;
    margin-bottom: 10px;
    border-radius: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.9s;
    width: auto;
    text-align: center;
}
.airlinesofficedesk_Airlines ul li a {
    text-decoration: none;
    color: #47405D;
    padding: 20px;
    line-height: 50px;
}
.airlinesofficedesk_Airlines ul li a:hover {
    color: #ffae0d;
    text-decoration: none;
}
.airlinesofficedesk_Airlines ul li:hover {
    border: 1px solid #ffae0d;
}
.fa-clock:before {
    content: "\f017";
}
.callusnw:hover, .callusnw:focus, .callusnw:active {
    background: #ffffff !important;
    color: #54a15d !important;
    border: 1px solid #54a15d !important;
}
.wp-block-getwid-section h1{
	margin-bottom:0px;
	font-size:36px!important
}
.airlinesofficedesk_bannER_in .entry-header {
    margin-bottom: 0px!important;
}
.airlinesofficedesk_bannER_in h1 {
	margin-top: 0;
    margin-bottom: 10px;
    font-size: 36px !important;
    line-height: 1.1111111111111112;
}
.main-header .sydney-svg-icon svg, .main-header .dropdown-symbol .sydney-svg-icon svg {
    fill:#54a15d;
}
.site-footer {
    background-color: #47405d;  
}
.footercall button .content svg path:nth-child(2) {
    -webkit-animation: header-phone 1s infinite cubic-bezier(.1,.57,.5,1);
    animation: header-phone 1s infinite cubic-bezier(.1,.57,.5,1)
}

.footercall button .content svg path:nth-child(3) {
    -webkit-animation: header-phone2 1s infinite cubic-bezier(.1,.57,.5,1);
    animation: header-phone2 1s infinite cubic-bezier(.1,.57,.5,1)
}

@-webkit-keyframes header-phone {
    0%,30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@keyframes header-phone {
    0%,30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    70%,90% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    70%,90% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}
.footercall {
    position: fixed;
    width: 100%;
    line-height: 50px;
    height: 50px!important;
    bottom: 0;
    text-align: center;
    z-index: 999;
}
.footercall button, .footercall button:hover {
    width: 100%;
    background:#54a15d!important;
    border: 0;
}
.footercall button .content {
    color: #fff;
    font-size: 24px;
	text-transform:capitalize
}
.footercall button .content svg {
    width: 30px;
    height: 25px;
    float: none;
    margin-bottom: -4px;
    margin-right: 10px;
}
.footercall button .content svg path {
    fill:#fff;
}
#masthead-mobile svg {
    fill: #192b7d;
}
.airlinesofficedesk_bannER_in p#breadcrumbs {
    margin-top: 0px;
    margin-bottom: 0px;
}
.site-footer{
	clear:both
}
.airlinesofficedesk_ka_header {
    background:#fff;
    padding: 0px;
    margin: 0px auto;
    display: block;
    width: 100%;
    overflow: visible;
    transform: translate(0px, 0px);
    background-position: 80% 80%;
	border-bottom: 1px solid #ccc;
}
.wp-block-getwid-section {
    padding:0px;
    border-bottom: 0 solid #e1e1e1;
    color: #053d99!important;
    width: 100%;
    font-weight: 500;
    margin: 0 auto;
}
.writea {
    font-size: 16px;
    float: left;
    text-decoration: none;
    border: 1px solid #b8df10;
    padding: 4px 20px;
    margin: 20px 0;
    opacity: 1;
    transition: 0.4s all;
    color: #390879;
    text-align: center;
    border-radius: 10px;
    background: #b8df10;
    clear: both;
}
.writea:hover{
	background:#390879;
	border: 1px solid #390879;
	color:#b8df10;
}
.home-page_reating {
    margin-left:0px;
}
.home-page_reating p {
    margin-bottom: 5px;
}
.header_NOTE {
    clear: both;
    margin-top: 10px;
    float: left;
    margin-left:0px;
    line-height: 40px;
}
.callusnw {
    font-size: 16px;
    float: left;
    border: 1px solid #192b7d;
    padding: 6px;
    margin: 10px 0;
    opacity: 1;
    transition: 0.4s all;
    border-radius: 10px;
    text-transform: capitalize;
	color:#fff;
}
.airlinesofficedesk_SIDe_Bar {
    padding: 20px 0px 25px 0px;
}
.airlinesofficedesk_SIDe_Bar p {
    text-align: left;
    margin-bottom: 14px;
    font-size: 18px;
    color: #390879;
    font-weight: 700;
}
.airlinesofficedesk_SIDe_Bar ul li {
    text-align: left;
    font-size: 18px;
    width: 100%;
    padding: 0px;
    float: left;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding: 10px;
    font-weight: 500;
    align-items: center;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}
.pad {
    padding-right: 0px;
}
.airlinesofficedesk_SIDe_Bar img {
    width: 100%;
}
.top_reviewXAC{
	float:left;
	width:100%;
}
.top_review .top_review_imA .card-body{
	float:left
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body .airlinesofficedesk_home_blog .meta-item{
	color:#EE4C50
}
.top_reviewXAC:first-child{
	display:none!important
}
.latest_poatOME{
	width:100%;
	margin-top:40px;
}
div.asl_w .probox .promagnifier .innericon svg {
    fill:#fff!important;
}
.inner_head .inner_headIN p{
	color:#fff;
}
p{
	color:#000
}
.top_reviewX{
	border-bottom: 1px dotted #ccc;
    width: 100%;
    float: left;
    padding-bottom: 20px;
}
.top_review .top_review_im {
    clear: both;
    text-align: center;
}
.top_review .top_review_imA i {
    color: #EE4C50;
}
.top_review .top_review_imA {
    clear: both;
    border-bottom: 1px dotted #EE4C50;
    margin-bottom: 10px;
    padding-bottom: 10px;
    float: left;
}
.top_review .top_review_imA h4 {
    text-align: left;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}
.top_review .top_review_imA p {
    font-size: 16px;
    margin-bottom: 5px;
}
.top_review .top_review_im img{
	margin-bottom: 20px;
    border: 6px solid #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,0.09);
}
.top_review{
	width:100%;
	clear:both
}
.top_review h4 {
    text-align: center;
    margin-bottom: 30px;
    color:#47405D;
    font-size: 25px;
}
.top_review h4 span{
	color: #EE4C50;
}
.latest_poatOME .latest_postIN{
	clear:both;
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body a.read_MORE {
    transition: 0.9s;
    padding: 10px;
    background: #47405D;
    color: #fff;
    border-radius: 10px;
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body a.read_MORE:hover{
	margin-left:10px;
	transition:0.9s
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body p {
    font-size: 16px;
    line-height: 35px;
    padding: 10px;
    margin-bottom: 0px;
    text-align: center;
}
.latest_poatOME .latest_postIN .margin_bottomX {
    margin-bottom: 6.5rem!important;
}
.latest_poatOME .latest_postIN .cardins {
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ccc;
    padding: 2px;
}
.latest_poatOME .latest_postIN .cardinx {
    transition: 0.9s;
    background: none!important;
}
.latest_poatOME .latest_postIN .cardins img {
    transform-origin: 50% 65%;
    transition: transform 1s,filter 1s ease-in-out;
    filter: brightness(110%);
    min-height: 300px;
    max-height: 300px;
    width: 100%;
    height: 300px;
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body {
    position: absolute;
    left: 50%;
    bottom: 80px;
    -moz-transform: translate(-50%,40%);
    -ms-transform: translate(-50%,40%);
    -webkit-transform: translate(-50%,40%);
    -o-transform: translate(-50%,40%);
    transform: translate(-50%,40%);
    overflow: hidden;
    background: #fff;
    width: 80%;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #FFFFFF;
    padding: 30px 20px 30px 20px;
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.07);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #EAEAEA;
    border-radius: 0px 0px 0px 0px;
    margin-bottom: 40px;
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body h4.card-title {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 700;
}
.latest_poatOME .latest_postIN .margin_bottomX .card-body a.read_MORE i {
    color:#EE4C50;
    transition: 0.9s;
}
.latest_poatOME .latest_postIN h4{
	text-align: center;
    margin-bottom: 30px;
    color: #47405D;
    font-size: 25px;
} 
.latest_poatOME .latest_postIN h4 span{
	color: #EE4C50;
}
#latest_Turkish .latest_paesIn .margin_bottomX {
    margin-bottom: 1.5rem!important;
}
#latest_Turkish .latest_paesIn .cardins img {
    min-height: 250px;
    max-height: 250px;
    height: 250px;
}
section.france-sec .openx .heading h4 {
    text-align: center;
    font-size: 30px;
    line-height: 56px;
    color: #060c17;
    margin-bottom: 20px;
}
section.france-sec .openx .heading h4 span{
	color: #EE4C50;
}
section.france-sec {
    padding: 10px 0;
	clear:both
}
.top_air_off a .wrapper h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 15px;
    margin: 0;
	transition: 0.9s;
}
.top_air_off a .wrapper h2:hover {
    margin-bottom: 10px;
    transition: 0.9s;
}
.top_air_off a {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.top_air_off a img {
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    height: 100%;
    width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
}
.top_air_off a .wrapper {
    width: 100%;
    background: transparent;
    background: -webkit-linear-gradient(top,transparent,#000);
    background: linear-gradient(to bottom,transparent,#000);
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    padding: 100px 20px 20px;
}
.latest_paes .latest_paesIn .margin_bottomX .card-body a.read_MORE i{
	color: #EE4C50;
	transition:0.9s;
	font-size: 12px
}
.small-gutters {
    padding-left: 10px!important;
    padding-right: 10px!important;
}
.top_air_off {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #000;
    padding: 4px;
    box-shadow: 0 8px 20px 1px rgba(0,0,0,.05);
    border: 1px solid #ddd;
    transition: 0.9s;
}
.latest_paes .latest_paesIn .margin_bottomX .card-body a.read_MORE i:hover{
	margin-left:10px;
	transition:0.9s
}
.latest_paes .latest_paesIn .margin_bottomX .card-body p {
    font-size: 14px;
    line-height: 30px;
    padding: 10px;
    margin-bottom: 0px;
    text-align: center;
}
.latest_paes .latest_paesIn .margin_bottomX {
    margin-bottom: 1.5rem!important;
}
.latest_paes .latest_paesIn .margin_bottomX .card-body h4.card-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 100;
	text-align:left
}
.latest_paes .latest_paesIn .margin_bottomX .card-body {
    position: absolute;
    left: 50%;
    bottom: 80px;
    -moz-transform: translate(-50%,100%);
    -ms-transform: translate(-50%,100%);
    -webkit-transform: translate(-50%,100%);
    -o-transform: translate(-50%,100%);
    transform: translate(-50%,100%);
    overflow: hidden;
    background: #fff;
    width: 80%;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #FFFFFF; 
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.07);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #EAEAEA;
    border-radius: 0px 0px 0px 0px;
	margin-bottom: 40px;
}
.latest_paes .latest_paesIn .cardins img {
    transform-origin: 50% 65%;
    transition: transform 1s,filter 1s ease-in-out;
    filter: brightness(110%);
    min-height: 250px;
    max-height: 250px;
    width: 100%;
    height: 250px;
	object-fit: cover;
}
.latest_paes .latest_paesIn .cardinx {
    transition: 0.9s;
    background: none!important;
}
.latest_paes .latest_paesIn .cardins {
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ccc;
    padding: 2px;
}
.inner_head .inner_headINX .inner_headINXA:hover{
	transition:0.9s;
	text-decoration:underline
}
.latest_paes .latest_paesIn ul{
	margin:0px;
	padding:0px;
}
.latest_paes .latest_paesIn ul li{
	list-style-type:none;
}
.latest_paes {
    clear: both;
    width: 100%;
}
.latest_paes .latest_paesIn{
	clear:both;
}
.latest_paes .latest_paesIn h4 {
    text-align: center;
    margin-bottom: 30px;
    color: #47405D;
    font-size: 25px;
}
.latest_paes .latest_paesIn h4 span{
	color: #EE4C50;
}
.NewWebsiteA .entry-header{
	margin-bottom:0px!important;
}
.whychooseus .whychooseusIN{
	clear:both
}
.whychooseus .whychooseusIN .whychooseusINA{
	width:100%;
	clear:both
}
.whychooseus .whychooseusIN .whychooseusINA .whychooseusINAB{
	clear:both;
	width:100%;
}
.whychooseus .whychooseusIN .whychooseusINA .whychooseusINAB p {
    font-weight: normal;
    font-size: 16px;
}
.whychooseus .whychooseusIN .whychooseusINA .whychooseusINAB h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 35px;
}
.whychooseus .whychooseusIN .whychooseusINA .whychooseusINAB i {
    color: #EE4C50;
    float: left;
    border: 1px solid #EE4C50;
    padding: 10px;
    font-weight: normal;
    font-size: inherit;
    margin-right: 15px;
}
.whychooseus .whychooseusIN h2 span {
    color:#EE4C50;
}
.whychooseus .whychooseusIN h2{
	text-align:left;
	margin-bottom:10px;
	color:#47405D
}
.whychooseus .whychooseusIN i {
    text-align: left;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    float: left;
	color:#47405D
}
.whychooseus .whychooseusIN p {
    clear: both;
    font-size: 16px; 
}
.whychooseus {
    padding: 50px 0;
    background: #fff;
}
.about_pg_cont h4 {
    margin: 0 0 22px 0;
    font-size: 25px; 
    color:#47405D;
    position: relative;
    display: inline-block;
}
.about_pg_cont span {
    color: #EE4C50;
}
.about_pg_cont h4:before {
    content: " ";
    position: absolute;
    top: 37px;
    left: 0;
    background-color: #EE4C50;
    width: 64px;
    height: 3px;
}
.about_pg_cont h4 i {
    position: absolute;
    left: 45px;
    top: 28px;
    transform: rotate(0deg);
    color: #f39716;
    font-size: 19px;
}
.about_front{
	width:100%;
	clear:both;
}
.about_front .about_pg-area {
    padding: 82px 0px 10px 0px;
    position: relative;
    background: #ffffff;
}
.about_pg_img img {
    position: relative;
    left: 30px;
    bottom: 30px;
    border-radius: 10px;
}
.about_pg_cont {
    position: relative;
    left: 30px;
    bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 12px 8px 13px;
    margin: 0px 0px 0px 20px;
    box-shadow: 1px 2px 2px #ccc;
	top:40px;
}
.about_pg_img {
    box-shadow: 0px 0px 5px #625e5e !important;
    background-color: #fff;
    border-radius: 16px;
}
.wp-block-yoast-faq-block .schema-faq-section {
    border: 1px solid #d1dfee;
    margin-bottom: 20px;
    background-color: #fdfeff;
}
.inner_head .inner_headINX .inner_headINXA .fa {
    color: #EE4C50!important;
    transform: rotate(45deg);
}
.inner_head .inner_headINX .inner_headINXA h4 {
    color: #fff;
    margin: 4px;
    font-size: 16px;
}
.inner_head .inner_headINX .inner_headINXA i {
    font-size: 40px;
}
.inner_head .inner_headINX .inner_headINXA{
	width: 100%;
    margin-top: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    padding: 7px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-box-shadow: 0px 0px 16px 0px rgb(2 2 2 / 10%);
    box-shadow: 0px 0px 16px 0px rgb(2 2 2 / 10%);
    transition: 0.9s;
    color: #fff;
    border: 1px solid #5c5c5c;
}
.inner_head .inner_headINX {
    width: 70%;
    margin: 0px auto;
    margin-top: 20px;
}
.inner_head .inner_headIN h1 {
    color: #fff;
    width: 100%;
    margin: 0px auto;
    line-height: normal;
}
.inner_head .inner_headIN{
	width:100%;
	text-align:center;
	color:#fff;
}
#ajaxsearchlite1 .probox, div.asl_w .probox {
    border: none!important;
}
.inner_head .inner_headIN .asl_w_container {
    width: 46%!important;
    margin: 0px auto;
}
.wp-block-yoast-faq-block .schema-faq-question {
    border-bottom: 1px solid #ccc;
}
.wp-block-yoast-faq-block .schema-faq-question {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding: 17px 56px 17px 12px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
	color:#2d373c;
}
.aon_section_header h4 i{
	display:none
}
.wp-block-yoast-faq-block p.schema-faq-answer {
    display: block!important;
    padding: 12px!important;
	margin-bottom:0px;
}
.wp-block-yoast-faq-block p.schema-faq-answer {
    line-height: 30px!important;
}
#content .content-wrapper #primary .post-wrap .posts-layout{
	margin-top:10px;
}
.pages_catogry .pages_catogryIN h1 {
    font-size: 36px;
    line-height: 1.7em;
    color: #13436b;
	text-align:center
}
.fixradar_Home_in_right h4 {
    font-weight: bold;
    line-height: 1.4em;
    margin-bottom: 10px;
    float: left;
    margin-top: 0px;
}
.fixradar_Home_in_right .Stories {
    display: flex;
    color: #0074d9;
    margin-left: auto;
    font-size: 13px;
    font-weight: 900;
    float: right;
    margin-top: 0px;
}
.airlinesupdates_headerImg img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    width: 100%;
    border-radius: 4px;
}
.ez-toc-title-container p.ez-toc-title{
	font-size: 1.2rem;
    margin: 0px;
    color: #13436b;
    text-align: left;
    font-weight: 600;
}
.entry-content p{
	font-size:16px;
}
.airlinesupdates_bannER_in{
	padding-top:10px;
}
.airlinesofficedesk_bannER_in #breadcrumbs a{
	color:#54a15d!important;
}
.airlinesofficedesk_bannER_in #breadcrumbs {
	font-weight:normal
}
.sticky-header.is-sticky, .sticky-header.sticky-always{
	border-bottom:1px solid #ccc;
}
.single .entry-header{
	margin-bottom:10px!important
}
.images_side_travo {
    width: 50%;
    margin-right: 10px;
}
.sider-bar ul{
	margin:0px;
	padding:0px;
}
.sider-bar ul li a {
    color: #005fb9;
    width: 80%;
}
.sider-bar ul li {
    line-height: 20px;
    text-align: left;
    border: 0 solid #ccc;
    color: #132747bf!important;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
}
.sider-bar p {
    font-size: 1.2rem;
    padding: 11.6px;
    margin: 0 0 1.5rem 0;
    color: #13436b;
    text-align: left;
    font-weight: 600;
}
.sider-bar ul li a {
    color:#13436b!important;
    width: 80%;
}
#primary .post-wrap .content-inner .post-fetured_image img {
    width: 100%;
    object-fit: cover;
    min-height: 350px;
    max-height: 350px;
    margin-top: 20px;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .status-publish:first-child{
	display:none!important
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .status-publish {
    clear: both;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin{
	float:left;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .pages_catogryupdatesinimg{
	padding: 2px;
    border: 1px solid #ccc;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .pages_catogryupdatesinimg img{
	width: 100%;
    height: 100%;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .pages_catogryupdatesintxt{
	padding-left: 10px;
    padding-right: 0px;
}
.pages_catogryupdate .pages_catogryupdates .pages_catogryupdatesin .pages_catogryupdatesintxt h4 {
    margin: 0px;
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: bold;
}
.pages_catogry .pages_catogryIN .pages_catogryx .entry-header img{
	min-height:200px;
	max-height:200px;
	height:200px;
	width:100%;
}
.pages_catogry .pages_catogryIN .pages_catogryx .entry-header h4 {
    font-size: 19px;
    color:#13436b;
    margin: 10px 0px 5px 0px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}
.pages_catogryx{
	padding:10px;
}
.pages_catogryx h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4em;
    margin-bottom: 10px;
    float: left;
    margin-top: 0px;
}
.pages_catogryx .pet {
    display: flex;
    color: #0074d9;
    margin-left: auto;
    font-size: 13px;
    font-weight: 900;
    float: right;
    margin-top: 10px;
}
section.pages_catogry{
    margin-top: 10px;
    margin-bottom: 0px;
	background:#fff;
}
section.blog {
    background: #f5f9ff;
    padding: 30px 0px 30px 0px;
}
.fixradar_homelisting_in .fixradar_homelisting_inimage img {
    width: 100%;
    height: 51px;
}
.fixradar_homelisting_intitle h5 a{
	color: #0074d9;
}
.blog .airlinesupdates_homelisting .fixradar_homelisting_in {
    padding: 1px;
    float: left;
    display: flex;
}
.fixradar_homelisting_intitle h5 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin: 0px;
}
.fixradar_homelisting_inimage {
    padding: 2px;
    border: 1px solid #ccc;
}
.fixradar_homelisting_intitle {
    padding-left: 10px;
    padding-right: 0px;
}
.fixradar_homelisting_intitle h4{
	margin: 0px;
    font-size: 14px;
	padding-bottom: 8px;
}
.blog .airlinesupdates_homelisting{
	padding:10px;
}
.blog .airlinesupdates_homelisting h2{
	font-size: 24px;
    line-height: 1.7em;
	color:#13436b;
    font-weight: bold;
}
.sticky-header.is-sticky, .sticky-header.sticky-always{
	background:#fff;
	padding:0px 0px;
}
#mainnav ul li a, #mainnav ul li::before{
	color:#2d373c!important
}
#mainnav ul li a:hover, .main-header #mainnav .menu > li > a:hover {
    color:#54a15d!important;
	text-decoration:underline
}
.airlinesupdates_home_in .meta-post .posted-on a{
	color:#fff;
}
.fixradar_Home_in_right{
	background-color: white;
    border-radius: 6px;
    width: 100%;
    padding: 16px 21px;
    float:left
}
.fixradar_Home_in_right .airlinesupdates_headerImg_right {
    width: 60%;
    float: left;
    text-align: left;
    padding-left: 10px;
}
.airlinesupdates_headerImg_right a{
	color:#00213a;
}
.fixradar_Home_in_right .entry-header {
    clear: both;
    width: 100%;
    margin-bottom: 15px!important;
    float: left;
}
.airlinesupdates_home{
	width:100%;
	float:left;
	padding:10px;
}
.airlinesupdates_home_in{
	padding-top:300px;
}
.airlinesupdates_home_in p a{
	color:#fff;
}
.airlinesupdates_home_in p {
    font-size: 36px;
    font-weight: 700;
}
.inner_head {
    text-align: left;
    width: 100%;
}
.inner_head {
    background: linear-gradient(rgb(0 0 0 / 11%),rgb(0 0 0 / 70%)),url(https://allairlinesoffice.com/wp-content/uploads/2023/07/banner.jpg);
    width: 100%;
    color: #fff;
    background-position: 100% 40%!important;
    background-size: cover!important;
    padding: 10% 0% 10% 0%;
    margin-bottom: 20px;
}
.airlinesupdates_headerImg {
    width: 25%;
    float: left;
}
.fixradar_Home_in_right .airlinesupdates_headerImg_right .entry-title {
    font-size: 21px;
    margin-bottom: 0px;
    clear: both;
    width: 100%;
}
.fixradar_Home_in_right .airlinesupdates_headerImg_right .entry-title a{
	color:#13436b;
}
:root{
	--sydney-headings-color: #00102E;
	--sydney-dark-background: #00102E;
	--sydney-grey-color: #737C8C;
	--sydney-text-color: #233452;
	--sydney-light-background: #F4F5F7;
	--sydney-button-background: #d65050;
	--sydney-border-color: #dbdbdb}
.valign{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center
}
.site-main .comment-navigation,.site-main .posts-navigation,.site-main .post-navigation{
	margin:0 0 1.5em;
	overflow:hidden
}
.comment-navigation .nav-previous,.posts-navigation .nav-previous{
	float:left;
	width:50%
}
.comment-navigation .nav-next,.posts-navigation .nav-next{
	float:right;
	text-align:right;
	width:50%
}
.posts-navigation .nav-previous{
	padding-left:15px
}
.posts-navigation .nav-next{
	padding-right:15px
}
.post-navigation .nav-links{
	background-color:#fff;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:0 0 60px;
	position:relative;
	border-top:1px solid var(--sydney-border-color)
}
.post-navigation .nav-next,.post-navigation .nav-previous{
	width:50%
}
.post-navigation .nav-next{
	text-align:right
}
.post-navigation a{
	color:#390879;
	font-weight:bold
}
.post-navigation .nav-previous:hover span,.post-navigation .nav-next:hover span{
	color:var(--sydney-text-color)
}
.post-navigation span{
	color:#c7c7c7;
	-webkit-transition:color 0.3s;
	transition:color 0.3s
}
.post-navigation .nav-previous,.post-navigation .nav-next{
	padding:30px 60px
}
.post-navigation .nav-previous span{
	margin-right:10px
}
.post-navigation .nav-previous{
	border-right:1px solid var(--sydney-border-color)
}
.post-navigation .nav-next span{
	margin-left:10px
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers,.nav-links .page-numbers{
	background-color:#b8df10;
	width:60px;
	height:60px;
	line-height:60px;
	text-align:center;
	display:inline-block;
	color:var(--sydney-text-color);
	margin-right:5px
}
.page-numbers.dots{
	background:transparent
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover,.nav-links .page-numbers:not(.dots):hover,.nav-links .page-numbers.current{
	background-color:#390879;
	color:#fff
}
.screen-reader-text{
	clip:rect(1px, 1px, 1px, 1px);
	position:absolute !important;
	height:1px;
	width:1px;
	overflow:hidden
}
.screen-reader-text:hover,.screen-reader-text:active,.screen-reader-text:focus{
	background-color:#f1f1f1;
	border-radius:3px;
	-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);
	box-shadow:0 0 2px 2px rgba(0,0,0,0.6);
	clip:auto !important;
	color:#21759b;
	display:block;
	font-size:14px;
	font-size:0.875rem;
	font-weight:bold;
	height:auto;
	left:5px;
	line-height:normal;
	padding:15px 23px 14px;
	text-decoration:none;
	top:5px;
	width:auto;
	z-index:100000
}
.alignleft{
	display:inline;
	float:left;
	margin-right:1.5em
}
.alignright{
	display:inline;
	float:right;
	margin-left:1.5em
}
.aligncenter{
	clear:both;
	display:block;
	margin-left:auto;
	margin-right:auto
}
.widget select{
	max-width:100%
}
.widget_search .search-submit{
	display:none
}
.sticky{
	display:block
}
.updated:not(.published){
	display:none
}
.single .entry-header,.page .entry-header{
	margin-bottom:30px
}
.entry-footer{
	clear:both;
	margin-top:30px
}
.page-links{
	clear:both;
	margin:0 0 30px
}
.page-header{
	margin:0;
	border:0
}
.single .meta-post .post-cat::before{
	content:'/';
	padding:0 10px
}
.single .meta-post .post-cat:first-of-type::before{
	content:'';
	padding:0
}
.single .hentry .meta-post a{
	color:#d65050
}
.blog .format-aside .entry-title,.archive .format-aside .entry-title{
	display:none
}
.comment-content a{
	word-wrap:break-word
}
.bypostauthor{
	display:block
}
ol.wp-block-latest-comments{
	padding:0
}
.infinite-scroll .posts-navigation,.infinite-scroll.neverending .site-footer{
	display:none
}
.infinity-end.neverending .site-footer{
	display:block
}
.page-content .wp-smiley,.entry-content .wp-smiley,.comment-content .wp-smiley{
	border:none;
	margin-bottom:0;
	margin-top:0;
	padding:0
}
embed,iframe,object{
	max-width:100%
}
img{
	max-width:100%;
	height:auto;
	vertical-align:middle
}
.fitVids-wrapper{
	position:relative;
	padding-bottom:56.25%;
	height:0
}
.fitVids-wrapper iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%
}
.wp-caption{
	margin-bottom:1.5em;
	max-width:100%
}
.wp-caption img[class*="wp-image-"]{
	display:block;
	margin:0 auto
}
.wp-caption-text{
	text-align:center
}
.wp-caption .wp-caption-text{
	margin:0.8075em 0
}
.gallery{
	margin-bottom:1.5em
}
.gallery-item{
	display:inline-block;
	text-align:center;
	vertical-align:top;
	width:100%
}
.gallery-columns-2 .gallery-item{
	max-width:50%
}
.gallery-columns-3 .gallery-item{
	max-width:33.33%
}
.gallery-columns-4 .gallery-item{
	max-width:25%
}
.gallery-columns-5 .gallery-item{
	max-width:20%
}
.gallery-columns-6 .gallery-item{
	max-width:16.66%
}
.gallery-columns-7 .gallery-item{
	max-width:14.28%
}
.gallery-columns-8 .gallery-item{
	max-width:12.5%
}
.gallery-columns-9 .gallery-item{
	max-width:11.11%
}
.gallery-caption{
	display:block
}
*,*:before,*:after{
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}
body{
	font-size:18px;
	line-height:1.7;
	background:#fff;
}
a{
	text-decoration:none;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out
}
a:hover,a:focus{
	color:#54a15d;	
	outline:0;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out
}
p{
	-webkit-margin-before:0;
	margin-block-start:0;
	margin-bottom:20px
}
.footer-widgets .widget ul,.widget-area .widget ul{
	padding:0
}
.footer-widgets a:hover{
	color:#54a15d
}
.widget .children{
	padding-left:15px
}
strong{
	font-weight:600
}
h1{
	font-size:36px
}
h2{
	font-size:30px
}
h3{
	font-size:24px
}
h4{
	font-size:18px
}
h5{
	font-size:14px
}
h6{
	font-size:12px
}
h1,h2,h3,h4,h5,h6{
	color:#192b7d;
	font-weight:600;
	margin:10px 0 24px;
	line-height:1.2
}
button,.llms-button-action,.llms-student-dashboard .llms-button-secondary,input[type="button"],input[type="reset"],input[type="submit"],div.wpforms-container-full .wpforms-form input[type=submit],div.wpforms-container-full .wpforms-form button[type=submit],div.wpforms-container-full .wpforms-form .wpforms-page-button{
	position:relative;
	display:inline-block;
	font-size:13px;
	line-height:24px;
	padding:12px 34px;
	color:#fff;
	text-transform:uppercase;
	border-radius:3px;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
	cursor:pointer
}
button:hover,.llms-button-action:hover,.llms-student-dashboard .llms-button-secondary:hover,input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover,div.wpforms-container-full .wpforms-form input[type=submit]:hover,div.wpforms-container-full .wpforms-form button[type=submit]:hover,div.wpforms-container-full .wpforms-form .wpforms-page-button:hover{
	background-color:transparent
}
.select2-container--default .select2-selection--single,select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],div.wpforms-container-full .wpforms-form input[type=date],div.wpforms-container-full .wpforms-form input[type=datetime],div.wpforms-container-full .wpforms-form input[type=datetime-local],div.wpforms-container-full .wpforms-form input[type=email],div.wpforms-container-full .wpforms-form input[type=month],div.wpforms-container-full .wpforms-form input[type=number],div.wpforms-container-full .wpforms-form input[type=password],div.wpforms-container-full .wpforms-form input[type=range],div.wpforms-container-full .wpforms-form input[type=search],div.wpforms-container-full .wpforms-form input[type=tel],div.wpforms-container-full .wpforms-form input[type=text],div.wpforms-container-full .wpforms-form input[type=time],div.wpforms-container-full .wpforms-form input[type=url],div.wpforms-container-full .wpforms-form input[type=week],div.wpforms-container-full .wpforms-form select,div.wpforms-container-full .wpforms-form textarea{
	color:#767676;
	background-color:#fafafa;
	border:1px solid #dbdbdb;
	height:50px;
	padding:4px 20px;
	border-radius:0;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out
}
textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{
	-webkit-box-shadow:none;
	box-shadow:none
}
textarea{
	width:100%;
	height:120px;
	padding:15px 20px
}
input[type="checkbox"]{
	display:inline
}
input:-moz-placeholder,textarea:-moz-placeholder,input::-moz-placeholder,textarea::-moz-placeholder{
	color:#a3a2a2
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{
	color:#c3c3c3
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
	color:#cacaca
}
textarea,input{
	text-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none
}
table{
	width:100%
}
th,td{
	border:1px solid #333;
	padding:5px;
	text-align:center
}
.site-title{
	font-size:32px;
	line-height:1.2;
	font-weight:600
}
.site-title a,.site-title a:hover{
	color:#fff
}
.site-logo{
	max-height:100px;
	width:auto;
	vertical-align:middle
}
.site-header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:1000;
	background-color:transparent;
	padding:20px 0;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.admin-bar .site-header,.admin-bar .site-header.float-header{
	top:32px
}
.admin-bar:not(.siteScrolled) .slide-item{
	background-position:50% 0 !important
}
.header-image{
	display:none;
	position:relative;
	height:300px;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat
}
.header-inner{
	display:none
}
.site-description:empty{
	margin:0
}
.site-header.fixed{position:fixed}.site-header .col-md-4,.site-header .col-md-8{
	min-height:0
}
.site-header .logo{
	margin:40px 0;
	float:left;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear
}
.site-header .logo a{
	display:block;
	height:100%
}
.site-header .logo{
	width:135px;
	height:27px
}
.site-header.float-header{
	background-color:rgba(0,0,0,0.9);
	padding:5px
}
.site-header.float-header #mainnav{
	padding:0
}
.site-header.float-header #mainnav>ul>li>a{
	height:70px;
	line-height:70px
}
.site-header.float-header .logo{
	margin:20px 0
}
#mainnav{
	display:block;
	float:right;
	-webkit-transition:all 0.3s linear;
	transition:all 0.3s linear
}
#mainnav ul{
	list-style:none;
	margin:0;
	padding:0
}
#mainnav li{
	float:left;
	padding:0 14px;
	font-size:16px
}
#mainnav ul ul li{
	padding:0
}
#mainnav ul li a{
	position:relative;
	display:block;
	color:#fff;
	font-weight:normal;
	text-decoration:none;
	outline:none
}
#mainnav ul li a:hover{
	color:#ffae0d
}
#mainnav ul ul a{
	width:180px
}
#mainnav>ul>li:last-child{
	padding-right:0
}
#mainnav ul li{
	position:relative
}
#mainnav ul li ul{
	width:180px;
	position:absolute;
	top:100%;
	left:initial;
	opacity:0;
	visibility:hidden;
	border-radius:0 0 2px 2px;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease
}
#mainnav ul li ul ul{
	top:0
}
#mainnav .dropdown-symbol{
	fill:#fff;
	margin-left:8px;
	position:relative;
	top:-2px
}
#mainnav ul ul .dropdown-symbol svg{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}#mainnav ul li ul:after{content:"";position:absolute;left:0;width:100%;height:1px}#mainnav ul li ul ul:after{top:0}#mainnav ul li ul li ul{left:100%}#mainnav:not(.mainnav.toggled) li>ul.toggled,#mainnav:not(.mainnav.toggled) li:hover>ul{opacity:1;padding-top:10px;visibility:visible;left:auto;display:block;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}#mainnav:not(.mainnav.toggled) li ul.toggled ul.toggled,#mainnav:not(.mainnav.toggled) li:hover>ul ul{padding-top:0;left:100%}
#mainnav .sub-menu{z-index:99999}#mainnav .sub-menu li a{color:#fff;display:block;line-height:30px;background:#1c1c1c;padding:0 18px;border-top:1px solid #252525;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}#mainnav .sub-menu li:hover>a{color:#fff}#mainnav li:hover>.sub-menu>li>a{padding:8px 18px}#mainnav ul li::before{font-family:"Fontawesome", "Font Awesome 5 Free";color:#fff;float:left;margin:5px 5px 0 0;font-size:14px;line-height:1;font-weight:400}#mainnav ul li a{float:left}#mainnav .sub-menu li:before{content:'';margin:0;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}.mainnav.toggled ul li a,#mainnav-mobi ul li a{float:none !important}.mainnav.toggled ul li::before,#mainnav-mobi ul li::before{content:''}.fw-menu-container{padding-left:60px;padding-right:60px}.main-header{-webkit-transition:background-color 0.3s;transition:background-color 0.3s}.main-header,.header-search-form{background-color:#fff);z-index:999}.bottom-header-row #mainnav,.main-header #mainnav{float:none}.bottom-header-row #mainnav ul li ul,.main-header #mainnav ul li ul{left:-9999em}.site-header-inner{padding-top:0px;padding-bottom:0px}.bottom-header-row #mainnav a,.main-header #mainnav a{background:transparent !important;border:0 !important}.bottom-header-row #mainnav ul li ul:after,.main-header #mainnav ul li ul:after{display:none !important}.bottom-header-row #mainnav ul ul li,.main-header #mainnav ul ul li{background-color:#233452;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 18px;width:100%}.bottom-header-row #mainnav ul ul li:first-of-type,.main-header #mainnav ul ul li:first-of-type{padding-top:16px}.bottom-header-row #mainnav ul ul li:last-of-type,.main-header #mainnav ul ul li:last-of-type{padding-bottom:16px}.bottom-header_layout_4 #mainnav>div>ul>li:first-of-type,.bottom-header_layout_5 #mainnav>div>ul>li:first-of-type{padding-left:0}.bottom-header-row #mainnav ul li ul,.main-header #mainnav ul li ul{width:220px}.main-header ul ul a:not(.mega-menu-link){padding:0 !important}.header-item.header-contact i{margin-right:5px}.sydney-offcanvas-menu,.mobile-header{display:none}.sydney-offcanvas-menu .dropdown-symbol{margin-left:0 !important}.sydney-offcanvas-menu .header-search,.sydney-offcanvas-menu .wc-account-link,.sydney-offcanvas-menu .site-header-cart{display:inline-block;vertical-align:middle}.sydney-offcanvas-menu .button{margin-top:30px}.sydney-offcanvas-menu #mainnav ul li a{float:none !important}.sydney-offcanvas-menu .header-contact a{margin-bottom:15px}.sydney-offcanvas-menu .header-contact{background-color:transparent !important;border:0 !important;margin-top:30px;padding:0 !important}.sydney-offcanvas-menu svg{max-height:16px}.sydney-offcanvas-menu{position:fixed;left:-100%;opacity:0;-webkit-transition:all 0.4s;transition:all 0.4s;top:0;-webkit-box-shadow:0 5px 15px 3px rgba(0,0,0,0.07);box-shadow:0 5px 15px 3px rgba(0,0,0,0.07);padding:30px;margin:0;z-index:99999;background-color:#fff;width:100%;max-width:300px;height:100%;overflow-y:auto}.sydney-offcanvas-menu .mobile-header-item{visibility:hidden}.admin-bar .sydney-offcanvas-menu{top:32px}.sydney-offcanvas-menu.toggled{left:0;opacity:1;font-weight:600}.sydney-offcanvas-menu.toggled .mobile-header-item{visibility:visible}.sydney-offcanvas-menu #mainnav a{width:100%}.sydney-offcanvas-menu #mainnav .menu-item-has-children a{width:calc(100% - 23px)}.sydney-offcanvas-menu #mainnav ul ul a{width:calc(100% - 23px);background:transparent;border:0;padding-top:5px;padding-bottom:5px}.sydney-offcanvas-menu #mainnav ul li a{font-size:18px}.sydney-offcanvas-menu #mainnav ul ul li a{font-size:16px}.sydney-offcanvas-menu #mainnav ul ul a:hover{background:transparent}.sydney-offcanvas-menu #mainnav ul ul li{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;background-color:transparent}.sydney-offcanvas-menu #mainnav ul li ul:after,.sydney-offcanvas-menu #mainnav ul li ul ul:after{display:none}.sydney-offcanvas-menu #mainnav ul li{padding:0;margin-right:0;float:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) li:hover>ul{padding-top:0}.sydney-offcanvas-menu #mainnav ul ul ul{position:static}.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) li:hover>ul,.sydney-offcanvas-menu #mainnav ul ul li:hover>ul{display:none !important}.sydney-offcanvas-menu #mainnav .sub-menu{display:none;margin:0;list-style:none;padding-left:10px;position:static;float:none;-webkit-box-shadow:none;box-shadow:none}.mobile-menu-close svg{fill:var(--sydney-text-color)}.sydney-offcanvas-menu #mainnav:not(.mainnav.toggled) .sub-menu.toggled{display:block !important;visibility:visible;opacity:1;width:100%;margin-bottom:10px}.sydney-offcanvas-menu #mainnav li:hover>.sub-menu>li>a{padding:5px 18px}.sydney-offcanvas-menu.toggled .menu{display:block}.sydney-offcanvas-menu #mainnav{display:block;float:none}.sydney-offcanvas-menu .mainnav ul li:last-of-type{border:0 !important}.sydney-offcanvas-menu #mainnav .sub-menu li:hover>a{background:transparent !important}.mobile-header-item{margin-bottom:30px}.main-header .header-contact,.bottom-header-row .header-contact,.mobile-header .header-contact{background:transparent !important;border:0 !important;width:auto !important;position:static !important;padding:0 !important}.mobile-header-item:last-of-type{margin-bottom:0}.mobile-header-item .align-right{text-align:right}@media (max-width: 1024px){.bottom-header-row,.main-header{display:none}.mobile-header{display:block;padding-top:15px;padding-bottom:15px}.mobile-header .align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.mobile-header .align-center{text-align:center}.sydney-offcanvas-menu{display:block}}.site-title{margin:0}.site-title a,.site-title a:visited{color:#fff}.site-description{color:#efefef;margin:5px 0 0}.header-elements{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.header-elements svg{
	fill:#EE4C50;
	max-height:14px
}
.header_layout_1 .header-elements,.header_layout_2 .header-elements{
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end
}
.header_layout_2 .row{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between
}
.header_layout_2 .menu-col{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}
.header_layout_2 .menu-center .mainnav>div>ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.header_layout_2 .menu-right .mainnav>div>ul{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.header_layout_2 .header-col{padding-left:15px;padding-right:15px}
.header_layout_1 .site-branding,.header_layout_3 .site-branding,.header_layout_5 .site-branding{text-align:center}
.bottom-header_layout_3 .mainnav>div>ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.header_layout_3 .header-elements:not(:first-of-type),.bottom-header_layout_3 .header-elements:not(:first-of-type),.bottom-header_layout_4 .header-elements:not(:first-of-type),.header_layout_4 .header-elements:not(:first-of-type),.bottom-header_layout_5 .header-elements:not(:first-of-type),.header_layout_5 .header-elements:not(:first-of-type){-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.main-header .top-header-row{padding-top:15px;padding-bottom:15px}
.main-header.header_layout_3 .site-header-inner,.site-header.header_layout_4 .site-header-inner,.main-header.header_layout_5 .site-header-inner{padding:0}
.transparent-header .sticky-header.sticky-scrolltop{position:absolute;z-index:19;width:100%;top:0;-webkit-transition:all 0.5s;transition:all 0.5s}
.transparent-header .bottom-header_layout_3.sticky-header.sticky-scrolltop:not(.is-sticky),.transparent-header .bottom-header_layout_4.sticky-header.sticky-scrolltop:not(.is-sticky),.transparent-header .bottom-header_layout_5.sticky-header.sticky-scrolltop:not(.is-sticky){position:static}
.admin-bar.transparent-header .sticky-header.sticky-scrolltop{top:32px}
.sticky-header.sticky-scrolltop{position:sticky;top:-200px;-webkit-transition:top 0.4s;transition:top 0.4s}
.sticky-header.is-sticky,.sticky-header.sticky-always{position:sticky;top:0}
.admin-bar .sticky-header.is-sticky,.admin-bar .sticky-header.sticky-always{top:32px}
.sticky-header.sticky-shadow,.sticky-header.is-sticky{-webkit-box-shadow:0 0 30px rgba(0,0,0,0.07);box-shadow:0 0 30px rgba(0,0,0,0.07)}
.bottom-header-row{background-color:var(--sydney-dark-background);z-index:999}
.bottom-header-inner{padding-top:15px;padding-bottom:15px}
.header-item{margin-right:25px;line-height:1;font-size:14px}
.header-item:last-child{margin-right:0}
.header-contact a{display:block;margin-bottom:5px}
.header-contact a:last-of-type{margin-bottom:0}
.header-search .icon-search,.header-search .icon-cancel{display:none;cursor:pointer;position:relative;z-index:999}
.header-search .icon-search.active,.header-search .icon-cancel.active{display:inline-block}
.header-search .icon-cancel svg{width:20px;height:24px}.icon-cancel{cursor:pointer}
.header-search-form{position:absolute;width:100%;top:auto;padding:20px;z-index:999999;left:-9999em;opacity:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s;visibility:hidden}
.header-search-form form{max-width:720px;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex}
.header-search-form form .search-field,.header-search-form form label{width:100%}
.header-search-form label{margin-bottom:0}
.header-search-form form button,.header-search-form form .search-field{display:block}
.header-search-form form button svg,.header-search-form form .search-field svg{fill:#fff}
.header-search-form form button{padding:13px 24px !important;border-radius:0 !important;font-size:14px !important}
.header-search-form.active{opacity:1;left:0;visibility:visible}
.search-overlay{position:fixed;top:0;height:100%;width:100%;z-index:998;background-color:rgba(0,0,0,0.3);left:-100%;opacity:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s}
.search-overlay.active{opacity:1;left:0}
.header-image img{width:100%;vertical-align:top}
.custom-logo-link{line-height:1}.custom-logo-link img{max-width:180px}
@media (max-width: 1024px)
{.bottom-header-row,.main-header{display:none}
.mobile-header{display:block;padding-top:15px;padding-bottom:15px}
.mobile-header .align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}
.mobile-header .align-center{text-align:center}.sydney-offcanvas-menu{display:block}}
.sticky-always{-webkit-transition:-webkit-box-shadow 0.3s;transition:-webkit-box-shadow 0.3s;transition:box-shadow 0.3s;transition:box-shadow 0.3s, -webkit-box-shadow 0.3s}
.main-header.sticky-active{-webkit-box-shadow:0 0 30px rgba(0,0,0,0.05);box-shadow:0 0 30px rgba(0,0,0,0.05)}
.transparent-header .header-wrapper{position:absolute;width:100%;top:auto;z-index:999}
@media (min-width: 1024px){
.transparent-header .main-header:not(.sticky-active):not(.is-sticky),.transparent-header .bottom-header-row:not(.sticky-active):not(.is-sticky){background-color:transparent}}
.transparent-header .sticky-header.sticky-always{position:fixed;top:auto;left:0;width:100%;-webkit-transition:all 0.3s;transition:all 0.3s}
.transparent-header .sticky-header.is-sticky{position:fixed;width:100%}
.transparent-header .sticky-header.sticky-always.sticky-active{position:fixed;top:0;z-index:999}
.admin-bar.transparent-header .sticky-header.sticky-always.sticky-active{position:fixed;top:32px;z-index:999}
.mainnav.toggled{display:block !important;top:100%}
.mainnav.toggled,#mainnav-mobi{display:block;margin:0 auto;width:100%;position:absolute;background-color:#1c1c1c;margin-top:15px;z-index:1000}
#mainnav-mobi{top:28px}
.mainnav.toggled ul,#mainnav-mobi ul{display:block;list-style:none;margin:0;padding:0}
.mainnav.toggled ul li,#mainnav-mobi ul li{margin:0;position:relative;text-align:left;border-top:1px solid #252525;cursor:pointer;float:none !important}
.mainnav.toggled ul>li>a,#mainnav-mobi ul>li>a{display:block;text-decoration:none;padding:10px 50px;color:#fff}
.mainnav.toggled ul.sub-menu,#mainnav-mobi ul.sub-menu{top:100%;left:0;z-index:2000;position:relative;background-color:#161625}
.mainnav.toggled>ul>li>ul>li,.mainnav.toggled>ul>li>ul>li>ul>li,#mainnav-mobi>ul>li>ul>li,#mainnav-mobi>ul>li>ul>li>ul>li{position:relative;border-top:1px solid #252525;background-color:#222}
.mainnav.toggled>ul>li>ul>li>a,#mainnav-mobi>ul>li>ul>li>a{padding-left:70px !important}
.mainnav.toggled>ul>li>ul>li>ul>li a,#mainnav-mobi>ul>li>ul>li>ul>li a{padding-left:90px !important}
.mainnav.toggled ul.sub-menu>li>a,#mainnav-mobi ul.sub-menu>li>a{display:block;text-decoration:none;padding:10px 60px;border-top-color:rgba(255,255,255,0.1);-webkit-transition:all 0.2s ease-out;transition:all 0.2s ease-out}
.mainnav.toggled>ul>li>ul>li:first-child a,#mainnav-mobi>ul>li>ul>li:first-child a{border-top:none}
#mainnav.toggled ul.sub-menu,#mainnav.toggled ul ul a{width:100%;left:0}
#mainnav.toggled li>.sub-menu>li>a{padding:10px 50px}
#mainnav.toggled ul li ul:after{display:none}
#mainnav.toggled .sub-menu li a{background:transparent !important}
#mainnav.toggled ul ul li{padding:0 14px}
.mainnav.toggled ul.sub-menu>li>a:hover,.mainnav.toggled>ul>li>ul>li.active>a,#mainnav-mobi ul.sub-menu>li>a:hover,#mainnav-mobi>ul>li>ul>li.active>a{color:#fff}
.btn-menu{float:right;color:#fff;text-align:center;width:28px;height:28px;cursor:pointer;-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out}
.btn-submenu{position:absolute;right:20px;top:0;width:50px;text-align:center}
.btn-submenu.is-amp{color:#fff;font-size:26px}
@media (min-width: 1025px){.btn-submenu{display:none}}
.btn-menu{display:none}
.overlay{position:absolute;top:0;left:0;width:100%;height:100%;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";filter:alpha(opacity=70);opacity:0.7}.page-wrap{padding:83px 0 100px;clear:both}
.page-template-page_front-page .page-wrap,.projects-template-post_full .page-wrap,.projects-template-post_full .page-wrap .content-wrapper{padding:0}
.entry-post p{margin-bottom:24px}
.entry-post img{margin:10px 0 20px}
.header-slider,.owl-wrapper{direction:ltr}
.header-slider,.owl-carousel{-webkit-transform:translate3d(0, 0, 0)}
.header-slider{-webkit-transform:none;transform:none}.parallax{width:100%;background-attachment:fixed;background-position:50% 0}
.single .hentry{margin-bottom:60px}
.content-area.sidebar-left .post-wrap{padding-right:0}
.content-area.sidebar-left.no-sidebar{float:none;padding-left:15px}
.no-sidebar .content-area.sidebar-left{padding-left:15px}
.content-area .post-wrap,.contact-form-wrap{padding-right:30px}
.no-sidebar .page-wrap{overflow-x:hidden}.content-area.no-sidebar{padding-left:15px;padding-right:15px}
.no-sidebar .content-area .post-wrap{padding-right:0;padding-left:0}
.container-narrow{max-width:730px;margin-left:auto;margin-right:auto;float:none;width:auto}
.entry-content>*{margin-bottom:1.5em}
.entry-content>.elementor,.entry-content>.panel-layout{margin-bottom:0}
body:not(.elementor-page):not(.panel-layout) .entry-content h1{margin-top:1em;margin-bottom:0.5em}
body:not(.elementor-page):not(.panel-layout) .entry-content h2,body:not(.elementor-page):not(.panel-layout) .entry-content h3,body:not(.elementor-page):not(.panel-layout) .entry-content h4,body:not(.elementor-page):not(.panel-layout) .entry-content h5,body:not(.elementor-page):not(.panel-layout) .entry-content h6{margin-top:0px;margin-bottom:0px}
.container-narrow .post-wrap{padding-right:0}
.content-area .hentry{position:relative}
.hentry .post-content{overflow:hidden}
.content-area .entry-thumb{text-align:center;margin-bottom:24px}
.single .related-post .entry-thumb{margin-bottom:12px}.hentry .title-post{margin:0}.single .entry-header .entry-title{padding:0}.posts-layout .hentry{margin-bottom:60px}.posts-layout .entry-title{font-size:32px;padding:0}.single-post-author .author-link,.posts-layout .read-more{color:var(--sydney-headings-color);text-decoration:underline;display:inline-block;margin-top:20px}.single-post-author .author-link:hover,.posts-layout .read-more:hover{color:var(--sydney-grey-color)}.posts-layout .entry-header{margin-bottom:24px}.posts-layout .entry-post p:last-of-type{margin-bottom:0}
.entry-title a{color:#13436b}.posts-layout .entry-title a:hover{color:#b8df10}span.author.vcard{padding:0;margin:0}.hentry .wp-block-quote.is-style-large,.hentry blockquote{background-color:var(--sydney-light-background);font-size:22px;margin:30px 0;padding:30px 30px 30px 40px;position:relative;font-style:normal;border-left:3px solid #000}.hentry .wp-block-quote.is-style-large p{font-style:normal;font-size:32px}
.hentry blockquote cite{color:var(--sydney-grey-color);text-transform:uppercase;font-size:12px;font-style:normal;letter-spacing:1px}.hentry .wp-block-quote.is-style-large cite{font-size:12px}.hentry .wp-block-pullquote blockquote{padding:30px;border:3px solid #000}.hentry .wp-block-pullquote p{font-size:32px}.fullwidth{width:100%}.error-404{text-align:center}.error-404 .page-content p{margin-bottom:30px}.layout5 .hentry:after{width:0;height:0}.layout3 .row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.posts-layout .post-align-center{text-align:center}
.posts-layout .post-align-center .entry-meta{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.posts-layout .post-align-center .entry-header{text-align:center}.posts-layout .post-align-right{text-align:right}.posts-layout .post-align-right .entry-header{text-align:right}.posts-layout .post-align-right .entry-meta{-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end}.posts-layout .list-image{width:35%}.posts-layout .list-content{width:65%;max-width:65%}.posts-layout article:not(.has-post-thumbnail) .list-content{width:100%;max-width:100%}.layout4 article,.layout6 article{display:-webkit-box;display:-ms-flexbox;display:flex}.layout4 .entry-thumb,.layout6 .entry-thumb{margin:0 24px 0 0;height:100%}.layout4 .entry-thumb a,.layout6 .entry-thumb a{display:block;height:100%}.layout4 .entry-thumb img,.layout6 .entry-thumb img{-o-object-fit:cover;object-fit:cover;height:100%}.posts-layout .post-vertical-align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.posts-layout .post-vertical-align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.layout4 .image-right{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.layout4 .image-right .entry-thumb{margin:0 0 0 30px}.list-image.image-left:empty{display:none}
.layout6 article:nth-of-type(even) .list-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.layout6 article:nth-of-type(even) .list-image .entry-thumb{margin:0 0 0 24px}
.no-sidebar .layout1,.no-sidebar .layout2{max-width:920px;margin-left:auto;margin-right:auto;padding-left:15px !important;padding-right:15px !important;float:none !important}
.single .meta-post a{text-transform:uppercase;letter-spacing:5px;font-size:13px}
.single-meta,.single-meta a{color:#68647a}
.single .single-meta{text-transform:uppercase;font-size:13px}
.single .single-meta{display:table}.single-meta .byline{padding-left:10px}
.single-post-author {
    margin-bottom: 60px;
    float: left;
    width: 100%;
    text-align: left;
    padding: 24px 24px 16px;
    border: 1px solid transparent!important;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(100,102,106,.1), 0 1px 4px 0 rgba(100,102,106,.36);
}
.single-post-author .author-avatar img {
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}
.author-content{
	width:100%;
	float:left;
}
.sydney-related-posts{margin-bottom:60px}
.related-post .entry-meta{margin-bottom:6px}
.related-post .entry-title{margin-top:6px;margin-bottom:0}
.entry-meta{font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;text-transform:uppercase;letter-spacing:1px;font-size:12px;margin-bottom:15px}
.entry-meta .avatar{border-radius:50%;margin-left:5px;vertical-align:middle}
.entry-meta .author a.url{color:var(--sydney-headings-color)}.entry-meta,.entry-meta a{color:var(--sydney-grey-color)}.posts-layout .entry-meta a:hover,.entry-meta a:hover{color:var(--sydney-headings-color)}.entry-meta>*{margin-right:10px}.entry-meta>*:last-of-type{margin-right:0}.entry-meta.delimiter-dot>*,.entry-meta.delimiter-vertical>*,.entry-meta.delimiter-horizontal>*{margin-right:0}.entry-meta.delimiter-dot>*:after,.entry-meta.delimiter-vertical>*:after,.entry-meta.delimiter-horizontal>*:after{padding:0 10px}.entry-meta.delimiter-dot>*:last-child:after,.entry-meta.delimiter-vertical>*:last-child:after,.entry-meta.delimiter-horizontal>*:last-child:after{display:none}
.entry-meta.delimiter-dot>*:after{content:'';background:#00102E;opacity:0.2;width:4px;height:4px;border-radius:50%;display:inline-block;vertical-align:middle;margin:0 10px;padding:0}.entry-meta.delimiter-vertical>*:after{content:'\007C'}.entry-meta.delimiter-horizontal>*:after{content:'\0023AF'}.single .entry-meta-below{margin-bottom:0}#secondary{padding:30px}.widget-area .widget{position:relative;margin-bottom:60px}.widget-area .widget_block{margin-bottom:30px}.widget-area .widget:last-child{margin-bottom:0}.sidebar-column .widget:last-of-type{margin-bottom:0}
.footer-widgets h2,.widget-area h2{font-size:32px}.widget-area .widget-title{font-size:22px;line-height:normal;padding-bottom:24px;margin:0}.widget-area .widget ul li{padding:5px 0}.widget-area .widget ul li:first-child{padding-top:0}.widget-area .widget ul li:last-child{padding-bottom:0}.widget-categories .categories li a{position:relative;display:block}.widget-categories .categories li span{position:absolute;right:0;top:0}.widget-tags .tag-list a{display:inline-block;font-size:13px;color:#767676;border:1px solid #dbdbdb;padding:7px 15px;margin:4px;margin-left:0}.widget-tags .tag-list a:hover{color:#5e5e5e}.search-field{max-width:100%}.tags-links a{display:inline-block;background-color:var(--sydney-grey-color);padding:2px 10px;color:#fff;margin:0 4px;font-size:12px;text-transform:uppercase;font-weight:600}.tags-links a:hover{background-color:var(--sydney-headings-color)}.tags-links a:first-of-type{margin-left:0}.footer-widgets{border:0;padding:0;background-color:#252525}
.footer-widgets .widget{margin-bottom:0px}
.footer-widgets .widget:last-of-type{margin-bottom:0}
.footer-widgets .widget-title{text-transform:capitalize;color:#fff;line-height:normal;margin:10px 0 0}
.footer-widgets,.footer-widgets a{color:#666666}
.footer-widgets-grid{padding:95px 0;display:grid;gap:30px}
.footer-widgets-grid.footer-layout-2{grid-template-columns:repeat(2, 1fr)}.footer-widgets-grid.footer-layout-col2-bigleft{grid-template-columns:2fr 1fr}.footer-widgets-grid.footer-layout-col2-bigright{grid-template-columns:1fr 2fr}.footer-widgets-grid.footer-layout-3{grid-template-columns:repeat(3, 1fr)}.footer-widgets-grid.footer-layout-col3-bigleft{grid-template-columns:3fr 1fr 1fr}.footer-widgets-grid.footer-layout-col3-bigright{grid-template-columns:1fr 1fr 3fr}.footer-widgets-grid.footer-layout-4{grid-template-columns:repeat(4, 1fr)}.footer-widgets-grid.footer-layout-col4-bigleft{grid-template-columns:2fr 1fr 1fr 1fr}.footer-widgets-grid.footer-layout-col4-bigright{grid-template-columns:1fr 1fr 1fr 2fr}
.footer-widgets-grid.align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.footer-widgets-grid.align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:end}.visibility-mobile-only{display:none}@media (max-width: 991px){.visibility-desktop-only{display:none}.visibility-mobile-only{display:block}}.site-info{padding:20px 0}.site-footer{background-color:#1c1c1c}.site-footer,.site-footer a{color:#666}.site-footer svg{fill:#666}.social-profile{text-align:right}.social-profile a{margin-right:20px}.social-profile a:last-of-type{margin-right:0}.preloader{background:none repeat scroll 0 0 #fff;height:100%;opacity:1;position:fixed;text-align:center;-webkit-transition:opacity 0.2s ease 0s;transition:opacity 0.2s ease 0s;width:100%;z-index:9999}.preloader.disable{opacity:0}
.preloader.hide{display:none}.preloader .spinner{height:30px;left:50%;margin-left:-15px;margin-top:-15px;position:relative;top:50%;width:30px}.preloader .pre-bounce1,.preloader .pre-bounce2{-webkit-animation:2s ease 0s normal none infinite bounce;animation:2s ease 0s normal none infinite bounce;background-color:#de4939;border-radius:50%;height:100%;left:0;opacity:0.6;position:absolute;top:0;width:100%}
.preloader .pre-bounce2{-webkit-animation-delay:-0.5s;animation-delay:-0.5s}@-webkit-keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}@keyframes bounce{0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}}.go-top{position:fixed !important;right:20px;bottom:-45px;color:#fff;display:block;line-height:1;text-align:center;padding:15px;visibility:hidden;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;z-index:9999;cursor:pointer;font-size:14px;border-radius:2px;-webkit-transition:all 0.5s;transition:all 0.5s}.go-top.position-left{right:auto;left:20px}.go-top:hover{background-color:#fff}.go-top.show{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1;visibility:visible;bottom:11px}.go-top span{margin-right:7px;vertical-align:middle}.sydney_contact_info_widget span{color:#d65050;margin-right:15px}.sydney_contact_info_widget div{margin-bottom:10px}.roll-button{position:relative;display:inline-block;font-size:13px;line-height:24px;font-weight:500;padding:12px 35px;letter-spacing:1px;color:#fff;text-transform:uppercase;border-radius:3px;-webkit-transition:all 0.3s;transition:all 0.3s}.roll-button:hover{background-color:transparent}.roll-button.border{background-color:transparent;text-transform:uppercase}.roll-button.border:hover{color:#fff}.roll-button.border.text-white{color:#fff}.more-button{display:table;margin:30px auto 0;clear:both}
a{color:#47405D}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#390879}.text-color{color:#47405D}button,input[type="button"],input[type="reset"],input[type="submit"],div.wpforms-container-full .wpforms-form input[type=submit],div.wpforms-container-full .wpforms-form button[type=submit],div.wpforms-container-full .wpforms-form .wpforms-page-button{background-color:#192b7d;border:1px solid #192b7d; color:#ffae0d}
textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{border:1px solid #d65050}#mainnav>ul>li>a.active,#mainnav>ul>li>a:hover{color:#d65050}#mainnav ul li ul:after{background-color:#d65050;-webkit-transition:all 0.3s ease;transition:all 0.3s ease}#mainnav .sub-menu li:hover>a{background-color:#d65050}.error-wrap #search-submit:hover{background-color:#d65050;border-color:#d65050}.hentry .meta-post a:hover{color:#d65050}.sidebar .widget:before{background-color:#d65050}.widget-tags .tag-list a:hover{border:1px solid #d65050}.comment .comment-detail{border:1px solid #d65050}.bottom .socials li:hover a,.go-top{background-color:#EE4C50}.go-top:hover{color:#d65050}.switcher-container .switcher-icon a:focus{color:#d65050}.llms-student-dashboard .llms-button-secondary,.roll-button{background-color:#d65050;border:1px solid #d65050}.llms-student-dashboard .llms-button-secondary:hover,.roll-button:hover{color:#d65050}.roll-button.border{color:#d65050;border:1px solid #d65050}.roll-button.border:hover{background-color:#d65050}.wp-custom-header video{display:block;height:auto;max-width:100%;width:100%}.wp-custom-header iframe{vertical-align:top}.wp-custom-header{position:relative}.wp-custom-header .wp-custom-header-video-button{display:none}.page-template-page_front-page.elementor-page .page-wrap .content-wrapper,.page-template-page_front-page.fl-builder .page-wrap .content-wrapper{width:100%;padding:0 15px}.fl-widget .widgettitle,div[class*="elementor-widget-wp-widget-sydney"] h5{text-align:center;margin-bottom:50px;position:relative;font-weight:600;line-height:normal;text-transform:uppercase;padding-bottom:10px;font-size:32px}.mc4wp-form label{display:block;width:100%}.mc4wp-form input:not([type="submit"]){width:100%}.sydney-breadcrumbs{background-color:#f7f7f7;padding:15px;margin-bottom:30px;margin-right:20px}.sydney-breadcrumbs,.sydney-breadcrumbs a{color:#47425d}.sydney-breadcrumbs a{text-decoration:underline;margin:0 3px;-webkit-text-decoration-color:#bababa;text-decoration-color:#bababa}.sydney-svg-icon{display:inline-block;width:16px;height:16px;vertical-align:middle;line-height:1}.go-top svg{stroke:#fff;width:18px;height:18px}.go-top:hover svg{fill:none;stroke:#d65050}.meta-post .sydney-svg-icon{position:absolute;top:2px;left:0;width:14px}.posted-on .sydney-svg-icon{top:-1px}.single-meta .sydney-svg-icon{fill:#68647a}.single-meta .sydney-svg-icon{width:14px;height:20px;margin-right:7px}.wp-custom-header button{fill:#fff}.btn-menu .sydney-svg-icon{width:22px;fill:#fff}.btn-submenu svg{fill:#fff;width:20px;-webkit-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transition:all 0.4s;transition:all 0.4s;position:relative;top:15px}.btn-submenu.active svg{-webkit-transform:rotate(0);transform:rotate(0)}.visibility-mobile-only{display:none}@media (max-width: 991px){.visibility-desktop-only{display:none}.visibility-mobile-only{display:block}}@media only screen and (min-width: 1930px){.parallax{background-size:cover}}@media only screen and (max-width: 991px){.parallax{background-size:cover;background-attachment:scroll;background-position:top center !important}.header-wrap .col-md-8{padding:0}.last{margin-bottom:0 !important}.margin-bottom-device{margin-bottom:50px}.margin-top-device{margin-top:50px}.content-area .post-wrap,.contact-form-wrap{padding-right:0}.contact-form-aside,.sidebar{margin-top:50px}.footer-widgets .widget{margin-bottom:50px}}@media only screen and (max-width: 1024px){.site-header.fixed{position:static !important}.site-header{position:static;background-color:rgba(0,0,0,0.9)}.header-clone{display:none}.posts-navigation{overflow:hidden;margin-bottom:30px}#mainnav{display:none}.btn-menu{display:block}.fw-menu-container{padding-left:30px;padding-right:30px}}@media only screen and (max-width: 780px){h1{font-size:32px}h2{font-size:28px}h3{font-size:22px}h4{font-size:18px}h5{font-size:16px}h6{font-size:14px}}@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape){.parallax{background-size:cover;background-attachment:scroll;background-position:top center !important}}@media only screen and (max-width: 1399px){.site-header #mainnav ul li ul{right:14px}.site-header #mainnav ul li ul li ul{left:-100%}}@media only screen and (max-width: 767px){.layout6 article{display:block}.posts-layout .list-image{width:100% !important}.posts-layout .list-image .entry-thumb{margin:0 0 30px !important}.col-grow-mobile{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.posts-layout{max-width:100%}.roll-button{padding:10px 30px}.comment-list .children{margin-left:75px}.social-menu-widget a:before{font-size:42px}.btn-menu{float:none;margin:15px auto 0}.header-wrap{text-align:center}#mainnav-mobi{top:auto}.site-header.float-header{padding-top:20px;padding-bottom:20px}.fluid-width-video-wrapper+#wp-custom-header-video-button{display:none}.footer-widgets-grid{grid-template-columns:1fr !important}.site-info .sydney-credits,.site-info .social-profile{text-align:center}.site-info .social-profile{margin-top:15px}input,optgroup,select,textarea{max-width:100%}}@media only screen and (max-width: 575px){.post-navigation .nav-previous,.post-navigation .nav-next{width:100%;float:none;text-align:left;text-align:center;padding:15px}.post-navigation .nav-previous{border:0;border-bottom:1px solid rgba(0,16,46,0.1)}#commentform .comment-form-email,#commentform .comment-form-url{width:100%;margin-left:0;margin-right:0}.comment-respond{padding:20px}}@media only screen and (max-width: 479px){.sidebar-column{padding:0}.roll-button{font-size:12px}}@media screen and (min-width: 1025px){#mainnav>div>ul,.header-wrap .fw-menu-container>.row,.header-wrap .container>.row{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center}.main-header #mainnav>div>ul,.bottom-header-row #mainnav>div>ul{-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial}#mainnav>div>ul{-ms-flex-wrap:wrap;flex-wrap:wrap}.menu-centered #mainnav>div>ul{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.menu-centered .fw-menu-container>.row{-ms-flex-wrap:wrap;flex-wrap:wrap}}.mobile-slide{display:none}.sydney-hero-area{overflow:hidden}.wp-block-button__link{font-weight:600;background-color:var(--sydney-button-background)}.wp-block-button__link:hover{opacity:0.85}.wp-block-button.is-style-outline a:not(.has-text-color){color:var(--sydney-button-background)}.wp-block-button.is-style-outline a:not(.has-text-color):hover{background-color:var(--sydney-button-background);border-color:var(--sydney-button-background);color:#fff}.post-template-post_nosidebar .content-area{max-width:805px;margin-left:auto;margin-right:auto}.post-template-post_nosidebar .alignfull,.post-template-post_nosidebar .wp-block-cover-image{max-width:100vw;width:auto;margin-left:-182px;margin-right:-182px}.post-template-post_nosidebar .alignwide{max-width:none;width:calc(100% + 200px);position:relative;left:-100px}@media (min-width: 1024px){.no-sidebar .entry-content .alignfull{margin:20px calc(50% - 50vw);max-width:100vw;width:100vw}.no-sidebar .entry-content .alignwide{margin:20px calc(25% - 25vw);width:auto}}.wp-block-group.has-background{padding:20px 30px}#mainnav-mobi.syd-hidden{display:none}#mainnav-mobi.toggled{display:block}.btn-submenu.toggled ~ .sub-menu{display:block !important;position:relative !important;opacity:1 !important;visibility:visible !important}.sub-menu.toggled{display:block !important}@media (min-width: 991px){.content-area.sidebar-left{padding-right:15px;padding-left:60px;float:right}}

@media only screen and (max-width: 319px), (min-width: 320px) and (max-width: 359px), (min-width: 360px) and (max-width: 413px), (min-width: 414px) and (max-width: 643px), (min-width: 644px) and (max-width: 767px){
	.wp-block-getwid-section h1 {
    margin-bottom: 0px;
    font-size: 28px!important;
}
	.top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
	.editor-styles-wrapper, .entry-content {
    float: unset;
}
	.aon_info_fields ul li {
		display: block;
	}
	.aon_info_fields ul li i {
		margin-right: 8px;
	}
	.airlinesofficedesk_displayrule ul li {
    width: 42%;
    font-size: 14px;
}
	.custom_fields h1 {
    font-size: 30px!important;
    line-height: 38px;
    margin-top: 0;
    margin-bottom: 15px;
}
	.main-header, .bottom-header-row{
		border-bottom:1px solid #ccc!important;
		margin-bottom:10px;
	}
	.Bannerfrontpage_in h1{
		font-size:30px!important;
		line-height:36px;
		margin-top:0;
		margin-bottom:15px;
	}
	.Bannerfrontpage_in p{
		font-size:16px;
	}
	.padx{
		padding-right:15px!important;
	}
	.airlinesofficedesk_inner_der img {
    min-height: 200px;
    max-height: 200px;
}
.airlinesupdates_home_in{
	padding:0px
}
.discount_banner h4{
	font-size:30px;
}
.discount_banner p{
	font-size:14px;
}
.airlinesupdates_headerImg {
  	width: 100%;
  	float: left;
}
.airlinesupdates_headerImg img {
  	padding: 2px;
  	border: 1px solid #ccc;
  	width: 100%;
  	height: 160px;
}
.fixradar_Home_in_right .airlinesupdates_headerImg_right {
  	width: 100%;
  	float: left;
  	text-align: left;
  	padding-left: 10px;
}
.blog .airlinesupdates_homelisting .fixradar_homelisting_in{
	display:block;
	width:100%;
}
.blog .airlinesupdates_homelisting .fixradar_homelisting_in{
	margin-bottom:10px;
}
.fixradar_homelisting_in .fixradar_homelisting_inimage img{
	height:170px;
}
.fixradar_homelisting_inimage{
	margin-bottom:10px;
}
.pages_catogry .pages_catogryIN h1 {
  	font-size: 26px;
  	line-height: 40px;
}
.inner_head .inner_headINX{
	width:100%;
}
.about_pg_img img, .about_pg_cont{
	left:0px;
}
.top_review{
	margin-bottom:20px;
}
.site-info{
	font-size:18px;
}
	.footercall button {
		padding-left: 12px;
		padding-right: 12px;
		height: 100%
	}
.footercall button .content {
    font-size:19px;
}
#page-content .NewWebsite .NewWebsiteA  .entry-content a, #page-content .NewWebsite .NewWebsiteA  .entry-content p{
	word-break: break-all;
}
.footercall button .content svg {
    width: 22px;
    height: 22px;
    float: none;
    margin-top: 0;
    margin-right: 10;
}
.whychooseusINR img {
    margin-top: 0px;
}
.airlinesofficedeskX_releated_post_inn ul li {
  	width: 100%;
  	min-height: auto;
  	max-height: auto;
  	margin-left: 0;
  	margin-right: 0;
}
.inner_head .inner_headIN h1{
	font-size:26px;
}
.wp-block-getwid-section{
	padding:0px;
	width:96%;
	margin:0px auto
}
.Bannerfrontpage_in{
	width:100%;
	border:0px
}
.airlinesofficedesk_aboutsecIND{
	margin-bottom:10px;
}
.airlinesofficedesk_latest_page ul li{
	display:block;
	width:96%;
	margin:0px auto;
	margin-bottom:10px
}
.images_side_left {
	width: 100%;
	margin-right: 0px;
	float: left;
}
.images_side_left img{
	height:100%;
}
.tm-static-iconbox{
	margin-bottom:10px;
}
.airlinesofficedesk_latest_bloIn{
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom:1px dotted #ccc;
	border-right:0px;
}
.airlinesofficedesk_SIDe_Bar{
	width:100%;
}
.Sydney-Posts-Page ul li{
	width:100%!important;
	display:block
}
.Right_fly ul li{
	display:block
}
.Right_fly ul li .imaxw{
	width:100%;
}
.col-mdXB {
	float: right;
	width: 100%;
}
.Sydney-Posts-Page ul li .imaxw{
	width:100%!important;
}
.home-page_reating{
	clear:both
}
.airlinesofficedesk_inner_der{
	clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
	display:none;
}
	.entry-content p{
		font-size:16px;
	}
.footercall button span{
	display:none
}
.airlinesofficedesk_bannER_in h1{
	font-size:36px!important
}
.why_choose_US .why_choose_USIN, .why_choose_US{
	border:0px
}
.airlinesofficedesk_about .airlinesofficedesk_about_in .airlinesofficedesk_about_inA img{
	min-height:auto;
	max-height:100%;
}
.PopularDestinations .PopularDestinationsIN p, .airlinesofficedesk_how .airlinesofficedesk_hOW p{
	width:100%;
}
.airlinesofficedesk_hOWB{
	margin-top:0px;
}
.footer_bottom ul{
	float:left
}
.footer_bottom ul li{
	padding:0px!important;
	float:left;
	width:100%;
	text-align:left
}
.footer-widgets-grid{
	padding-bottom:10px!important
}
	.custom_fields ul{
		margin-top:20px;
	}
	.custom_fields ul li span {
    font-size:15px;
		line-height:20px;
}
.disc__main {
    border-bottom: solid 1px #192b7d;
    padding: 20px 0;
}
.disc__main p {
    margin: 0;
}
/* .d-flex{
	display:flex;
} */
}

@media (min-width: 1024px){
	.page-template-rightsidetemplate 
 .airlinesofficedesk_ka_header .getwid-init .row {
    display: flex;
}
	.airlinesofficedesk_inner_der {
    height: 100%;
}
	.airlinesofficedesk_inner_der img {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}
}
	
	
	
	.header-col.header-elements {
    cursor: pointer!important;
    font-size: 20px!important;
    width: 40px!important;
    height: 40px!important;
    box-shadow: 3px 5px 35px rgba(86, 68, 169, 0.1)!important;
    color: #54a15d!important;
    border-radius: 50%!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    transition: all 0.3s!important;
}
	.header-col.header-elements:hover {
    background: #54a15d!important;
    color: #fff!important;
}
	.header-col.header-elements:hover svg {
    fill: #fff!important;
}
	/* Passenger Info submenu → 2 column layout */
#menu-item-2147 > .sub-menu.sydney-dropdown-ul {
    display: grid!important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 480px;
    max-width: calc(100vw - 20px);
    left: -260px!important;
    right: auto;
    padding: 10px;
    box-sizing: border-box;
	border: solid 1px #e1e1e1;
	background-color: #fff;
}

/* Reset li default block behavior for grid children */
#menu-item-2147 > .sub-menu.sydney-dropdown-ul > li {
    width: 100%;
}

/* Optional: tighten link padding since grid already gives spacing */
#menu-item-2147 > .sub-menu.sydney-dropdown-ul > li > a {
    padding: 10px 12px;
}