﻿
.heading-sub {
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #0a223e 0%, #1277ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}


/*Home Slider*/

#home-banner .big-plane img {
    animation: ImgAnimate 3s infinite cubic-bezier(0.4, 0, 1, 1) 0.2s;
    width: 100%;
    margin-top: 10%;
}

#home-banner {
    background-image: url(../images/home-bg-png.png);
    background-size: cover;
}

    #home-banner .big-plane {
        left: -110px;
        top: -50%;
        width: 123%;
        animation: scale 4s linear;
        z-index: 9;
    }


@-webkit-keyframes ImgAnimate {
    0% {
        -webkit-transform: rotate(0) translate(-10px) rotate(0);
        -moz-transform: rotate(0) translate(-10px) rotate(0);
        -ms-transform: rotate(0) translate(-10px) rotate(0);
        -o-transform: rotate(0) translate(-10px) rotate(0);
        transform: rotate(0) translate(-10px) rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

@-moz-keyframes ImgAnimate {
    0% {
        -webkit-transform: rotate(0) translate(-10px) rotate(0);
        -moz-transform: rotate(0) translate(-10px) rotate(0);
        -ms-transform: rotate(0) translate(-10px) rotate(0);
        -o-transform: rotate(0) translate(-10px) rotate(0);
        transform: rotate(0) translate(-10px) rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

@-ms-keyframes ImgAnimate {
    0% {
        -webkit-transform: rotate(0) translate(-10px) rotate(0);
        -moz-transform: rotate(0) translate(-10px) rotate(0);
        -ms-transform: rotate(0) translate(-10px) rotate(0);
        -o-transform: rotate(0) translate(-10px) rotate(0);
        transform: rotate(0) translate(-10px) rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

@keyframes ImgAnimate {
    0% {
        -webkit-transform: rotate(0) translate(-10px) rotate(0);
        -moz-transform: rotate(0) translate(-10px) rotate(0);
        -ms-transform: rotate(0) translate(-10px) rotate(0);
        -o-transform: rotate(0) translate(-10px) rotate(0);
        transform: rotate(0) translate(-10px) rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

@keyframes scale {
    0% {
        left: -800px;
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ---------- Fog ---------- */
.fogwrapper {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
    filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
    overflow: hidden;
}

#foglayer_01, #foglayer_02, #foglayer_03 {
    height: 100%;
    position: absolute;
    width: 200%;
}

    #foglayer_01 .image01, #foglayer_01 .image02,
    #foglayer_02 .image01, #foglayer_02 .image02,
    #foglayer_03 .image01, #foglayer_03 .image02 {
        float: left;
        height: 100%;
        width: 50%;
    }

#foglayer_01 {
    -webkit-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
    -moz-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
    animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
}

#foglayer_02, #foglayer_03 {
    -webkit-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
    -moz-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
    animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
}

#foglayer_01 .image01, #foglayer_01 .image02 {
    background: url("../images/fog1.png") center center/cover no-repeat transparent;
}

#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02 {
    background: url("../images/fog3.png") center center/cover no-repeat transparent;
}

/* ---------- Keyframe Layer 1 ---------- */
@-webkit-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@-moz-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@-o-keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}

@keyframes foglayer_01_opacity {
    0% {
        opacity: .1;
    }

    22% {
        opacity: .5;
    }

    40% {
        opacity: .28;
    }

    58% {
        opacity: .4;
    }

    80% {
        opacity: .16;
    }

    100% {
        opacity: .1;
    }
}
/* ---------- Keyframe Layer 2 ---------- */
@-webkit-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@-moz-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@-o-keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}

@keyframes foglayer_02_opacity {
    0% {
        opacity: .5;
    }

    25% {
        opacity: .2;
    }

    50% {
        opacity: .1;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: .5;
    }
}
/* ---------- Keyframe Layer 3 ---------- */
@-webkit-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@-moz-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@-o-keyframes foglayer_03_opacity {
    0% {
        opacity: .8
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}

@keyframes foglayer_03_opacity {
    0% {
        opacity: .8;
    }

    27% {
        opacity: .2;
    }

    52% {
        opacity: .6;
    }

    68% {
        opacity: .3;
    }

    100% {
        opacity: .8;
    }
}
/* ---------- Keyframe moveMe ---------- */
@-webkit-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@-moz-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@-o-keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes foglayer_moveme {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@media only screen and (min-width: 280px) and (max-width: 767px) {
    #foglayer_01 .image01, #foglayer_01 .image02,
    #foglayer_02 .image01, #foglayer_02 .image02,
    #foglayer_03 .image01, #foglayer_03 .image02 {
        width: 100%;
    }
}


/*---------------------------------------------------*/

/*#about::after {
    background: linear-gradient(180deg, #6aa5d4 0%, rgb(255 255 255) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -60%;
    z-index: -1;
}

#about::before {*/
/*content: "";
        background-image: url(../images/about-back.jpg);
        position: absolute;
        width: 30%;
        height: 65%;
        opacity: 0.4;
        right: 0;
        bottom: 0;*/
/*content: "";
    background-image: url(../images/about-back1.png);
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 100%;
    top: -55%;
}*/

/*About us*/

#about ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}

    #about ul li span {
        font-size: 8px;
        background: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        display: inline-block;
        margin-right: 4px;
        transform: translateY(-3px);
    }

.pilot-img {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 0px 18px 5px rgba(0, 0, 0, 0.05);
    animation: updown-two 2.6s linear 0s infinite alternate;
}

    .pilot-img img {
        width: 200px;
    }


.back-top span {
    display: block;
}

.back-top i {
    -webkit-animation: scroll-down 2s infinite;
    -moz-animation: scroll-down 2s infinite;
    -o-animation: scroll-down 2s infinite;
    animation: scroll-down 2s infinite;
    font-size: 15px;
    margin-bottom: 10px;
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*-------------------------*/

.img-sep {
    position: absolute;
    background-image: url(../images/about-back.jpg);
    width: 50%;
    height: 50%;
    right: 0;
    opacity: 0.2;
    margin-top: -15%;
    z-index: -1;
    margin-top: -300px;
}

/*-----------Service--------*/

.services-main .services-content::after {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background-color: #0c2540;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: -1;
}

.services-main .services-content:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}

.services-main .services-content:hover {
    color: #ffffff !important;
}

.services-main:hover h3 {
    color: #ffffff !important;
}

.service-img img {
    width: 94%;
    margin-top: -80px;
    border-radius: 10px;
}

.service-text {
    padding: 2rem 2rem;
}

    .service-text p {
        position: relative;
        color: #0a223e;
    }

        .service-text p::after {
            position: absolute;
            content: "";
            height: 1px;
            width: 46px;
            top: -8px;
            left: 0;
            background: #0a223e;
        }

.services-main:hover .service-text p {
    color: #ffffff !important;
}

    .services-main:hover .service-text p::after {
        background: #3c4b5c !important;
    }


/*------------------*/
#how-to-become {
    background-color: #F3F6FD;
}

    #how-to-become .bg-color {
        position: absolute;
        right: 0;
        top: 0;
    }

    #how-to-become .bg-shape {
        position: absolute;
        right: -10%;
        top: 0;
    }

    #how-to-become .banner-video {
        position: absolute;
        bottom: 55%;
        right: 45%;
    }

    #how-to-become .video-icon {
        height: 80px;
        width: 80px;
        line-height: 80px;
        text-align: center;
        border-radius: 100%;
        color: #116fdd !important;
        display: inline-block;
        background: rgb(17 113 227 / 24%);
        z-index: 999;
    }

    #how-to-become .waves {
        position: absolute;
        width: 180px;
        height: 180px;
        border: 1px solid #116fdd;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        border-radius: 100%;
        right: -50px;
        bottom: -50px;
        z-index: 1;
        -webkit-animation: waves 3s ease-in-out infinite;
        animation: waves 3s ease-in-out infinite;
    }

    #how-to-become .wave-1 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    #how-to-become .wave-2 {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    #how-to-become .wave-3 {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    #how-to-become .getstart-btn {
        position: absolute;
        top: 42%;
        right: 5%;
        background-color: #ffffffd1;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        padding: 15px;
        text-align: center;
        width: 15%;
        z-index: 12;
        border-radius: 15px;
        animation: updown-two 2.6s linear 0s infinite alternate;
    }

        #how-to-become .getstart-btn .button {
            font-size: 11px;
            padding: 10px 15px;
        }

    #how-to-become .paper-plane {
        position: absolute;
        top: 10%;
        right: 10%;
        transform: translateY(-25%) translateX(-25%);
        animation: animationFramesOne 10s infinite linear;
        z-index: 1;
    }

        #how-to-become .paper-plane i {
            font-size: 25px;
            color: #0e2641;
        }

