/* navbar */
#navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: 0.4s ease-out;
}
.main-header .nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.main-header .nav-links .nav-link a {
    padding: 0 30px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: "helveticaneuethin";
    text-decoration: none;
}
.main-header .nav-links .nav-link a:hover {
  color: #fff;
}
.main-header .menu-icon {
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: #ffffff;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}
.main-header .menu-icon__line::before, .main-header .menu-icon__line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #ffffff;
  transition: background 0.8s ease;
}
.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}
.main-header .menu-icon__line::after {
  transform: translateY(5px);
}
.main-header .menu-btn {
  display: none;
}
.scrolled {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background-color: #07001f00;
    background-image: linear-gradient(#000a15b0, #07001f4d);
    box-shadow: rgb(0 0 0 / 30%) 0px 2px 20px 0px;
}
.main-header.scrolled .menu-icon__line, .main-header.scrolled .menu-icon__line::before, .main-header.scrolled .menu-icon__line::after {
  background: white;
}
.nav_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.join_us_btn {
    background: #FFFFFF0A;
    text-decoration: none;
    color: #F1F8FF;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid #e0efff4d;
    transition: all .5s linear;
    font-size: 16px;
    position: relative;
    z-index: 9;
}
.join_us_btn:hover{
    background: radial-gradient(#00204400, #004a99);
    transition: all .5s linear;
    color: #ffffff;
    border-color: #004a99;
}
    .menu_wrap {
    display: none;
    align-items: center;
    gap: 10px;
}
@media screen and (max-width: 860px) {
.menu_wrap{
    display: flex;
}
  .nav_buttons{
    display: none;
  }
  .main-header .menu-icon {
    display: block;
  }
  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }
  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }
    .main-header .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        flex-direction: column;
        align-items: center;
        padding: 50px 0px;
        width: 100vw;
        height: 100vh;
        color: #fff;
        background: #000a15;
        transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
        clip-path: circle(200px at top right);
    }
  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
  }
    .main-header .nav-links .nav-link a {
        display: block;
        padding: 20px 30px;
        border-bottom: 1px solid #ffffff0d;
        font-size: 34px;
    }
  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    clip-path: circle(100% at center);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }
  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: white;
    animation: openTop 0.8s forwards;
  }
  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: white;
    animation: openBtm 0.8s forwards;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}
@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

/* header */
#header {
    padding: 170px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}
