/*

Table of Contents:
search the section with these tags to categorize the css by page

- airnav_manager
- anp
- base_page
- navigation_template
- index
    - index_header
    - index_testimonial
    - index_category
- media_queries
    - media_queries_mobile
    - media_queries_non_mobile
- pricing_page
- pp_page
- softwaredev_page
- support_page
- tou_page

Note:
 - Minimize the use of media queries
 - use template / component styling

Color scheme:
main color: #e7be20

*/

:root {
    --anp-color: #e7be20;
}

html.has-scrollsmooth{
    scroll-behavior: smooth;
}
body {
    color: #2f2f2f;
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 1s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */
    padding-top: 70px;
}

@font-face {
    font-display: block;
}

.body-wrap {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin:auto;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

p {
    font-size: 13px;
}

a {
    color: var(--anp-color);
}

a:hover {
    color:var(--anp-color);
    text-decoration: none !important;
}

a:focus {
    text-decoration: none !important;
}

/*
_______________________________________________________________________________
Base Page                                                            [base_page]
_______________________________________________________________________________
*/

.content-wrapper {
    margin: 60px 0 60px 0;
}

.section-wrapper {
    background-color: #fff;
    padding: 4rem 4rem;
}

.vcenter {
    float:none;
    display:inline-block;
    vertical-align:middle;
    margin-right:-4px;
}

.anp-button {
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    color: #363636;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: calc(.5em - 1px) 1em;
    border: 1px solid #dbdbdb;
    justify-content: center;
    /*border-radius: 4px;*/
}

.anp-button:hover, .anp-button:active {
    border-color: #b5b5b5;
    color: #363636;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.anp-button.is-primary {
    border-color: transparent;
    color: #0a0a0a;
    background: var(--anp-color) none;
}

.anp-button.is-primary:hover {
    background: #f4c942;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

a.anp-button.is-primary:hover {
    color: #0a0a0a;
}


.anp-button.is-white {
    color: #ffffff;
    border-color: transparent;
    background: var(--anp-color) none;
}

.anp-button.is-white:hover {
    color: #ffffff;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    border-color: transparent;
}

.anp-button.is-light {
    background-color: #f5f5f5;
    border-color: transparent;
    color: rgba(0,0,0,.7);
}

.anp-button.is-light:hover {
    background-color: #eee;
    border-color: transparent;
    color: rgba(0,0,0,.7);
}

.anp-button.full-width {
    word-wrap: break-word!important;
    white-space: normal!important;
    width: 100%!important;
}

.anp-button.navbar-btn {
    margin-top: 23px;
    margin-left: 15px;
}

a.anp-button.dropdown-toggle:hover {
    color: #333!important;
    background-color: var(--anp-color) !important;
}

/* FORM */

.is-grouped {
    display: flex;
    justify-content: flex-start;
}

.is-grouped .is-expanded {
    flex-grow: 1;
    flex-shrink: 1;
}

.is-grouped > .control:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem;
}

/*
_______________________________________________________________________________
Navigation Start                                          [navigation_template]
_______________________________________________________________________________
*/

.navbar {
    margin-bottom: 0px;
}

.container > .navbar-header {
    border-bottom: 0px solid red;
}

#base_nav_subscription_highlight {
    background-color: var(--anp-color);
    color: #333333;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
}

#base_nav_subscription_highlight:hover {
    background-color: transparent;
    border: 1px solid var(--anp-color);
    color: var(--anp-color);
}

.navbar-default {
    background-color: #fff !important;
}

.navbar-default .navbar-nav > li > a {
    color: #333;
}

.navbar-default .navbar-nav > li > a:hover {
    color: var(--anp-color);
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #fff;
}

.navbar-default .navbar-toggle {
    border: 0px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #333;
}

.navbar-default .navbar-nav>li>a {
    font-weight: 400;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent!important;
    border: solid 1px var(--anp-color);
}

.navbar-fixed-top {
    z-index: 1040;
    -webkit-box-shadow: 0px 8px 44px -15px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 8px 44px -15px rgba(0,0,0,0.25);
    box-shadow: 0px 8px 44px -15px rgba(0,0,0,0.25);
}

.navbar-toggle {
    margin-top: 12px;
    margin-right: 15px;
}

.navbar-right {
    margin-right: 0px !important;
}

.title-gap {
    margin-bottom: 20px;
}

.logo-big {
    width: 296px;
    height: auto;
}

.logo-small{
    width:48px;
    height:48px;
}

.an-dropdown-menu>li>a:hover, .an-dropdown-menu>li>a:focus {
    color: var(--anp-color);
    background-color: #ffffff;
}

.anp_link {
    color: #06c!important;
    cursor: pointer;
}

.anp_info {
    color: #06c!important;
    cursor: pointer;
}

#store_link { cursor: pointer; }

.store_link { cursor: pointer; }

.anp_link:hover {
    color: var(--anp-color)!important;
    text-decoration: underline!important;
}

.anp-nav-tabs>li.active>a, .anp-nav-tabs>li.active>a:hover, .anp-nav-tabs>li.active>a:focus {
    color: var(--anp-color) !important;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: var(--anp-color);
    background-color: #ffffff;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    background-color: var(--anp-color);
}

.nav-tabs {
    border-bottom: 1px solid #a7a4a4;
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #a7a4a4;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    border: 1px solid #a7a4a4;
    border-bottom-color: transparent;
}

.nav-tabs>li>a {
    font-size: 20px;
}

/*
_______________________________________________________________________________
Navigation End
_______________________________________________________________________________
*/

/*
_______________________________________________________________________________
Index Start                                                    [index_template]
_______________________________________________________________________________
*/

.home-content-1 {
    background-color: #fff;
}

.home-content-2 {
    background: #fafafd;
    padding: 60px 0px;
    color: #2f2f2f;
}

.home-content-99 {
    background-color: #e1e1e1;
    padding: 60px 0 0 0;
    color: #2f2f2f;
}

.home-content-softwaredev {
    border-top: none;
}

.home-content-end {
    background-color: #fff;
    padding: 60px 0px;
}

.home-content-end p {
    font-weight: 200;
    font-size: 20px;
}