.steps #accordion .card {
    background-color: transparent;
    border: 0;
    margin: 0;
}

    .steps #accordion .card .card-link {
        background-color: transparent;
        font-weight: bold;
    }

.step-body {
    padding: 0 20px;
    margin-bottom: 20px;
}

.steps #accordion .card::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    z-index: 1;
    left: 4px;
    top: 0;
    background-color: #0a223e;
}

.steps #accordion .card .card-link.collapsed::before {
    background-color: #ffffff;
    border: 2px solid #1169d0;
}

.steps #accordion .card .card-link::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    z-index: 1;
    left: 0;
    top: 18px;
    background-color: #1169d0;
    border: 2px solid #1169d0;
    border-radius: 50px;
    background-image: unset;
}

.step-body ul li {
    font-size: 14px;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px,0px) rotate(0deg)
    }

    20% {
        transform: translate(73px,-1px) rotate(36deg)
    }

    40% {
        transform: translate(141px,72px) rotate(72deg)
    }

    60% {
        transform: translate(83px,122px) rotate(108deg)
    }

    80% {
        transform: translate(-40px,72px) rotate(144deg)
    }

    100% {
        transform: translate(0px,0px) rotate(0deg)
    }
}
/*-------------------------*/


#other-services::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 51%, #e9f0ff 100%);
}

