@font-face {
    font-family: 'Ailerons';
    src: url('../../fonts/Ailerons-Regular.eot');
    src: url('../../fonts/Ailerons-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/Ailerons-Regular.woff2') format('woff2'), url('../../fonts/Ailerons-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*==== Common css start ====*/

* {
    outline: none;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #040c0f;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: #31869a;
}

@media screen and (max-device-width: 1023px) {
    body {
        -webkit-text-size-adjust: none;
    }
}

a {
    transition: 500ms ease all;
}

a:hover,
a:focus {
    outline: none;
    transition: 500ms ease all;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    font-weight: 600;
}

h1,
h2,
h3 {
    color: #3eaac3;
}

.img-pos {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bgLight {
    background-color: #163d47;
}

.colorBlue {
    color: #3eaac3;
}

.sectionPad {
    padding: 20px 0;
    overflow: hidden;
}

.btn-info {
    background-color: #4e8fa8;
    border-color: #4e8fa8;
    color: #fff !important;
    border-radius: 18px;
}

.btn-lg {
    width: 226px;
    height: 48px;
    border-radius: 28px;
}

.mgbottom30 {
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.inline-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.inline-flex .msg {
    flex-basis: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

@media(min-width: 768px) {
    .sectionPad {
        padding: 30px 0;
    }
}

@media(min-width: 1200px) {
    .sectionPad {
        padding: 60px 0;
    }
}

@media (max-width: 1023px) {
    .text-center-xs {
        text-align: center
    }
}


/*==== Common css end ====*/


/*==== Navigation css start ====*/
header {
    position: relative;
    background-color: #304B56;
}
.main-navbar {
    position: relative;
    z-index: 3;
}
.active-nav {
    width: 60px;
    height: 3px;
    position: absolute;
    top: 120px;
    display: none;
    background-color: #3fa6be;
    transition: 300ms linear;
    z-index: 3;
}
header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: #00577b;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
header:hover:before, header:focus:before {
    height: 100%;
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.nav-links {
    text-align: right;
    text-transform: capitalize;
    font-weight: 400;
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
}
/* .nav-links a:after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -5px;
    height: 2px;
} */
.nav-links a.active {
    color: #3fa6be;
}
.nav-links a.active:after {
    background-color: #3695ab;
}
.nav-links a:not(:last-child) {
    padding: 0 20px 0 0;
}
.nav-links a:nth-child(5) {
    padding: 0;
}

.nav-links a:hover {
    color: #3fa6be;
}

#nav-toggle {
    width: 36px;
    height: 32px;
    position: relative;
    margin: 47px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    float: right;
}

#nav-toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #3eaac3;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 0px;
}

#nav-toggle span:nth-child(2) {
    top: 14px;
}

#nav-toggle span:nth-child(3) {
    top: 28px;
}

#nav-toggle.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#nav-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-toggle.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media (min-width: 1024px) {
    .main-navbar {
        width: 100%;
        position: absolute;
        left: 0;
        top: 42px;
        background-color: rgba(48, 75, 86, .8);
    }
    .main-navbar:after {
        width: 100%;
        height: 0;
        background-color: #00577b;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: .3s ease;
    }
    .main-navbar:hover:after {
        height: 100%;
    }
    .main-navbar .container {
        display: flex;
        align-items: center;
    }
    .main-navbar .nav-links {
        display: flex !important;
        margin-left: auto;
    }
    .mobile-links,
    #nav-toggle {
        display: none;
    }
    .active-nav {
        display: block;
    }
}

@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
    .upper-navbar {
        display: none;
    }
    .mobile-links {
        display: block;
    }
    .main-navbar .nav-links {
        text-align: left;
        padding: 15px 30px;
        background-color: #040c0f;
        margin: 0 -15px;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .main-navbar .nav-links.active {
        height: 100%;
        overflow: auto;
    }
    .main-navbar .nav-links a {
        display: block;
        margin: 0;
        padding: 10px;
    }
}


/*========starts for the upper navbar========*/

.upper-navbar {
    position: relative;
    padding: 12px 0;
    background-color: #0d242b;
    z-index: 2;
}

.upper-navbar .nav-links a {
    font-size: 13px;
    line-height: 18px;
}


/*========ends for the upper navbar========*/


/*========starts for the lower navbar========*/

.main-navbar .nav-links a {
    font-size: 15px;
}


/*========starts for the lower navbar========*/


/*==== Navigation css end ====*/

.form-dark .form-group {
    margin-bottom: 25px;
}

.form-dark input {
    height: 54px;
}

.form-dark input,
.form-dark textarea,
.form-dark select {
    background-color: rgba(4, 12, 15, 0.5);
    border-radius: 28px;
    border: none;
    color: #31869a;
    font-weight: 300;
    font-size: 18px;
    padding: 20px 30px;
}

.form-dark input::-webkit-input-placeholder {
    color: #31869a !important;
}

.form-dark input:-moz-placeholder {
    color: #31869a !important;
}

.form-dark input::-moz-placeholder {
    color: #31869a !important;
}

.form-dark input:-ms-input-placeholder {
    color: #31869a !important;
}