.footer{
    bottom: 0;
    width: 100%;
}

.footer ul {
    list-style-type: none;
    line-height: 20px;
    padding: 10px;
    margin: 0;
    font-size: 14px;
}

.home-footer {
    background-color: #ddd;
    padding: 60px 0px;
    font-size: 14px;
    color: #666;
}

.home-footer-2 {
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 30px 0px;
}

.home-footer-3 {
    background-color: #1b1b1b;
    color: #fff;
    padding: 30px 0px;
    font-size: 13px;
}

.home-content-3 {
    background-color: #fff;
    padding: 60px 0px;
    color: #2f2f2f;
}

.content-yellow-bg {
    background: var(--anp-color);
    padding: 60px;
    min-height: 200px;
}

.feature-highlights {
    background-color: #2f2f2f;
    color: #fff;
    padding: 30px 10px;
    min-height: 100px;
}

.feature-highlights h2 {
    text-align: center;
}

.feature-highlights ul {
    margin-left: 20px;
}

.feature-highlights li {
    padding: 10px 0px;
}

/* index_header */
.homepage-header {
    background: #FFFFFF no-repeat center;
    background-size: contain;
    padding-bottom: 30px;
}

.over-jumbotron {
    text-align: left;
    color: #000000;
    background-color: inherit;
}

.content-jumbotron {
    margin-top: 9%;
    margin-bottom: 9%;
}

.welcome_img_area {
    display: block;
}

.welcome_img_area img {
    max-height: 664px;
    margin: 0 auto;
}

.banner-text {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    color: #ffffff;
}

.hero-header-title {
    margin: 0 auto;
    color: #ffffff;
}

.hero-header-title p {
    font-size: 40px;
    font-weight: 200;
    color: #fff;
    line-height: 50px;
}

.hero-header-desc {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-header-desc p {
    line-height: 30px;
    color: #fff;
}

.hero-header-button {
    border: 2px solid #fff;
    padding: 10px 20px;
    background: transparent;
    font-size: 20px;
    color: #fff;
    margin: 15px 0;
}

.header-image {
    width: 100%;
    height: auto;
}

.header-page {
    padding: 15px 15px 40px 15px;
    text-align: center;
}

/* index_testimonial */
.testimonial-container {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.tes-text {
    margin-top: 30px;
    color: #828384;
}

.testimonials {
    background: #fff;
}

.testimonials-carousel {
    display: block;
}

.testimonials-columns {
    margin: 60px 0;
    padding: 60px 0px;
    background-color: #fff;
    min-height: 200px;
    display: block;
}

.testimonials-columns p {
    color: #333333;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.testimonials-brand-list {
    display: flex;
    justify-content: center;
    padding: 30px 0px;
    min-height: 300px;
}

.testimonials-brand-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.testimonials-brand-list li {
    float: left;
    width: 33%;
}

.smartchart{
    /*background-image: url('../images/smartchart/generic-bg-gradient.svg');*/
    color: #000;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.smartchart-container{
    padding: 60px 0;

}

.smartchart-container img {
    /*vertical-align: center;*/
}

.smartchart-links a {
    text-decoration: underline;
}

.brand-list {
    min-height: 32px;
    text-align: center;
}

.brand-list img {
    width: 60%;
    height: auto;
    margin-bottom: 30px;
}

.brand-list p {
    font-size: 12px;
    text-align: center;
    color: #828384;
}

.slide-testimonial {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image:      -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .0001)));
    background-image:         linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image:      -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image:         linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #2f2f2f;
    text-align: center;
    text-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=100);
    opacity: 1;
}
.carousel-control:hover,
.carousel-control:focus {
    color: #2f2f2f;
    text-decoration: none;
    filter: alpha(opacity=100);
    outline: 0;
    opacity: 1;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #2f2f2f;
    text-align: center;
    text-shadow: none;
}

.testimonials-carousel {
    background-color: #fff;
}

