@font-face {
    font-family: 'Gotham';
    src: local('gotham book'), local('gotham-book'),
        url('./gotham-book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: local('gotham medium'), local('gotham-medium'),
        url('./gotham-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: local('gotham bold'), local('gotham-bold'),
        url('./gotham-bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: local('gotham black'), local('gotham-black'),
        url('./gotham-black.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #ff7200;
    --secondary-color: #0b4da1;
    --default-color: #000000;
    --light-bg: #edf3ff;
}

html,
body {
    scroll-behavior: smooth;
}

* {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    line-height: 1.5;
    letter-spacing: 0.05rem;
    color: var(--default-color);
}

hr {
    border-color: #cad5e9;
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
}

img,
svg {
    display: block;
    width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

.primary-color {
    color: var(--primary-color) !important;
}

.secondary-color {
    color: var(--secondary-color) !important;
}

.light-color {
    color: var(--light-bg) !important;
}

.light-bg {
    background-color: var(--light-bg) !important;
}

.default-color {
    color: var(--default-bg) !important;
}

.transition-0 {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.transition-200ms {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.bg-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bg-img img.object-top {
    object-position: top center;
}

.title {
    position: relative;
    font-weight: 600;
    color: var(--secondary-color);
}

.title.title-light {
    color: #ffffff;
}

.theme-title .bottom-img {
    max-width: 6rem;
}

.theme-title .bottom-img .mx-h {
    width: auto;
    max-height: 1.1rem;
}

.theme-title.text-center .bottom-img {
    margin: 0 auto 1rem;
}

.d-hide {
    display: none;
}

.tiny-text {
    font-size: 12px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

p,
a,
li,
.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.btn-div {
    max-width: 180px;
    height: 54px;
    margin: 1.5rem auto 1rem;
}

.btn-div:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}


/* Media Queries */
@media (min-width:992px) {
    .modal-lg {
        max-width: 1280px
    }

    .title {
        font-size: 2.25rem;
    }
}

@media screen and (min-width: 1440px) {
    .title {
        font-size: 2.75rem;
    }

    .container,
    .container-md {
        max-width: 1320px;
    }
}

@media screen and (min-width: 1920px) {

    .container,
    .container-md {
        max-width: 1560px;
    }
}

@media screen and (max-width: 1440px) {

    .fs-13 {
        font-size: 12px;
    }

    .fs-14 {
        font-size: 13px;
    }

    .fs-15 {
        font-size: 14px;
    }

    p,
    a,
    li,
    .fs-16 {
        font-size: 15px;
    }

    .fs-18 {
        font-size: 0.95rem;
    }

    .fs-20 {
        font-size: 1.15rem;
    }
}

/* Header */
header nav.navbar {
    padding: 18px 0;
    background-color: transparent;
    /* backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0); */
}

header nav.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    z-index: 1;
    background-image: linear-gradient(to bottom, #ffffffbb, transparent);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

header.scroll nav.navbar {
    background-color: #ffffffc7;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px #0000001c;
}

header.scroll nav.navbar::after {
    height: 100%;
}

.navbar-brand {
    max-width: 200px;
}

header.scroll .navbar-brand {
    max-width: 160px;
}

header nav.navbar .navbar-nav .nav-item {
    padding: 0 3px;
}

header nav.navbar .navbar-nav .nav-link {
    color: var(--default-color);
    padding: 8px 14px;
}

header nav.navbar .navbar-nav .nav-link.active,
header nav.navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

header nav.navbar .navbar-nav .dropdown-item {
    font-weight: 500;
}

header nav.navbar .navbar-nav .dropdown-item.active {
    color: var(--dark-color);
    background-color: #c2df1f73;
}

header nav.navbar .navbar-nav .dropdown-item:hover {
    background-color: #c2df1f73;
}

header .icon {
    width: 30px;
    cursor: pointer;
}

header .icon .line-1,
header .icon .line-2,
header .icon .line-3 {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
}

header .no-animation {
    animation: none !important;
}

header .icon .line-1 {
    animation: line-1-rev 0.6s forwards;
}

header .icon .line-2 {
    margin: 6px 0;
    animation: line-2-rev 0.6s forwards;
}

header .icon .line-3 {
    animation: line-3-rev 0.6s forwards;
}

header .icon.active .line-1 {
    animation: line-1 0.6s forwards;
}

header .icon.active .line-2 {
    animation: line-2 0.6s forwards;
}

header .icon.active .line-3 {
    animation: line-3 0.6s forwards;
}

@keyframes line-1 {
    0% {
        transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -o-transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(9px) rotate(0);
        -webkit-transform: translateY(9px) rotate(0);
        -moz-transform: translateY(9px) rotate(0);
        -ms-transform: translateY(9px) rotate(0);
        -o-transform: translateY(9px) rotate(0);
    }

    100% {
        transform: translateY(9px) rotate(45deg);
        -webkit-transform: translateY(9px) rotate(45deg);
        -moz-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        -o-transform: translateY(9px) rotate(45deg);
    }
}

@keyframes line-2 {
    0% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(0);
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }
}

@keyframes line-3 {
    0% {
        transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -o-transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-9px) rotate(0);
        -webkit-transform: translateY(-9px) rotate(0);
        -moz-transform: translateY(-9px) rotate(0);
        -ms-transform: translateY(-9px) rotate(0);
        -o-transform: translateY(-9px) rotate(0);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
        -webkit-transform: translateY(-9px) rotate(135deg);
        -moz-transform: translateY(-9px) rotate(135deg);
        -ms-transform: translateY(-9px) rotate(135deg);
        -o-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes line-1-rev {
    0% {
        transform: translateY(9px) rotate(45deg);
        -webkit-transform: translateY(9px) rotate(45deg);
        -moz-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        -o-transform: translateY(9px) rotate(45deg);
    }

    50% {
        transform: translateY(9px) rotate(0);
        -webkit-transform: translateY(9px) rotate(0);
        -moz-transform: translateY(9px) rotate(0);
        -ms-transform: translateY(9px) rotate(0);
        -o-transform: translateY(9px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -o-transform: translateY(0) rotate(0);
    }
}

@keyframes line-2-rev {
    0% {
        transform: scale(0);
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

@keyframes line-3-rev {
    0% {
        transform: translateY(-9px) rotate(135deg);
        -webkit-transform: translateY(-9px) rotate(135deg);
        -moz-transform: translateY(-9px) rotate(135deg);
        -ms-transform: translateY(-9px) rotate(135deg);
        -o-transform: translateY(-9px) rotate(135deg);
    }

    50% {
        transform: translateY(-9px) rotate(0);
        -webkit-transform: translateY(-9px) rotate(0);
        -moz-transform: translateY(-9px) rotate(0);
        -ms-transform: translateY(-9px) rotate(0);
        -o-transform: translateY(-9px) rotate(0);
    }

    100% {
        transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -o-transform: translateY(0) rotate(0);
    }
}



/* Banner */
.banner {
    padding: 160px 0;
}

.banner h1 {
    font-weight: 700;
    color: var(--secondary-color);
}

.banner h1 {
    font-size: clamp(1.95rem, 5vw, 4.5rem);
}

.banner h1 span {
    font-size: 0.575em;
    font-weight: 500;
}

.banner .plane-img {
    position: relative;
    padding: 4rem 1rem 0;
    max-width: 80%;
    transition: all 2s linear;
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    -ms-transition: all 2s linear;
    -o-transition: all 2s linear;
}

.banner .plane-img img {
    animation: flyIn 2s ease-out forwards;
    -webkit-animation: flyIn 2s ease-out forwards;
}

@keyframes flyIn {
    0% {
        transform: translate(75%, 50%) scale(0.1);
        -webkit-transform: translate(75%, 50%) scale(0.1);
        -moz-transform: translate(75%, 50%) scale(0.1);
        -ms-transform: translate(75%, 50%) scale(0.1);
        -o-transform: translate(75%, 50%) scale(0.1);
    }

    100% {
        transform: translate(0%, 0%) scale(1.1);
        -webkit-transform: translate(0%, 0%) scale(1.1);
        -moz-transform: translate(0%, 0%) scale(1.1);
        -ms-transform: translate(0%, 0%) scale(1.1);
        -o-transform: translate(0%, 0%) scale(1.1);
    }
}

/* What We Do */
.benefits .left-side .task:first-child,
.benefits .left-side .task:last-child {
    margin-right: -40px;
}

.benefits .right-side .task:first-child,
.benefits .right-side .task:last-child {
    margin-left: -40px;
}

.fan-img {
    max-width: 360px;
    margin: 0 auto;
}

.benefits .task {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.what-we-do .task {
    text-align: center;
}

.what-we-do .task .icon {
    max-width: 70px;
    margin: 0 auto 1rem;
}

.what-we-do .task * {
    color: #ffffff;
}

.what-we-do .left-side *,
.what-we-do .right-side * {
    color: white;
}

.what-we-do .content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.what-we-do .task:hover * {
    color: var(--primary-color);
}

.what-we-do .task:hover .icn path {
    fill: #ffffff;
}

.what-we-do .task:hover .icn.stroke path {
    stroke: white
}

.what-we-do .task:hover .icn circle {
    fill: var(--primary-color);
}

.benefits .task .icon {
    min-width: 60px;
}

.benefits .task .icon:hover .icn path {
    fill: #ffffff;
}

.benefits .task .icon:hover .icn circle {
    fill: var(--secondary-color);
}


/* Want to talk */
.want-to-talk {
    background-image: linear-gradient(to bottom, var(--light-bg) 50%, #ffffff 50%);
}

.want-to-talk .bg-img {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.want-to-talk .bg-img img {
    object-fit: contain;
}

.want-to-talk .content {
    min-height: calc(100% - 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
}

.rocket-icon {
    max-width: 40px;
    margin: 0 auto 0.5rem;
}

/* Footer */
.contact-form {
    max-width: 95%;
}

label.form-label {
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.input-field,
.textarea-field,
.select-input.bootstrap-select>.dropdown-toggle {
    width: 100%;
    padding: 0.625rem 1rem;
    background-color: white;
    border: 1px solid #c7ddff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.input-field:focus-visible,
.textarea-field:focus-visible,
.select-input.bootstrap-select>.dropdown-toggle:focus,
.select-input.bootstrap-select>.dropdown-toggle:focus-visible {
    border-color: #b2d1ff;
    outline: none !important;
    box-shadow: 2px 3px 10px #37363621;
}

.footer {
    padding: 80px 1rem 30px;
}

.footer-logo {
    max-width: 280px;
}

.footer .icon svg,
.footer .icon img {
    max-width: 20px;
    max-height: 20px;
    margin: 0 auto 0.75rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer .list-unstyled {
    position: relative;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    background-image: linear-gradient(to right, #043f8b00, #043f8b99, #043f8b, #043f8b99, #043f8b00);
}

.footer .list-unstyled::before,
.footer .list-unstyled::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0.3;
    background-image: linear-gradient(to right, #ffffff00, #ffffff99, #ffffff, #ffffff99, #ffffff00);
}

.footer .list-unstyled::before {
    top: 0;
}

.footer .list-unstyled::after {
    bottom: 0;
}

footer .copyright {
    background-color: var(--default-color);
    padding: 0.75rem 1rem;
}

footer .copyright * {
    color: #ffffff;
}

.we-provide {
    margin-top: 50px;
}

@media screen and (min-width:576px) {
    .what-we-do .task {
        max-width: 33.33336%;
    }

    .we-provide .content {
        max-width: 90%;
    }
}

@media screen and (min-width:992px) {

    header nav.navbar .navbar-nav .btn,
    header nav.navbar .navbar-nav .nav-link {
        font-size: 0.875rem;
    }

    .what-we-do {
        margin-top: -2rem;
    }

    .want-to-talk .content,
    .what-we-do .sub-title,
    .coming-soon .content {
        max-width: 85%;
    }

    .what-we-do .center-img {
        width: 100%;
        max-width: 20%;
        padding: 0.5rem 1.5rem;
    }

    .what-we-do .left-side,
    .what-we-do .right-side {
        width: 100%;
        max-width: 40%;
    }

    .want-to-talk .fixed-ratio {
        aspect-ratio: 1440 / 420;
    }

    .contact-form {
        max-width: 60%;
    }

    .title-br {
        display: none;
    }
}

@media screen and (min-width:1200px) {
    header nav.navbar .navbar-nav .nav-link {
        font-size: 0.935rem;
    }

    header nav.navbar .navbar-nav .btn {
        font-size: 0.975rem;
    }

    .what-we-do {
        margin-top: -3rem;
    }

    .what-we-do .task {
        max-width: 20%;
    }

    .what-we-do .content {
        max-width: 90%;
        margin: 0 auto;
    }

    .what-we-do .center-img {
        max-width: 24%;
        padding: 0.5rem 2rem;
    }

    .what-we-do .left-side,
    .what-we-do .right-side {
        max-width: 38%;
    }

    .what-we-do .task:nth-child(even) {
        margin-top: 1.75rem;
    }
}

@media screen and (min-width:1440px) {

    header nav.navbar .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .want-to-talk .fixed-ratio {
        aspect-ratio: 1440 / 464;
    }

    /* .banner h1 {
        font-size: 3rem;
    } */

    .want-to-talk .content {
        max-width: 65%;
    }

    .what-we-do .sub-title,
    .coming-soon .content {
        max-width: 60%;
    }

    .contact-form {
        max-width: 70%;
    }
}

@media screen and (max-width: 1199px) {

    .banner {
        padding-top: 110px;
    }

    .want-to-talk .image-xl {
        display: none;
    }

    .want-to-talk .image-lg {
        display: block;
    }
}

@media screen and (max-width: 991px) {

    header nav.navbar,
    header.scroll nav.navbar {
        background-color: #ffffff9e;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 12px #0000001c;
    }

    button.navbar-toggler,
    button.navbar-toggler:focus:not(:focus-visible) {
        outline: none;
        border: none;
        box-shadow: none;
    }

    header nav.navbar .navbar-nav {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    header nav.navbar::after {
        height: 100%;
    }

    .banner {
        padding-top: 100px;
    }

    /* .what-we-do {
        margin-top: -3rem;
    } */

    .about-img {
        max-width: 460px;
    }

    .about-us * {
        text-align: center;
    }

    .about-us .theme-title .centered {
        display: block;
    }

    .about-us .theme-title .left {
        display: none;
    }

    .benefits .left-side .task * {
        text-align: left;
    }

    .benefits .left-side .task .icon {
        margin-right: 1rem;
    }

    .benefits .task {
        align-items: start;
    }

    .benefits .left-side .task:first-child,
    .benefits .left-side .task:last-child {
        margin-right: 0;
    }

    .benefits .right-side .task:first-child,
    .benefits .right-side .task:last-child {
        margin-left: 0;
    }

    .want-to-talk .fixed-ratio {
        aspect-ratio: 1440 / 560;
    }

    h1 {
        font-size: 36px;
    }

    .title {
        font-size: 30px;
    }

    .what-we-do .task h5 {
        font-size: 1rem;
        line-height: 1.5;
    }

    .banner .image-xl {
        display: none;
    }

    .banner .image-lg {
        display: block;
        object-position: top !important;
    }

    .want-to-talk .image-xl,
    .want-to-talk .image-lg {
        display: none;
    }

    .want-to-talk .image-md {
        display: block;
    }

    .btn-div {
        max-width: 140px;
        height: 42px;
        margin: 1.5rem auto 2rem;
    }
}

@media screen and (max-width: 767px) {
    .banner .plane-img {
        padding: 20px 0.75rem 0;
    }

    .banner .image-lg {
        display: none;
    }

    .banner {
        padding: 60px 0 30px;
    }

    .what-we-do {
        margin-top: -2rem;
    }

    .banner .image-lg {
        display: none;
    }

    .banner .image-sm {
        display: block;
        object-position: top !important;
    }

    .want-to-talk .fixed-ratio {
        aspect-ratio: inherit;
    }

    .want-to-talk .image-xl,
    .want-to-talk .image-lg,
    .want-to-talk .image-md {
        display: none;
    }

    .want-to-talk .image-sm {
        display: block;
        object-fit: cover !important;
    }

    .want-to-talk .btn-div {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 575px) {
    h1 {
        font-size: 30px;
    }

    .title {
        font-size: 26px;
    }

    .what-we-do {
        margin-top: 0;
        /* padding-top: 5rem; */
    }

    .banner .plane-img {
        padding: 30px 10px 0;
        max-width: 100%
    }

    .benefits .task .icon {
        margin-bottom: 1rem;
    }

    .benefits .task {
        align-items: center;
        flex-direction: column;
    }

    .benefits .task * {
        text-align: center !important;
    }
}

@media screen and (max-width: 480px) {
    .copy-br {
        display: block;
    }
}

@media screen and (max-width: 375px) {
    .banner {
        padding-top: 120px;
    }
}