.form-dark textarea::-webkit-input-placeholder {
    color: #31869a !important;
}

.form-dark textarea:-moz-placeholder {
    color: #31869a !important;
}

.form-dark textarea::-moz-placeholder {
    color: #31869a !important;
}

.form-dark textarea:-ms-input-placeholder {
    color: #31869a !important;
}

textarea {
    resize: none;
}


/*==== Footer css start ====*/

footer {
    /*background-color: #040c0f;*/
    padding: 25px 0;
}

footer,
footer a {
    color: #31879b;
    font-size: 14px;
    font-weight: 300;
}

footer a:hover,
footer a:focus {
    color: #fff;
}

footer p {
    margin: 0;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-social-link h4 {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 10px;
}
.footer-social-link a {
    display: inline-block;
    width: 25px;
    margin-right: 15px;
}
.footer-social-link.partners a {
    width: 55px;
}
.footer-social-link.partners img {
    width: 100%;
    height: 26px;
}

@media(max-width: 1023px) {
    .flex-row {
        flex-direction: column;
    }
    .flex-row > div {
        margin-bottom: 25px;
        text-align: center;
        line-height: 22px;
    }
}
/*==== Footer css end ====*/


/*====for the blockquote text====*/

.block-text {
    padding: 20px 30px;
    margin: 0 0 20px 0;
    color: #3FA4BC;
    border-left: 0;
    font-style: italic;
}


/*====for the blockquote text====*/

.error {
    width: 100%;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 16px 30px;
    border-radius: 28px;
    background-color: #163d47;
    color: #c32e2e;
    font-size: 16px;
    text-align: left;
    text-transform: capitalize;
}

textarea+.error {
    height: 100%;
}

.g-recaptcha+button+span,
.g-recaptcha+button+span+span {
    font-size: 14px;
    padding: 5px 0;
    flex-basis: 100%;
    color: #c32e2e;
    text-align: left;
}

@media (max-width: 600px) {
    .footer-form-flex {
        flex-direction: column;
    }
    .footer-form-flex button {
        margin-top: 15px;
    }
}


/* Start Loader */

.loader-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: #005b82;
    background: -moz-radial-gradient(center, ellipse cover, #005b82 0%, #040c0f 70%);
    background: -webkit-radial-gradient(center, ellipse cover, #005b82 0%, #040c0f 70%);
    background: radial-gradient(ellipse at center, #005b82 0%, #040c0f 70%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005b82', endColorstr='#040c0f', GradientType=1);
    z-index: 999;
}

svg.loader-svg {
    display: none;
}

.blobs {
    -webkit-filter: url(#goo);
    filter: url(../../img/blob.svg#goo);
    width: 300px;
    height: 110px;
    position: relative;
    overflow: hidden;
    border-radius: 70px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.blobs .blob-center {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: absolute;
    background: #3eaac3;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-animation: blob-grow linear 3.4s infinite;
    animation: blob-grow linear 3.4s infinite;
    border-radius: 50%;
    -webkit-box-shadow: 0 -10px 40px -5px #3eaac3;
    box-shadow: 0 -10px 40px -5px #3eaac3;
}

.blob {
    position: absolute;
    background: #3eaac3;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-animation: blobs ease-out 3.4s infinite;
    animation: blobs ease-out 3.4s infinite;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    opacity: 0;
}

.blob:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.blob:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.blob:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.blob:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.blob:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@keyframes blobs {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
        transform: scale(0) translate(calc(-330px - 50%), -50%);
    }
    1% {
        opacity: 1;
    }
    35%,
    65% {
        opacity: 1;
        -webkit-transform: scale(0.9) translate(-50%, -50%);
        transform: scale(0.9) translate(-50%, -50%);
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
        transform: scale(0) translate(calc(330px - 50%), -50%);
    }
}

@-webkit-keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}

@keyframes blob-grow {
    0%,
    39% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
    40%,
    42% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    43%,
    44% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    45%,
    46% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    47%,
    48% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    52% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    54% {
        -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
        transform: scale(1.7, 1.6) translate(-50%, -50%);
    }
    58% {
        -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
        transform: scale(1.8, 1.7) translate(-50%, -50%);
    }
    68%,
    70% {
        -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
        transform: scale(1.7, 1.5) translate(-50%, -50%);
    }
    78% {
        -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
        transform: scale(1.6, 1.4) translate(-50%, -50%);
    }
    80%,
    81% {
        -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
        transform: scale(1.5, 1.4) translate(-50%, -50%);
    }
    82%,
    83% {
        -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
        transform: scale(1.4, 1.3) translate(-50%, -50%);
    }
    84%,
    85% {
        -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
        transform: scale(1.3, 1.2) translate(-50%, -50%);
    }
    86%,
    87% {
        -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
        transform: scale(1.2, 1.1) translate(-50%, -50%);
    }
    90%,
    91% {
        -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
        transform: scale(1, 0.9) translate(-50%, -50%);
    }
    92%,
    100% {
        -webkit-transform: scale(0) translate(-50%, -50%);
        transform: scale(0) translate(-50%, -50%);
    }
}


/* End Loader */