/* index_category */
.categories {
    min-height: 100px;
    padding: 0px;
    font-family: 'Raleway', sans-serif;
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

.categories p {
    font-size: 16px;
}

.categories p a {
    color: #fff;
}

.categories a:hover,
.categories a:focus {
    text-decoration: none;
}

.categories-divider {
    background-color: var(--anp-color);
    height: 2px;
    width: 55px;
    margin: 10px auto 0;
    margin-bottom: 10px;
}

.categories .categories-text-container {
    margin: 40px 40px;
}

.categories .categories-text {
    font-size: 14px;
    line-height: 1.5;
    color: #535658;
    letter-spacing: 0;
    text-align: center;
}

.main-categories {
    min-height: 100px;
    padding: 0;
}

.main-categories p {
    font-family: 'Raleway', sans-serif;
}

.category-container {
    height: 150px;
    width: 100%;
    padding: 90px;
}

.category-1 {
    background-image: url('../images/category-anp8.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    position:relative;
    align-items: center;
    height: 200px;
}

.category-2 {
    background-image: url('../images/category-anm1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
}

.category-3 {
    background-image: url('../images/category-sd2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    position:relative;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.overlay-image {
    z-index: 9999;
}

.category-1:hover .overlay-image img,
.category-2:hover .overlay-image img,
.category-3:hover .overlay-image img
{
    -webkit-filter: drop-shadow(2px 2px 2px #333333);
    filter: drop-shadow(2px 2px 2px #333333);
}

.overlay-category {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transition: .5s ease;
    background-image: linear-gradient(rgba(1,1,1,0.4), rgba(4,4,4, 0.6));
    overflow:hidden;
}

.category-1:hover .overlay-category, .category-2:hover .overlay-category, .category-3:hover .overlay-category{
    opacity: 20%; /* show the hover shadow */
}

.category-3 p {
    margin: 0;
}

.category-container p {
    padding: 52px 0px;
}

.category-container-t p {
    padding: 52px 0px;
}

.category-container a {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.category-container-t a {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.category-container a:hover {
    text-decoration: none;
}

.category-container-t a:hover {
    text-decoration: none;
}

.padding-0 {
    padding-left: 0;
    padding-right: 0;
}

.carousel-inner > .item > img {
    display: block;
    width: auto;
    max-width: 1000px;
    margin: 40px;
}

.download-sc-btn {
    width: 270px;
    color: #2f2f2f;
    font-size: 25px;
    position: relative;
    text-decoration: none!important;
    border: 1px #2f2f2f solid;
    border-radius: 10px;
    padding: 20px 20px 20px 80px;
    background-color: #fff;
    text-align: left;
    margin-bottom: 10px;
}

.download-sc-btn span, .download-sc-btn a {
    display: inline-block;
    text-decoration: none!important;
    /*transition: all 0.4s ease;*/
    /*-webkit-transition: all 0.4s ease;*/
    /*-moz-transition: all 0.4s ease;*/
}

.download-sc-btn > img {
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 28px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.download-sc-btn > .main-text {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.download-sc-btn > .sub-text {
    font-size: 14px;
    display: block;
    margin-top: 3px;
}

/*
_______________________________________________________________________________
Index End
_______________________________________________________________________________
*/

/*COUNTRY PACKAGE SECTION*/
.country-packages {
    min-height: 100px;
    padding: 60px 0px;
}

.country-package-text {
    text-align: center;
    padding-bottom: 20px;
}

.country-package-text a {
    font-size: 18px;
    color: #06c;
    /*text-decoration: underline;*/
}

.country-package-text a:hover {
    color: var(--anp-color);
    text-decoration: underline!important;
}

.text-title {
    font-size: 24px;
    color: #2f2f2f;
}

.country-package-image {
    margin: 0 auto;
    text-align: center;
}

.country-package-image img {
    width: 100%;
    height: auto;
}

/*LIVE TRACKING SECTION*/
.livetracking {
    min-height: 100px;
    padding: 60px 0px;
    background-color: #FFFFFF;
}

.livetracking-text {
    text-align: center;
    padding-bottom: 20px;
}

.livetracking a {
    font-size: 18px;
    color: #06c;
    /*text-decoration: underline;*/
}

.livetracking a:hover {
    color: var(--anp-color);
    text-decoration: underline!important;
}

.livetracking-image {
    margin: 0 auto;
    text-align: center;
}

/*APPROACH CHARTS SECTION*/
.appcharts {
    min-height: 100px;
    padding: 60px 0px;
}

.appcharts-package-text {
    text-align: center;
    padding-bottom: 20px;
}

.appcharts-package-text a {
    font-size: 18px;
    color: #06c;
    /*text-decoration: underline;*/
}

.appcharts-package-text a:hover {
    color: var(--anp-color);
    text-decoration: underline!important;
}

.appcharts-package-image {
    margin: 0 auto;
    text-align: center;
}

.appcharts-package-image img {
    width: 100%;
    height: auto;
}

/*HOMEPAGE MAP PROVIDERS SECTION*/
.providers {
    min-height: 100px;
    padding: 60px 0px;
}

.providers-text {
    text-align: center;
    padding-bottom: 20px;
}

.providers-text a {
    font-size: 18px;
    color: var(--anp-color);
    /*text-decoration: underline;*/
}

.providers-text a:hover {
    color: var(--anp-color);
}

.providers-logo {
    height: auto;
}

.providers-logo ul {
    display: flex;
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style: none none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.providers-logo li {
    padding: 10px;
}

.providers-logo img {
    max-width: 60%;
    height: auto;
    margin: 0 auto;
}

.support-section {
    background-color: #FFFFFF;
    padding: 20px 0px;
}

.home-support {
    width: 440px;
    height: 350px;
    background-position: top;
    background-size: cover;
    border: 1px solid red;
}

.support-section a {
    color: #06c;
    font-size: 18px;
}

.support-section a:hover {
    color: var(--anp-color);
    text-decoration: underline!important;
}

.support-section button {
    background-color: var(--anp-color);
    width: 100%;
    color: #333333;
    border: 1px solid transparent;
    padding: 10px 30px;
    margin: 10px 0px;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
}

.support-section button:hover {
    background-color: transparent;
    border: 1px solid var(--anp-color);
    color: var(--anp-color);
}

.support-section h2 {
    margin-top: 14px;
}

.icao-image {
    margin: 0 auto;
    padding: 20px;
}

.icao-image img {
    margin: 0 auto;
    padding: 10px 0px;
}

/*----------------------------------------------------------------------------------------*/

.solution-title {
    margin-top: 20px;
    font-size: 36px;
    font-weight: 200;
    text-align: center;
}

.solution-description {
    line-height: 30px;
}

/*----------------------------------------------------------------------------------------*/

/*HOME CONTENT FUNCTIONALITY*/
.our-solutions-list {
    list-style: none;
    margin: 30px 0px;
}

.our-solutions-list li {
    color: #2f2f2f;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 10px;
}

.our-solutions-content {
    text-align: justify;
    padding: 10px 8px;
}

.solution-img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

.solution-active {
    background-color: var(--anp-color);
    color: #fff !important;
}

.solution-description a {
    color: var(--anp-color);
    font-weight: 500;
}

/*TESTIMONIAL STYLING*/
.testimonial-brands {
    list-style-type: none;
}

.testimonial-brands li {
    display: inline;
    text-decoration: none;
    padding: 15px;
}

.testimonial-brands {
    vertical-align: middle;
    width: 196px;
    height: auto;
    margin: 30px 15px;
}

.testimonial-brands-2 {
    vertical-align: middle;
    width: auto;
    height: auto;
    margin: 30px 15px;
}

/*----------------------------------------------------------------------------------------*/

/*FOOTER SECTION CSS*/
.footer-title {
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    margin: 0px;
}

.aero-footer {
    list-style-type: none;
    line-height: 20px;
    padding: 10px;
    margin: 0px;
    font-size: 14px;
}

.aero-footer li{
    padding: 5px 0 5px 0;
}

.aero-footer a {
    color: #c1c1c1;
    cursor: pointer
}
.aero-footer a:hover {
    color: var(--anp-color);
}

#base_footer_logo {
    margin: 8px 0 8px 0;
    height: 100%;
}

.nb-form {
    position: fixed;
    z-index: 9999;
    width: 300px;
    background: #FFF;
    right: 20px;
    bottom: -431px;
    transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.nb-form:hover,
.nb-form:focus,
.nb-form input:focus{
    bottom: 0px;
}

/*-- User Icon --*/
.nb-form .user-icon {
    position: absolute;
    top: -49px;
    right: 12px;
    display: block;
    width: 58px;
    margin: 20px auto 15px;
    border-radius: 100%;
}

/*-- Title --*/

.nb-form .title {
    background: var(--anp-color);
    text-align: center;
    font-size: 16px !important;
    padding: 10px 18px !important;
    color: #333333 !important;
    border-radius: 10px 10px 0 0;
}

/*-- Text --*/

.nb-form p {
    font-size: 13px;
    margin: 0;
    padding: 15px;
    color: #666;
}

.nb-form p.message {
    margin-left: 7px;
}

/*-- Form Elements --*/

.nb-form form {
    padding: 0 15px 15px 15px;
}

.nb-form input,
.nb-form textarea {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    width: 254px;
    max-width: 254px;
    margin-bottom: 10px;
    margin-left: 7px;
    padding: 6px;
    border: none;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
}

.nb-form input:focus,
.nb-form textarea:focus {
    outline: none;
    box-shadow: none;
    bottom: 0px;
}

.nb-form input[type='submit'] {
    display: block;
    width: 120px;
    margin: 0 auto;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .4s ease;
    color: #333333 !important;
    border: none;
}

.nb-form input[type='submit']:hover {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.07),0 1px 7px 0 rgba(0,0,0,0.02),0 3px 1px -1px rgba(0,0,0,0.1);
}

.nb-form textarea {
    min-height: 110px;
}


.nb-form ::-webkit-input-placeholder {
    color: #aaa;
}

.nb-form ::-moz-placeholder{
    color: #aaa;
}

.nb-form :-ms-input-placeholder {
    color: #aaa;
}

.nb-form :-moz-placeholder {
    color: #aaa;
}

.nb-form input[type='submit'] {
    background: var(--anp-color);
}

.is-error,
.is-error:focus{
    border-color: #f14668!important;
}

/* Modal */

.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*
_______________________________________________________________________________
Support Page Start                                               [support_page]
_______________________________________________________________________________
*/
.external-plugins {
    padding: 0;
}
.external-plugins > ul > li > a {
    color: var(--anp-color);
}
.user-manuals {
    padding: 15px 0px;
}

.user-manuals ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.user-manuals li {
    float: left;
}

.user-manuals a {
    display: block;
    font-size: 12px;
    color: #2f2f2f;
    text-align: center;
    padding-right: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.user-manuals a:hover {
    color: #828384;
}

.support-content-1 {
    padding-top: 60px;
    color: #2f2f2f;
}

.support-content-1 .more-link p {
    font-size: 14px;
}

.support-content-1 p {
    font-size: 12px;
    line-height: 24px;
    color: #2f2f2f;
}

.support-content-1 a {
    text-decoration: none;
    text-transform: none;
    /*color: #2f2f2f;*/
    /*transition: 0.3s ease-in-out;*/
    /*-webkit-transition: 0.3s ease-in-out;*/
    /*-moz-transition: 0.3s ease-in-out;*/
    /*-o-transition: 0.3s ease-in-out;*/
}

.support-content-1 h5 {
    color: #2f2f2f;
}

#support {
    margin: 0px;
}

.more-link {
    margin-top: 20px;
    margin-bottom: 20px;
}

.more-link a {
    color: var(--anp-color);
}

.more-link a:hover {
    color: #f4c942;
}

.support-content-2 {
    background: #fafafd;
    padding: 30px 0px;
    color: #2f2f2f;
}

.support-cat-bg {
    background-color: #fafafd;
    padding: 10px;
}

.main-support-categories {
    padding: 0px;
}

.main-support-categories-a {
    color: #2f2f2f;
}

.main-support-categories-a:hover {
    color: #828384;
    text-decoration: none;
    transition: 0.4s;
}

.support-video-title {
    font-size: 16px;
    padding: 8px 0px;
    margin: 0px;
}

.kb-topic-link {
    color: #2f2f2f;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 6px;
}

.kb-topic-link:hover {
    color: #828384;
    text-decoration: none;
}

.kb-topic-link:focus {
    color: #828384;
    text-decoration: none;
}

.support-faq-q {
    margin: 10px 0px;
    font-size: 14px;
}

.support-faq-q a {
    color: #2f2f2f;
}

.support-q {
    color: #2f2f2f;
}

.support-q:hover {
    color: #3f3f3f;
    transition: 0.4s;
    text-decoration: none;
}

.support-q:focus {
    color: #3f3f3f;
    transition: 0.4s;
    text-decoration: none;
}

.support-faq-q:before {
    content: url(../images/16x16-plane-icon.png);
    z-index: -1;
    height:16px;
    width:16px;
}

.faq-qs {
    border-radius: 0;
    margin-bottom: 6px;
}

.faq-q-panel {
    border-radius: 0px;
    background: transparent;
    border-bottom: 1px solid #eaeaea;
}

.faq-q-heading {
    margin: 10px 0px;
    border-radius: 0;
    background: transparent;
}

.faq-q-body {
    border: 1px solid #eaeaea;
    background-color: #f2f2f2;
    padding: 20px;
}

.faq-q-hr {
    margin: 10px 0px;
}

.faq-q-kb  {
    padding: 8px 0px;
    font-size: 14px;
    font-weight: 400;
}

.faq-q-kb {
    color: var(--anp-color);
}

.faq-q-kb:hover {
    color: var(--anp-color);
    text-decoration: none;
}

.faq-q-kb:focus {
    color: var(--anp-color);
    text-decoration: none;
}

/*----------------------------------*/

.e7be20 {
    background-color: var(--anp-color);
    min-height: 100px;
    padding: 30px 0px;
}

.e7be20 button {
    padding: 6px 50px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 1px;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.e7be20 h3 {
    color: #fff;
}

.e7be20 p {
    color: #fff;
}

.person-profile {
    padding: 20px 0px;
}

/*----------------------------------*/

/*Support Page - drop us a message section*/
.yellow-section {
    background: var(--anp-color);
    padding: 1px 0px;
    min-height: 10px;
}

#white {
    color: #fff;
}

/*Support Page - report form*/
.p-report {
    color: #2f2f2f;
    line-height: 24px;
}

.btn-report {
    padding: 10px 25px;
    border: 1px solid transparent;
    background-color: var(--anp-color);
    text-align: center;
    color: #fff;
}

/*Support Page - Keep up to date with air navigation*/
.gray-section {
    padding: 60px 0px;
    color: #2f2f2f;
    background-color: #f2f2f2;
}

.gray-section p {
    color: #2f2f2f;
    font-size: 12px;
}

.support-form {
    text-align: center;
    margin-bottom: 25px;
}

.support-form label {
    color: #fff;
    font-weight: 400;
    border: 1px solid transparent;
}

.support-form input {
    margin: 0px 10px;
    padding: 10px 0px;
    width: 50%;
    border: 1px solid transparent;
    border-radius: 2px;
}

.support-form textarea {
    width: 55%;
    border: 1px solid transparent;
}

.support-form button {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 10px 40px;
    color: #2f2f2f;
}

.support-form-wrapper {
    padding: 20px 0px;
    background-color: var(--anp-color);
    border-radius: 3px;
    -webkit-box-shadow: 0px 5px 25px -10px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 5px 25px -10px rgba(0,0,0,0.45);
    box-shadow: 0px 5px 25px -10px rgba(0,0,0,0.45);
}

.support-newsletter {
    margin: 10px 0px;
}

/*CONTACT FORM STYLING*/
/*CONTACT FORM STYLING*/
.support-contact-section {
    background-color: var(--anp-color);
    padding: 20px 160px;
}

.contact-wrapper {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    color: #2f2f2f;
}

.contact-wrapper2 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    color: #2f2f2f;
}

.support-desk {
    padding: 25px;
    margin: 50px 0;
    color: #2f2f2f;
}

#flex2-contact input[type="text"],
#flex2-contact input[type="email"],
#flex2-contact input[type="tel"],
#flex2-contact input[type="url"],
#flex2-contact textarea,
#flex2-contact button[type="submit"] {
    font: 400 12px/16px;
}

#flex2-contact h3 {
    display: block;
    /*font-size: 30px;*/
    font-weight: 300;
    margin-bottom: 10px;
    color: #2f2f2f;
}

#flex2-contact p {
    color: #2f2f2f;
}

#flex2-contact a {
    color: #828384;
    text-decoration: none;
}

#flex2-contact a:hover {
    color: #aeaeae;
    text-decoration: none;
    transition: 0.4s;
}

fieldset {
    border: 1px solid transparent;
    margin: 0 0 5px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#flex2-contact input[type="text"],
#flex2-contact input[type="email"],
#flex2-contact input[type="tel"],
#flex2-contact input[type="url"],
#flex2-contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

#flex2-contact input[type="text"]:hover,
#flex2-contact input[type="email"]:hover,
#flex2-contact input[type="tel"]:hover,
#flex2-contact input[type="url"]:hover,
#flex2-contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
}

#flex2-contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#flex2-contact button[type="submit"] {
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    border: none;
    background: var(--anp-color);
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#flex2-contact button[type="submit"]:hover {
    background: #f4c942;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#flex2-contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#flex2-contact input:focus,
#flex2-contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

::-webkit-input-placeholder {
    color: #aeaeae;
}

:-moz-placeholder {
    color: #aeaeae;
}

::-moz-placeholder {
    color: #aeaeae;
}

:-ms-input-placeholder {
    color: #aeaeae;
}

.contact-flex {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.flex1 {
    /*background-image:*/
    /*        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)),*/
    /*        url('../images/support/contactform-img.jpg');*/
    /*background-position: top;*/
    /*background-size: cover;*/
    text-align: center;
    /*padding: 140px 20px;*/
    -webkit-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.3);
    box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.4);
}

.flex1 img {
    width: 100%;
    height: 500px;
}

.flex2 {
    width: 60%;
    padding: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.3);
    box-shadow: 0px 10px 40px -10px rgba(0,0,0,0.3);
}

.flex2 fieldset {
    padding: 0;
}

.support-info {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.support-info p {
    color: #fff;
    font-size: 14px;
}

.support-desk {
    background-color: var(--anp-color);
    padding: 8px 20px;
    color: #fff;

    border: 1px solid transparent;
    border-radius: 20px;
}

.support-desk:hover {
    background-color: #f4c942;
    color: #fff;
    text-decoration: none;

    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}


.loader {
    border: 5px solid #dcdcdc;
    border-radius: 50%;
    border-top: 5px solid var(--anp-color);
    width: 37px;
    height: 37px;
    margin:0 auto;
    -webkit-animation: spin 1s linear infinite, fadeEffect 1s; /* Safari */
    animation: spin 1s linear infinite, fadeEffect 1s;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

#flex2-contact {
    background: #fff;
    padding: 0px 25px;
    /*margin: 50px 0;*/
}

#flex2-contact input[type="text"],
#flex2-contact input[type="email"],
#flex2-contact input[type="tel"],
#flex2-contact input[type="url"],
#flex2-contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

.support-search {
    background: #f2f2f2;
    padding: 60px 0px;
    color: #2f2f2f;
}

.support-search p {
    font-size: 14px;
}

.support-btn {
    padding: 8px 0px;
    width: 100%;
    border: 1px solid transparent;
    background-color: var(--anp-color);
    text-align: center;
    color: #fff;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    border-radius: 20px;
}

.support-btn:hover {
    background-color: transparent;
    border: 1px solid var(--anp-color);
    color: var(--anp-color);
}

.support-search-bar {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #eaeaea;
}

.support-content-title {
    margin-bottom: 30px;
}

.support-cat-desc {
    font-size: 12px;
    text-align: justify;
    line-height: 30px;
}

.support-cat-desc a {
    color: var(--anp-color);
}

.support-cat-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.external-plugins ul {
    list-style-type: none;
    padding-left: 0;
}

.external-plugins li {
    color: #2f2f2f;
    margin-bottom: 10px;
}

.chart-legends ul {
    list-style-type: none;
    padding-left: 0;
}

.chart-legends li {
    color: #2f2f2f;
    margin-bottom: 10px;
}
.chart-legends li a {
    color: var(--anp-color);
}


.support-aero-swiss {
    line-height: 30px;
    text-align: center;
    padding:60px 0;
    background: #f2f2f2;
}

.support-aero-swiss img {
    height: auto;
    margin: 0 auto;
    padding:15px;
}

.support-aero-swiss p{
    text-align: justify;
}

/*
_______________________________________________________________________________
Support Page End
_______________________________________________________________________________
*/

/*
_______________________________________________________________________________
Pricing Page Start                                               [pricing_page]
_______________________________________________________________________________
*/

.division-package-card {
    color: #2f2f2f;
}

.pricing-header {
    background-image:
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
            url('../images/pricing-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    color: #fff;
    height: 30vh;
    padding: 25px 0px;

    text-align: center;
}

.pricing-header button {
    margin: 20px 0px;
    padding: 15px 25px;
    background-color: var(--anp-color);
    border: 1px solid transparent;
    border-radius: 2px;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
}

.pricing-header button:hover {
    background-color: #f4c942;
}

.package-container {
    height: 60px;
}

.pricing-qs {
    border-radius: 0;
}

.pricing-q-panel {
    border-radius: 0px;
    background: transparent;
}

.pricing-q-heading {
    margin: 10px 0px;
    /*border: 1px solid #aeaeae;*/
    /*border-radius: 0;*/
    background: transparent;
    padding: 2px 6px;
}

.pricing-q-body {
    background-color: #f2f2f2;
    padding: 20px;
}

.pricing-q-hr {
    margin: 10px 0px;
}

.pricing-q-kb  {
    padding: 8px 0px;
    font-size: 14px;
    font-weight: 400;
}

.pricing-q-kb {
    color: var(--anp-color);
}

.pricing-q-kb:hover {
    color: var(--anp-color);
    text-decoration: none;
}

.pricing-q-kb:focus {
    color: var(--anp-color);
    text-decoration: none;
}

.dynamic-support {
    float: right;
    position: fixed;
    bottom: 2%;
    right: 20px;
    min-height: 40px;
    width: 120px;
    text-align: center;
    z-index: 999;
}

.d-support-btn {
    background-color: #828384;
    border: 1px solid transparent;
    border-radius: 64px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    padding: 15px 0px;
}

.d-support-btn:hover {
    background-color: #666;
    transition: 0.2s;
}

.footer-social-media {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.footer-social-media li {
    width: 38px;
    height: 38px;
    display: inline-block;
}

.footer-social-media li a {
    display: block;
    color: #fff;
    padding: 16px;
    text-decoration: none;
}

.footer-social-media li a:hover {
    color: var(--anp-color);
}

.wrapper-single {
    position: relative;
    z-index: 1;
}

.wrapper {
    position: relative;
    z-index: 90;
}

.ribbon-wrapper-gray{
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    bottom: -51px;
    right: -3px;
}

.ribbon-gray{
    font-size: 14px;
    color: #fff;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 5px 0;
    left: -7px;
    top: 21px;
    width: 140px;
    background-color: #828384;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-wrapper-gray-single{
    width: 63px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    top: -2px;
    right: -1px;
}

.ribbon-gray-single{
    font-size: 10px;
    color: #fff;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 0px 0;
    left: -11px;
    top: 15px;
    width: 85px;
    background-color: #828384;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-wrapper-yellow-single{
    width: 63px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    top: -2px;
    right: -1px;
}

.ribbon-yellow-single{
    font-size: 10px;
    color: #2f2f2f;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 0px 0;
    left: -11px;
    top: 15px;
    width: 85px;
    background-color: var(--anp-color);
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-wrapper-yellow {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: -2px;
    right: -2px;
}

.ribbon-yellow {
    font-size: 14px;
    color: #2f2f2f;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 5px 0;
    padding-top: 3px;
    left: 35px;
    top: 6px;
    width: 90px;
    background-color: var(--anp-color);
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);

}

.ribbon-gray-single:before, .ribbon-gray-single:after{
    content: "";
    border-top: 3px solid #828384;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    bottom: -3px;
}

.ribbon-gray:before, .ribbon-gray:after{
    content: "";
    border-top: 3px solid #828384;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    bottom: -3px;
}

.ribbon-yellow:before, .ribbon-yellow:after{
    content: "";
    border-top: 3px solid var(--anp-color);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    position: absolute;
    bottom: -3px;
}

.ribbon-yellow:before, .ribbon-gray:before, .ribbon-gray-single:before{
    left: 0;
}

.ribbon-yellow:after, .ribbon-gray:after, .ribbon-gray-single:after{
    right: 0;
}​

 .packagages-div-nav {
     display: flex;
     justify-content: center;
 }

.packages-ul-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.packages-li-nav {
    float: left;
}

.packages-li-nav a {
    display: block;
    color: #2f2f2f;
    text-align: center;
    padding: 16px;
    text-decoration: none;
}

.packages-li-a:hover {
    cursor: pointer;
}

.packages-li-nav a:focus {
    background-color: var(--anp-color);
    color: #fff !important;
}

.packages-div {
    padding: 10px 0;
    min-height: 20px;
    margin-top: 50px;
}

.best-plan {
    border: 1px solid var(--anp-color)!important;
}

.more_desc {
    display: none;
}

.more_btn {
    cursor: pointer;
    color: var(--anp-color);
}

/*
_______________________________________________________________________________
Pricing Page End
_______________________________________________________________________________
*/

/*
_______________________________________________________________________________
Software Development Page Start                              [softwaredev_page]
_______________________________________________________________________________
*/

#software-dev-hero-header {
    background-image:
            linear-gradient(rgba(0, 0, 0, .7), rgba(231, 190, 32, 0.3)),
            url('../images/bg-img-software-dev.jpeg');
    height: 600px;

    background-attachment: fixed;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 60px 0px;
}

.header-typography {
    margin-top: 100px;
}

.header-typography-2 {
    margin-top: 40px
}

/*our services Tabs css*/
#exTab1 .tab-content {
    color: #2f2f2f;
    background-color: #fff;
    padding : 5px 15px;
}

#exTab1 .nav-pills > li > a {
    border-radius: 0;
}

.tab-content {
    margin-top: 20px;
}

.tab {
    transition: 1s;
}

.services-heading-title {
    font-size: 18px;
}

.services-panel-body {
    background-color: #eaeaea;
    padding: 30px;
}

.cards {
    float: left;
    padding: 0 1.7rem;
    width: 50%;
}

.company_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 10px;
    justify-content: center;
}

.card_item {
    flex: 1 0;
    box-sizing: border-box;
    background: white;
    text-align: center;
    position: relative;
    height: 450px;
}

.card_img {
    display: block;
    border: 0;
    padding: 1em;
    max-height: 200px;
}

.card_img img{
    width: auto;
    height: 150px;
    margin: 0 auto;
}

.card_item a {
    text-decoration: none;
    display: block;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    font-weight: 700;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 20px;
}

.card_content {
    padding: 1.4em;
}

.card_content p {
    font-size: 15px;
    height: 150px;
}

.card {
    z-index: 1;
    display: block;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.card-airbus{
    background: #FFFFFF url('../images/256px_logo_airbus.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-sncf{
    background: #FFFFFF url('../images/256px_logo_sncf.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-greenland{
    background: #FFFFFF url('../images/256px_logo_airgreenland.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-aerosafety{
    background: #FFFFFF url('../images/256px_logo_aerosafety.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-horsetrails{
    background: #FFFFFF url('../images/256px_logo_horsetrails.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.card-anp{
    background: #FFFFFF url('../images/256px_logos_anp.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-aeroswiss{
    background: #FFFFFF url('../images/256px_logo_swiss_aero_pro.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-aoa{
    background: #FFFFFF url('../images/256px_logos_aoa.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card-cashsentinel{
    background: #FFFFFF url('../images/cash-sentinel-w256px.png') no-repeat center;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.card .card-wrapper{
    min-height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}

.card-airbus:hover,
.card-sncf:hover,
.card-greenland:hover,
.card-aerosafety:hover,
.card-horsetrails:hover,
.card-anp:hover,
.card-aeroswiss:hover,
.card-aoa:hover,
.card-cashsentinel:hover{
    background-position: top!important;
}

.card .card-wrapper:hover .card-data {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.card .card-data {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(calc(100px + 1em));
    transform: translateY(calc(100px + 1em));
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.card .card-data .card-content {
    padding: 1em;
    position: relative;
    z-index: 1;
}
.card .author {
    font-size: 12px;
}
.card .title {
    margin-top: 10px;
    text-align: center;
}
.card .text {
    height: 55px;
    margin: 0;
}

.card .button{
    display: block;
    width: 100px;
    margin: 2em auto 1em;
    text-align: center;
    font-size: 12px;
    line-height: 1;
    position: relative;
    font-weight: 700;
}

.card .button::after {
    content: "\2192";
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all 0.3s;
}

.references-text p {
    padding: 0px 20px;
    text-align: justify;
    color: #2f2f2f;
}

.references-text h4 {
    font-weight: 200;
    font-size: 24px;
    text-align: center;
}

.references-tile a {
    color: var(--anp-color);
}

.references-img {
    padding: 20px;
    width: 60%;
    height: auto;
    margin: 0 auto;
}

.solution-highlights {
    background-color: #2f2f2f;
    color: #fff;
    padding: 30px;
    min-height: 100px;
}

.solution-highlights li {
    padding: 10px 0px;
}

.solution-highlights h2 {
    text-align: center;
}

.services-heading-title a {
    color: #2f2f2f !important;
}

.software-div-btn {
    margin-bottom:20px;
}

/*
_______________________________________________________________________________
Software Development Page End
_______________________________________________________________________________
*/

/*
_______________________________________________________________________________
Manager Page Start                                             [airnav_manager]
_______________________________________________________________________________
*/
.manager-header {
    background-image: url('../images/an-manager-hero-header.jpg');
    /*min-height: 60vh;*/

    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 60px 0px;
    color: #fff;
}

.manager-yellow {
    text-align: center;
    min-height: 10px;
    padding: 30px 0px;
    background-color: var(--anp-color);
}

.manager-yellow p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.manager-yellow a {
    color: #2f2f2f;
}

.manager-header p {
    line-height: 30px;
}

.anm-img {
    margin: 0 auto;
    padding-top: 30px;
}

.content-title {
    margin-bottom: 30px;
}

.black-section h3 {
    color: #fff;
}

.black-section p {
    color: #fff;
}

.black-section {
    background-color: #2f2f2f;
    padding: 60px 0px;
    min-height: 200px;
}

.text-content {
    text-align: justify;
    line-height: 30px;
    color: #2f2f2f;
}

.text-content a {
    color: var(--anp-color);
}

.manager-button {
    padding: 15px 30px;
    background-color: var(--anp-color);
    border: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    margin: 10px 0;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    margin: 0 auto;
}

.sm-button {
    padding: 15px 30px;
    background-color: var(--anp-color);
    border: 1px solid transparent;
    color: #333333;
    font-size: 16px;
    display: block;
    text-align: center;
    width:40%;
    margin: 10px 0;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
}

.sm-button:hover {
    background-color: transparent;
    border: 1px solid #f4c942;
}

.manager-button:hover {
    background-color: transparent;
    border: 1px solid #f4c942;
}

.manager-solutions {
    padding: 60px 0px;
    min-height: 100px;
}

.anm-text-content {
    margin: 15px 0px;
    text-align: center;
    line-height: 30px;
    color: #2f2f2f;
}

.our-services-list-ul p {
    margin: 15px 0px;
    line-height: 30px;
}

.our-services-list-ul img {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 15px 0px;
}

/*
_______________________________________________________________________________
Manager Page End
_______________________________________________________________________________
*/

/*SOFTWARE DEV PAGE - NAV PILLS*/
.nav-our-services {
    display: flex;
    justify-content: center;
}

.nav-our-services a {
    color: #2f2f2f;
}

.nav-our-services li {
    border-right: 1px solid #eaeaea;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #2f2f2f;
    background-color: #fff;
    border-bottom: 4px solid var(--anp-color);
}

/*SUBSCRIPTION NAV PRICING PAGE - NAV PILLS*/
.nav-package-country {
    display: flex;
    justify-content: center;
}

.nav-package-country a {
    color: var(--anp-color);
}

.nav-package-country li {
    border-right: 1px solid #eaeaea;
}

.pricing-country-packages {
    transition-delay: 1s;
}

/*PAGE - SITEMAP CSS*/
.sitemap {
    min-height: 100px;
    margin: 0 auto;
}

.sitemap ul {
    list-style-type: none;
}

/*AIRNAVIGATION PAGE / FEATURES PAGE CSS*/
.home-content-1 a {
    color: #2f2f2f;
}

.home-content-1 a:hover {
    color: #f4c942;
    transition: 0.4s;
    text-decoration: none;
}

.section-white {
    background-color: #fff;
    min-height: 200px;
    padding: 60px 0px;
    display: block;
}

.section-white p {
    font-size: 14px;
}

.section-white a {
    color: var(--anp-color);
}

.section-white a:hover {
    color: #f4c942;
    text-decoration: none;
}

.section-gray {
    background-color: #f8f8f8;
    min-height: 200px;
    padding: 60px 0px;
}

.section-gray#approachcharts{
    padding: 60px 0;
}

.section-gray p {
    font-size: 13px;
    line-height: 26px;
}

/*.section-gray a {*/
/*    color: var(--anp-color);*/
/*}*/

/*.section-gray a:hover {*/
/*    color: #f4c942;*/
/*    text-decoration: none;*/
/*}*/

.anp-features img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.feature-margin img {
    margin: 0 auto;
}

.feature-margin {
    margin: 30px 0 0 0;
}

.feature-margin .feature-content{
    height: 420px;
}

.is-rounded {
    background-color: var(--anp-color);
    color: #fff!important;
    border: 1px solid transparent;
    border-radius: 9999px;
    padding: 8px calc(1em + .25em);
}

.is-rounded:hover {
    background: #f4c942;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.is-large {
    font-size: 1.5rem;
}

.anp-nav-tabs > li {
    float:none;
    display:inline-block;
    zoom:1;
}

.anp-nav-tabs {
    text-align:center;
}

/*MEDIA KIT PAGE CSS*/
.media-content {
    background-color: #fff;
}

.media-content hr {
    margin: 30px 0px;
}

.media-content p {
    font-size: 13px;
    line-height: 26px;
}

.media-content button {
    padding: 10px 30px;
    border: 1px solid transparent;
    background: var(--anp-color);
    color: #fff;
}

.media-content button:hover {
    background-color: #f4c942;
    transition: 0.4s;
}

.black-bg {
    background-color: #0a0a0a;
    padding: 20px 80px;;
}

.black-bg img {
    width: 100%;
    height: auto;
}

.white-bg {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 20px 80px;
}

.white-bg img {
    width: 100%;
    height: auto;
}

.styleguide {
    min-height: 100px;
}

.styleguide img {
    width: 50%;
    height: auto;
    margin-bottom: 30px;
}

#p-justify {
    text-align: justify;
}


/*TERMS OF USE PAGE*/
.tou-content {
    text-align: justify;
    line-height: 26px;
}

.tou-content h3 {
    margin-top: 30px;
}

.tou-content h5 {
    margin-top: 30px;
}

.tou-content a {
    color: var(--anp-color);
}

/*PRIVACY POLICY PAGE*/
.pp-content {
    text-align: justify;
    line-height: 26px;
}

.pp-content h4 {
    margin-top: 30px;
}

.pp-content h5 {
    margin-top: 30px;
}

.pp-content a {
    color: var(--anp-color);
}

.pp-content ul {
    list-style-type: disc
}

.pp-content li {
    font-size: 13px;
    line-height: 26px;
}

.download-link-header {
    padding-top: 20px;
    padding-bottom: 60px;
}

.download-link-header p {
    line-height: 22px;
    padding-bottom: 10px;
}

.download-link-cta {
    text-align: center;
    font-size: larger;
    padding: 10px 10px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    color: var(--anp-color);
    text-transform: none;
    margin: 0px 5px;
    -webkit-box-shadow: 0px 20px 24px -10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 20px 24px -10px rgba(0,0,0,0.3);
    box-shadow: 0px 20px 24px -10px rgba(0,0,0,0.3);
    display: inline;
}

.download-link-cta:hover {
    text-transform: none;
    text-decoration: none;
    background-color: #e2e2ea;
    transition: 0.4s;
}

.store-badge-header {
    /*width: 100%;*/
    /*flex-direction: row;*/
    /*flex-shrink: 0;*/
    /*align-items: center;*/
    /*gap: 12px;*/
    /*-webkit-box-orient: horizontal;*/
    /*-webkit-box-direction: normal;*/
    /*-webkit-flex-direction: row;*/
    /*-ms-flex-direction: row;*/
    /*flex-wrap: wrap;*/
    /*display: flex;*/
}

.store-badge {
    /*width: 100%;*/
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-shrink: 0;*/
    /*align-items: center;*/
    /*gap: 12px;*/
    /*margin: 10px 0 10px 0;*/
    /*-webkit-box-orient: horizontal;*/
    /*-webkit-box-direction: normal;*/
    /*-webkit-flex-direction: row;*/
    /*-ms-flex-direction: row;*/
}

.store-badge.center, .store-badge-header.center {
    justify-content: center;
}

.store-badge img, .store-badge-header img {
    max-width: 100%;
    width: 140px;
    height: auto;
    margin: 10px;
}
.store-badge a, .store-badge-header a {
    text-decoration: none;
}

label.required:after, input.form-control.required:after {
    color: red;
    content: " *";
}

.flight-list {
    list-style: none;
    padding: 0;
    margin-left: 5px;
}

.flight-list li {
    padding-left: 1.3em;
    padding-bottom: 1rem;
}

.flight-list.index-list li {
    padding-bottom: 2rem;
}

.flight-list.index-list {
    font-size: 21px;
    display: inline-block;
    text-align: left;
}

.flight-list li:before {
    content: url(../images/16x16-plane-icon.png);
    z-index: -1;
    display: inline-block;
    margin-left: -1.3em;
    width:1.3em;
}
