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

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

:root{
    --heading-font:'Poppins', sans-serif;
    --paragraph-font:'Open Sans', sans-serif;
    --heading-color:#000;
    --box-color-1:#0f4ad4;
    --box-color-2:#ed1c24;
}
html{
    scroll-behavior: smooth;
}
button:focus{
    outline: none;
}
a{
    text-decoration: none;
}

body .btn{
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--box-color-2);
    padding: 15px 80px;
    border-radius: 50px;
    border:2px solid var(--box-color-2);
    transition: .5s;
    margin: 20px auto 0px;
    display: inline-block;
    outline: none !important;

}
body .btn:not(:disabled):not(.disabled):hover{
    color: var(--box-color-2);
    background-color: transparent;
    outline: none !important; box-shadow:none !important;
    border: 2px solid var(--box-color-2);
   
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle{
    background-color: transparent;
    border-color: var(--box-color-2);
}
a:hover{
    text-decoration: none;
}
.common-gap{
    padding: 60px 0px;
}
.common-heading{
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}
.common-para{
    font-family: var(--paragraph-font);
    color: #333;
    font-size: 16px;
}
textarea:focus-visible, .form-group:focus-visible{
    outline: none;
}
.form-control:focus{
    border-color: var(--box-color-2);
    box-shadow: none;
}
/* banner start */
.banner{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 730px;
    position: relative;
}
/* menu */

.scrolled{
    align-items: center;
}
nav{
    display: flex !important;
    flex-direction: row;
    justify-content: space-between ;
    align-items: flex-start ;
    padding:20px 10% ;
}
.stickey{
    position: fixed;
    width: 100%;
    z-index: 1000000;
}
.scrolled{
    box-shadow: 8px 0px 12px rgba(0, 0, 0, .20);
    background-color: #fff;
    transition: .5s ease-in-out;
    color: #333;
}
.scrolled .logo img{
    width: 15%;
    transition: .5s ease-in-out;
}
.scrolled .social-icon i, .scrolled .social-icon a, .scrolled .menu a{
    color: #333;
}
.scrolled .menu-icon span{
    background-color: #333;
}
.scrolled{
    padding: 10px 10%;
}
/* .scrolled .social-icon a, .scrolled .menu a, .scrolled .social-icon i{
    color: #333;   
} */
.social-icon a, .menu a, .social-icon i{
    color:#fff;
}
/* .stickey .menu-icon span{
    background-color: #333;
} */
/* logo */
.logo{
    width: 100%;   
}
.logo img{
    width: 30%;
    margin: auto;
    display: block;
    transition: .5s ease-in-out;
}
/* social */
.social-icon{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icon i{
    color: #fff;
    padding: 0px 20px 0px;
    font-size: 25px;
    cursor: pointer;
}

/* menu */
.menu{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-icon{
    width: 60px;
    height:44px;
    cursor: pointer;
    padding: 0px 8px;
    z-index: 1000;
   
}
.menu-icon span{
    width:40px;
    height:2px;
    display: block;
    margin: 10px 0;
    background-color: #fff;
    transition:  .5s;
}
.menu a, .social-icon a{
    color: #fff;
    font-family: var(--heading-font);
    font-size: 16px;
    text-decoration: none;
}
.sidebar{
    position: fixed;
    width: 300px;
    height: 500px;
    background-color: var(--box-color-1) ;
    top: 0;
    right: -300px;
    text-align: center;
    padding:60px 0px;
    transition: .5s;
    z-index: 1;
    overflow: auto;
}

.sidebar.active{
    right: 0;
   
}
.sidebar .menu {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
.sidebar .menu li {
    width: 100%;
    position: relative;
}
.sidebar .menu li a {
    display: block;
    text-transform: capitalize;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-family: var(--heading-font);
}

.sidebar .menu li:hover a{
    color: #fff;
    transition: .5s;
    text-decoration: none;
    background: #0a3db3;
}
.sidebar .menu li .sub-menu {
    display: none;
    background: #0a3db3;
    padding: 10px 0;
}
.sidebar .menu li .sub-menu li a {
    font-size: 16px;
}
.sidebar .menu li .sub-menu li:hover a {
    background: #0f4ad4;
}
.menu-icon.active span{
    position:fixed;
    width: 3%;
    top:20px;
    right:10%;
    transition:.5s;
    z-index: 1000000;
}
.sidebar .menu li .submenu-arrow {
    position: absolute;
    right: 10px;
    top: 11px;
    font-size: 18px;
    color: #fff;
    width: 30px;
    text-align: center;
    cursor: pointer;
}
.sidebar .menu li .submenu-arrow.active-menu i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}
.menu-icon.active span:nth-child(1){
    transform: rotate(45deg);
    background-color: #fff;

}
.menu-icon.active span:nth-child(3){
    transform: rotate(-45deg);
    background-color: #fff;
}
.menu-icon.active span:nth-child(2){
   display: none;   
}

/* banner-text */
.banner-text{
    position: absolute;
    width: 55%;
    left: 10%;
    bottom: 14%;
}
.banner-text h1{
    font-size: 90px;
    color: #fff;
    font-family: var(--heading-font);
    font-weight: bold;
}
/* banner end */

/* about start */
.about{
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.about h4{
    font-size: 20px;
    margin-top: 60px;
}
/* about end */

/* team start */
.team{
    width: 100%;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.team-inner{
    margin-top: 30%;
    width: 100%;
    position: relative;
}
.team-inner .team-text{
    width: 96%;
    margin: auto;
    height: auto;
    /* height: 580px; */
    background-color: #fff;
    padding: 80px 20px 30px;
    text-align: center;
}
.team-inner .team-text h3{
    font-size: 20px;
    color: var(--box-color-2);
    height: 50px;
}
.team-inner .img-box {
    position: absolute;
    top: -10px;
    margin: auto 0px;
    display: block;
    border-radius: 100%;
    box-shadow: 8px 12px 24px rgb(0 0 0 / 20%);
    border: 3px solid #fff;
    width: 130px;
    height: 130px;
    background: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}
.team-inner .img-box img {
    width: 100%;
    margin: 0;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
/* .team-inner .img-box.team-img-3 img{
    width: 95%;
    margin:4px auto 0px;
    height: 95%;
    border-radius: 100%;
    object-fit: cover;
} */
.owl-one .owl-nav{
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 50%;
    width: 100%;
}
.owl-one .owl-nav button.owl-next:focus, .owl-one .owl-nav button.owl-prev:focus{
    color: var(--box-color-2);
}
.owl-one .owl-nav button.owl-next{
    position: absolute;
    right: -3%;
}
.owl-one .owl-nav button.owl-prev{
    position: absolute;
    left:-3%;
}
/* team end */

.img-box{
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.program .img-box img{
    width: 100%;
    object-fit: cover;
    height: 178px;
}
.program .text-box{
    background-color: var(--box-color-1);
    padding: 40px 15px;
    color: #fff;
}
.program .text-box a{
    color: #fff;
}
.program .text-box h3{
    font-size: 28px;
    font-weight: bold;
    font-family: var(--heading-font);
    height: 90px;
}
.program .text-box p{
    color: #fff;
}

/* fleet start */

.fleet{
    padding: 0px 0px 60px;
}


.fleet .row .col-xl-4:nth-child(n+4) {
    margin-top: 30px;
}


.fleet-inner{
    width: 100%;
    height: auto;
    box-shadow: 3px 0px 10px rgba(0, 0, 0, .25);
    position: relative;
}
.fleet-inner .img-box img{
    width: 100%;
    object-fit: cover;
    height: 207px;
}
.fleet-inner .text-box{
    padding: 40px 0px 10px;
    text-align: center;
}
.fleet-inner .text-box h4{
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 500;
}
.fleet-inner .text-box img{
    width: 10%;
    margin: auto;
    display: block;
}
.fleet-inner .text-box a p{
    font-size: 16px;
    margin-top: 10px;
    color: #000;
    font-family: var(--heading-font);
    margin-bottom: 0px;
}
.fleet-heading{
    position: absolute;
    width: 80%;
    top: 190px;
    left: 10%;
    padding: 8px 0px;
    background-color: var(--box-color-2);
    text-align: center;
    z-index: 2;
}
.fleet-heading h4{
    color: #fff;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 500;
    margin-bottom: 0px;
}
/* fleet end */

/* rates start */
.rates{
    width: 100%;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.rates h2{
    color: #fff;
}
.rates-inner{
    width: 60%;
    margin: auto;
    display: block;
    color: #fff;
}
.rates-inner .rates-box{
    padding-left: 60px;
}
.rates-inner h4{
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
}
.rates-inner p{
    font-family: var(--para-font);
    font-size: 18px;
    margin-bottom: 0px; 
    font-weight: 500;
}
/* rates end */

/* accomplishments start */
.accomplishments{
    background-color: #f5f5f5;
}
.accomplishments .text-box{
    padding: 100px 30px 30px;
    background-color: var(--box-color-1);
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 10px 2px 20px rgba(0, 0, 0, .3);
}
.accomplishments .text-box a h4{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.accomplishments-inner{
    margin-top: 10%;
}
.accomplishments .icon-box{
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 100%;
    background-color: #fff;
    left: 30%;
    top: -30%;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, .3);
}
.accomplishments .icon-box img{
    width: 40%;
    margin: 40px auto;
    display: block;
}

/* accomplishments end */

/* contact start */
.contact h4{
    margin-bottom: 40px;
    text-align: center;
    font-size: 20px;
}
.contact .contact-inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 40px;
}
.info{
    width: 40%;
}
.info-item{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.info-item img{
    width: 24px;
    height: 24px;
    margin-right: 20px;
}
.info-item i{
    font-size: 20px;
    margin-right: 20px;
    color: var(--box-color-2);
}
.info-item a{
    font-size: 16px;
    color: #333;
    font-family: var(--paragraph-font);
}
.info-item{
    margin-bottom: 20px;
}
.info-social-icon i{
    font-size: 30px;
    margin: 30px 30px 0px 0px;
    color: var(--box-color-2);
}
.form-2{
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 40px;
}
.form-group{
    width: 100%;
}
.form{
    width: 60%;
}
.form label{
    font-family: var(--paragraph-font);
    color: #333;
    font-size: 16px;
}
.form-group{
    margin-bottom: 40px;
}
.contact .form textarea{
    width: 100%;
    height: 50px;
}
.form-control, .contact .form textarea{
    border-bottom: 2px solid var(--box-color-2);
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
}
.contact input.btn,
.contact button{
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--box-color-2);
    padding: 15px 80px;
    border-radius: 50px;
    border:2px solid var(--box-color-2);
    transition: .5s;
    margin: 20px auto 0px;
    display: block;
    outline: none !important;

}
.contact input.btn:hover,
.contact button:hover{
    color: var(--box-color-2);
    background-color: transparent;
    outline: none !important; box-shadow:none !important;
    border: 2px solid var(--box-color-2);
   
}
.contact input:focus{ outline: none !important; box-shadow:none !important; }
/* contact end */

/* footer start */
.footer{
    width: 100%;
    padding: 20px 0px;
    background-color: var(--box-color-2);
    text-align: center;
}
.footer p, .footer p a{
    font-family: var(--paragraph-font);
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
    text-decoration: none;
}
/* footer end */


.menu .menu-header-top-container {
    width: 65%;
}
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form form > p {
    margin: 0;
    position: relative;
}
.form form > p span.wpcf7-spinner {
    position: absolute;
    left: 0;
    top: 100%;
    margin: -40px 0 0;
}
.form form > .wpcf7-response-output {
    text-align: center;
}

.aviation-links {
    background: #1049d4;
}
.aviation-links .common-heading {
    color: #fff;
    margin-top: 0;
}
.aviation-inner .row {
    margin: 0;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.aviation-inner .row .text-box {
    margin: 20px;
}
.aviation-inner .row .text-box a {
    display: block;
    background: #fff;
    font-size: 18px;
    color: var(--box-color-2);
    font-weight: bold;
    padding: 25px 40px;
    text-align: center;
    min-width: 325px;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
}
.aviation-inner .row .text-box a:hover {
    background: var(--box-color-2);
    color: #fff;
}
.accomplishment-slide {
    padding: 0px 25px;
}
.accomplishment-slide .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    left: 0;
    font-size: 22px !important;
}
.accomplishment-slide .owl-nav button.owl-next {
    right: 0;
    left: auto;
}
.accomplishment-slide .item h5 {
    text-align: center;
    margin-top: 12px;
}
.accomplishment-slide .item h5 a {
    color: #000;
}
.accomplishment-slide .item h5 a:hover {
        text-decoration: none;
}
.img-box.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    padding: 5px 0 !important;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.7);
}
.img-box.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    padding: 5px 0 !important;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.7);
}