#header .container{
    position: relative;
    z-index: 99;
}
.caption {
    color: #FFFFFF;
    font-size: 50px;
    font-family: "helveticaneuelight";
    width: 790px;
    text-align: center;
    margin: auto;
}
.header_description {
    color: #ffffff96;
    font-size: 16px;
    font-family: "helveticaneuethin";
    width: 640px;
    margin: 40px auto 30px;
    text-align: center;
}
.header_img {
    border-radius: 20px;
    height: 500px;
    width: 900px;
    overflow: hidden;
    position: relative;
    margin: 80px auto 0px;
    background: linear-gradient(270.23deg, #001935 -1.2%, #001935 108%);
    padding: 7px;
}
.header_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.header_top .common_btn {
    margin: auto;
}
.who_we_are_content p {
    color: #FFFFFFAD;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    font-family: "helveticaneuethin";
}
.who_we_are_img {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-right: 60px;
}
.who_we_are_img::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000026;
}
.who_we_are_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.what_we_offer_wrap {
    border-radius: 30px;
    border: 1px solid #49505838;
    background: #000E1C;
    padding: 30px;
    text-align: center;
    min-height: 430px;
    position: relative;
    overflow: hidden;
    transition: all .5s linear;
}
.what_we_offer_wrap:hover {
    background: radial-gradient(#00204400, #004a995e);
    transition: all .5s linear;
}
.what_we_offer_wrap::after {
    position: absolute;
    content: '';
    width: 320px;
    height: 200px;
    background: #004A9973;
    top: 0;
    right: -100px;
    border-radius: 50%;
    filter: blur(100px);
}
.what_we_offer_wrap img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin: auto;
}
.what_we_offer_wrap .common_sub_headings {
    margin: 40px 0px 30px;
}
.cta {
    border-radius: 20px;
    background: #011021;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    gap: 70px;
}
.cta_image {
    min-width: 400px;
    overflow: hidden;
    height: 300px;
    border-radius: 20px;
}
#header_slider {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
#header_slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
}
#header_slider .owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff6e !important;
}
#header_slider .owl-dots button.active{
    background: #fff!important;
}
.cta_right p {
    width: 570px;
    margin: 20px 0px 50px;
    font-size: 18px;
}
.cta_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.copy_right {
    border-top: 1px solid #2727276B;
    padding: 15px 0;
    text-align: center;
    margin-top: 100px;
}
.copy_right p{
    margin: 0;
    color: #FFFFFFAD;
    font-size: 14px;
    font-family: "helveticaneuethin";
}
.footer_centre ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer_centre ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}
.footer_centre ul li span {
    color: #FFFFFF;
    font-size: 16px;
    min-width: 120px;
}
.footer_centre ul li a{
    color: #FFFFFFAD;
    text-decoration: none;
    font-family: "helveticaneuethin";
    font-size: 16px;
    transition: all .5s linear;
}
.footer_centre ul li a:hover {
    color: #ffffff;
    transition: all .5s linear;
}
.footer_centre {
    width: 350px;
}
.ftr_title {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}
.ftr_social_media a {
    color: #FFFFFFAD;
    text-decoration: none;
    font-family: "helveticaneuethin";
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    transition: all .5s linear;
}
.ftr_social_media a:hover {
    color: #ffffff;
    transition: all .5s linear;
}
footer{
    position: relative;
    
}
footer .container{
    position: relative;
    z-index: 9;
}
footer::after {
    position: absolute;
    content: '';
    width: 400px;
    height: 290px;
    background: linear-gradient(93.31deg, rgba(0, 74, 153, 0.4) 13.72%, rgba(59, 208, 254, 0.4) 74.2%);
    top: -70px;
    left: -250px;
    border-radius: 50%;
    filter: blur(130px);
}
footer::before {
    position: absolute;
    content: '';
    width: 120px;
    height: 320px;
    top: 0;
    right: 0;
    border-radius: 50%;
    filter: blur(100px);
    background: linear-gradient(93.31deg, rgba(0, 74, 153, 0.4) 13.72%, rgba(59, 208, 254, 0.4) 74.2%);
}
.footer_left .common_title {
    margin-bottom: 40px;
    width: 550px;
}
.header_bg {
    position: absolute;
    top: 600px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle {
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle img{
  position: absolute;
}
.circle01{
  animation: rotateCircle 30s linear infinite;
  width: 150vw;
}
@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.circle02 {
    animation: rotateCircleReverse 30s linear infinite;
    width: 120vw;
}
@keyframes rotateCircleReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
#who_we_are {
    background: linear-gradient(180deg, #000f20, transparent);
    z-index: 9;
    position: relative;
    padding-top: 150px;
}
.header {
    position: relative;
}
.header::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 770px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(93.31deg, #004A99 13.72%, #004A99 74.2%);
    filter: blur(140px);
    z-index: -1;
}
.circle03 {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#what_we_offer_slider .owl-nav button {
    width: 45px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border-radius: 50%;
    border: 1px solid #ffffff24 !important;
    font-size: 20px !important;
}

/* 404 */
.four-not-four {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .error {
    width: 100%;
    height: 400px;
    margin: auto;
    margin: 0px auto;
  }
  .error img {
    width: 600px;
    height: 100%;
    object-fit: contain;
  }
  .error-text {
    width: 100%;
    text-align: center;
    margin-top: 0px;
  }
  .error-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00A2FA;
    text-transform: uppercase;
    margin: 0px 0px 5px;
  }
  .error-text p{
    font-size: 14px;
    color: #0000009d;
    font-weight: 400;
    margin: 0;
  }
  .error-text a {
    text-decoration: none;
    font-weight: 600;
    background: #004A99;
    align-items: center;
    color: #ffffff;
    padding: 12px 40px;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 5px;
  }
  @media(max-width: 575px){
    .error{
        height: unset;
        text-align: center;
    }
    .error img{
        height: unset;
        width: 70%;
    }
    .error-text h2 {
        font-size: 24px;
    }
  }
/**/