.os-box.one::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    height: 295px;
    border-radius: 495px;
    background: linear-gradient(180deg, rgb(242 16 39 / 33%) 0%, rgb(0 30 128 / 35%) 100%);
    filter: blur(55px);
    margin: auto;
    z-index: -1;
}

.os-box.two::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    height: 295px;
    border-radius: 495px;
    background: linear-gradient(180deg, rgb(59 56 111 / 52%) 0%, rgb(207 28 49 / 18%) 100%);
    filter: blur(55px);
    margin: auto;
    z-index: -1;
}

.os-box.three::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    height: 295px;
    border-radius: 495px;
    background: linear-gradient(180deg, rgb(255 154 36 / 53%) 0%, rgb(0 136 0 / 34%) 100%);
    filter: blur(55px);
    margin: auto;
    z-index: -1;
}

.os-box {
    padding: 50px;
    background-color: #ffffff78;
    border-radius: 10px;
    margin-bottom: 20px;
}

/*-------------------*/

#our-team {
    background-image: url(../images/bg-team-1.png);
}

#home-counter {
    margin-top: 30px;
}

.styconnect-content {
    background-image: url(../images/bg-shape.png);
}

#home-stayconnect {
    background-image: -webkit-linear-gradient(left, #0c2540 0%, #0a65d1 100%);
    background-image: linear-gradient(to right, #0c2540 0%, #0a63cc 100%);
}

#home-counter {
    z-index: 2;
}

.counter-content {
    background-image: -webkit-linear-gradient(left, #0c2540 0%, #0a65d1 100%);
    background-image: linear-gradient(to right, #0c2540 0%, #0a63cc 100%);
    padding: 40px 0 10px;
}

    .counter-content::before {
        content: "";
        position: absolute;
        background-image: url(../images/star-bg.png);
        background-size: 100%;
        width: 90%;
        height: 100%;
        top: 0;
        opacity: 0.1;
    }

.counter-icon {
    padding: 15px;
    background-color: #ffffff59;
    border-radius: 50px;
    margin-right: 20px;
}

#about-top .bg1 {
    position: absolute;
    right: 0;
    bottom: 0;
}

#about-top .bg2 {
    position: absolute;
    top: 0;
    left: 0;
}

    #about-top .bg2 img {
        width: 70%;
    }

#about-top {
    background-image: url('../images/map.png');
}

.Misi {
    animation: updown-two-big 2.6s linear 0s infinite alternate;
}

    .Misi::before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        width: 100%;
        height: 495px;
        border-radius: 495px;
        background: linear-gradient(180deg, rgb(10 98 202 / 78%) 0%, rgb(255 255 255) 100%);
        filter: blur(135px);
        margin: auto;
        z-index: 1;
    }

    .Misi img {
        width: 100%;
        position: relative;
        z-index: 2
    }

.Mission-Vision-Content p {
    line-height: 1.9;
}

.Mission-Vision-Content h2 {
    font-size: 2rem;
}

.vision-img {
    background-color: #f6d926;
    padding: 20px;
    width: 120px;
    height: 120px;
    margin: auto;
    -webkit-animation: client-border-radius 8s linear infinite alternate forwards;
    animation: client-border-radius 8s linear infinite alternate forwards;
}

.mission-img {
    background-color: #d81b2f;
    padding: 20px;
    width: 120px;
    height: 120px;
    margin: auto;
    -webkit-animation: client-border-radius 8s linear infinite alternate forwards;
    animation: client-border-radius 8s linear infinite alternate forwards;
}

.goal-img {
    background-color: #27658c;
    padding: 20px;
    width: 120px;
    height: 120px;
    margin: auto;
    -webkit-animation: client-border-radius 8s linear infinite alternate forwards;
    animation: client-border-radius 8s linear infinite alternate forwards;
}

/*-----------Services details-------------------*/


.service-detail-header .page-titles {
    position: relative;
    z-index: 5;
}

.service-detail-header .gradient-bg {
    position: relative;
    padding: 1.125rem 1.5rem;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
    line-height: 1;
    z-index: 2;
    margin-bottom: -24px;
}

.contact-table {
    position: relative;
    z-index: 5;
    color: #ffffff;
}

    .contact-table .colorone {
        padding: 70px 0;
        text-align: center;
    }

        .contact-table .colorone h2 {
            font-size: 2rem;
            font-weight: bold;
        }

.contact-icon span {
    position: relative;
    font-size: 20px;
    font-weight: 900;
    height: 47px;
    width: 47px;
    line-height: 47px;
    display: inline-block;
    text-align: center;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

    .contact-icon span::after {
        position: absolute;
        content: "";
        top: -10px;
        left: -10px;
        height: 67px;
        width: 67px;
        border-radius: 50%;
        opacity: 0.5;
        z-index: -1;
        background: #ffffff;
    }

.banner-content {
    position: absolute;
    right: -3%;
    top: 20%;
}

    .banner-content img {
        animation: ImgAnimate 3s infinite cubic-bezier(0.4, 0, 1, 1) 0.2s;
        width: 100%;
    }

.service-details h2 {
    font-size: 2rem;
}

.service-item-box {
    position: relative;
    padding: 30px 30px;
    border-radius: 5px;
    background: #F6F6F9;
    margin-bottom: 30px;
}

.contact-widget {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 15%;
}

.service-bottom-connect {
    background-color: #ddebfb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: solid 1px #b6d3f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
}


#NZ-top {
    background-image: url('../images/bg-team-1.png');
}

    #NZ-top .page-titles {
        margin-top: -12%;
    }

.cpl-feature {
    padding: 10px 20px;
}

    .cpl-feature::after {
        position: absolute;
        content: '';
        top: 11%;
        left: 50.9%;
        width: 1px;
        height: calc(100% - 24%);
        background-color: #e5e5e5;
        z-index: 1;
    }

.feature-box {
    position: relative;
    margin-bottom: 50px;
}

.feature-img-left {
    padding-right: 20px;
}

.feature-img-right {
    padding-left: 20px;
}

.feature-box img {
    width: 100%;
    border-radius: 10px;
}

.feature-text-right {
    padding-left: 20px;
    text-align: left;
    margin-top: 30px;
}

.feature-text-left {
    padding-right: 20px;
    text-align: right;
    margin-top: 30px;
}

.feature-box::before {
    position: absolute;
    content: '';
    top: 28.2%;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #19232d;
    border-radius: 50%;
    z-index: 2;
}

.feature-box::after {
    position: absolute;
    content: '';
    top: 26%;
    left: 49.4%;
    width: 25px;
    height: 25px;
    background-color: #dfe1e3;
    border-radius: 50%;
}
/*----------Loader------------*/

.loader-content {
    position: relative;
    width: 100px;
    height: 100px;
}

    .loader-content span {
        position: absolute;
        width: 100%;
        height: 100%;
        transform: rotate(calc(18deg * var(--i)));
    }

        .loader-content span::before {
            content: '';
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #FFF;
            position: absolute;
            top: 0;
            left: 0;
            filter: blur(5px);
            transform: scale(0);
            animation: load 2s linear infinite;
            animation-delay: calc(0.1s * var(--i));
        }

@keyframes load {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    10% {
        transform: scale(1.2);
        opacity: 1;
    }

    80%,100% {
        transform: scale(0);
        opacity: 0;
    }
}

.loader-plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
    animation-delay: -1.5s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-plane i {
    font-size: 30px;
    color: #FFF;
    position: absolute;
    top: -10px;
    left: 80px;
    transform: rotate(30deg);
}

@keyframes updown-two {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes updown-two-big {
    0% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0px);
    }
}


@keyframes client-border-radius {
    0% {
        border-radius: 50%/50%;
    }

    25% {
        border-radius: 40% 25% 50% 50%/50% 50% 50% 50%;
    }

    50% {
        border-radius: 50% 50% 25% 50%/50% 50% 50% 50%;
    }

    75% {
        border-radius: 50% 50% 50% 25%/50% 50% 50% 50%;
    }

    100% {
        border-radius: 50%/50%;
    }
}

.contact-header::before {
    content: "";
    position: absolute;
    background-color: #0a223e;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
}

.contact-header {
    background-image: url('../images/bg-shape-4.png')
}

.contact-box .icon-contact {
    background-color: #0a61c8;
    padding: 20px;
    border-radius: 5px;
    width: 100px;
    background-image: -webkit-linear-gradient(left, #0c2540 0%, #0a65d1 100%);
    background-image: linear-gradient(to right, #053a73 0%, #0a63cc 100%);
}

    .contact-box .icon-contact i {
        color: white;
        font-size: 50px;
    }

#stayconnect1 {
    margin-top: -150px;
}

.widget img {
    border-radius: 5px;
}



#our-testimonial .owl-nav {
    position: absolute;
    right: 0;
    top: -20%;
    text-align: right;
}

#our-testimonial .owl-prev {
    position: relative !important;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: var(--tp-common-white);
    background: #D8E5EB;
    margin-right: 15px;
}

#our-testimonial .owl-next {
    position: relative !important;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: var(--tp-common-white);
    background: #D8E5EB;
}

#our-testimonial .testi-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0px 4.4px 12px -1px rgba(19, 16, 34, 0.06), 0px 2px 6.4px -1px rgba(19, 16, 34, 0.03);
}

    #our-testimonial .testi-box p {
        margin-bottom: 0;
        font-size: 17px;
        font-weight: 500;
        line-height: 1.8;
        color: #4C4C4C;
    }

    #our-testimonial .testi-box img {
        border-radius: 20px;
    }


/*-------Mobile view------------*/

@media (max-width: 992px) {
    .navbar-brand {
        margin: 16px 0;
        width: 250px;
    }

    #home-banner .big-plane {
        left: -70px;
    }

    /* #home-banner .row {
        margin-top: 50px;
    }*/

    .pilot-img img {
        width: 150px;
    }

    /* #about::before {
        background-size: cover;
        height: 50%;
        top: -35%;
    }*/

    #about-top {
        height: 750px;
    }

        #about-top .bg1 img {
            width: 100%;
        }

    #how-to-become .content {
        padding: 50px 0;
    }

    #how-to-become .bg-color {
        right: -70%;
        height: 44%;
    }

        #how-to-become .bg-color img {
            height: 100%;
        }

    #how-to-become .banner-video {
        top: 10%;
        left: 5%;
        bottom: inherit;
        right: inherit;
    }

    #how-to-become .paper-plane {
        top: 10%;
        right: 20%;
    }

    #how-to-become .getstart-btn {
        top: 30%;
        right: 5%;
        width: 40%;
    }

    .service-item-box {
        min-height: auto !important;
    }

    .service-bottom-connect {
        display: block;
    }

        .service-bottom-connect a {
            margin-top: 20px;
        }

    #NZ-top {
        padding-top: 70px;
    }

        #NZ-top .page-titles {
            margin-top: 0;
        }

    .cpl-feature::after {
        content: none;
    }

    .feature-img-left {
        padding-right: 0;
    }

    .feature-img-right {
        padding-left: 0;
    }

    .feature-text-right {
        padding-left: 0;
    }

    .feature-text-left {
        padding-right: 0;
        text-align: left;
    }

    .feature-box::before {
        content: none;
    }

    .feature-box::after {
        content: none;
    }

    .footer-land-plane {
        width: 100%;
        margin-top: 0;
    }

    #stayconnect1 {
        margin-top: -130px;
    }
    .contact-img{
        margin-bottom:30px;
    }

    #our-testimonial .owl-nav{
        display:none;
    }
}
