:root {
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-tini: 12px;
    --font-size-big: 170px;
    --font-size-h1: 76px;
    --font-size-h2: 56px;
    --font-size-h3: 46px;
    --font-size-h4: 36px;
    --font-size-h5: 26px;
    --font-size-h6: 20px;
    --space-size: 30px;
    --input-height: 52px;
    --color-pri: #004770;
    --color-sec: #009DDA;
    --color-white: #fff;
    --color-black: #000;
    --color-gray: #9F9F9F;
    --color-gray-2: #D1D1D1;
    --color-gray-3: #F3F3F3;
}

body {
    font-family: "Helvetica", sans-serif;
    color: var(--color-black);
    font-size: var(--font-size-base);
    line-height: 1.5;
    font-weight: normal;
    /* scroll-behavior: smooth; */
}

/* ////// */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ///// */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: calc(var(--space-size) * 1/2);
    font-weight: normal;
    line-height: 1.4;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 300;
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h5);
}

h6 {
    font-size: var(--font-size-h6);
}

video,
img {
    max-width: 100%;
    height: auto;
}

.big-font {
    font-size: var(--font-size-big);
}

a {
    color: var(--color-pri);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-pri);
}

a:hover svg path,
a:focus svg path {
    stroke: var(--color-pri);
}

input,
select {
    display: inline-block;
}

.color-w {
    color: var(--color-white);
}

.color-black {
    color: var(--color-black)
}

.color-pri {
    color: var(--color-pri);
}

.color-gray {
    color: var(--color-gray);
}

.bg-w {
    background-color: var(--color-white);
}

.bg-pri {
    background-color: var(--color-pri);
}

.bg-gray {
    background-color: #f5f5f5;
}

.bg-gray-2 {
    background-color: #F3F3F3;
}

.pb-base {
    padding-bottom: calc(var(--space-size) * 4/3) !important;
}

.mb-base {
    margin-bottom: calc(var(--space-size) * 4/3) !important;
}

.mb-big {
    margin-bottom: calc(var(--space-size) * 8/3) !important;
}

hr {
    border-color: var(--color-gray-2);
    opacity: 1;
    margin: var(--space-size) 0;
}

.fs-small {
    font-size: var(--font-size-small);
}

section {
    overflow: hidden;
}

.btn {
    height: var(--input-height);
    background-color: var(--color-pri);
    background: linear-gradient(to right, var(--color-sec), var(--color-pri));
    padding: 0 calc(var(--space-size) * 2/3);
    border: 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    color: var(--color-white);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn svg {
    margin-left: calc(var(--space-size) * 1/2);
    transition: all 0.3s ease-in-out;
}

.btn * {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.btn:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(to right, var(--color-pri), var(--color-sec));
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.btn:focus,
.btn:hover {
    color: var(--color-white);
    /* background: linear-gradient(to right, var(--color-pri), var(--color-sec)); */
}

.btn:hover:after {
    opacity: 1;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn:hover svg path {
    stroke: var(--color-white);
}

.btn.btn-white {
    background: var(--color-white);
    color: var(--color-pri);
}

.btn.btn-white:focus,
.btn.btn-white:hover {
    background: var(--color-white);
    color: var(--color-pri);
}

.btn.btn-white:after {
    content: none;
}

.btn.btn-white:hover svg path {
    stroke: var(--color-pri);
}

select,
input {
    height: var(--input-height);
    background-color: transparent;
    padding: 0 calc(var(--space-size) * 2/3);
    border: 1px solid var(--color-black);
    border-radius: 0;
    outline: none;
    width: 100%;
}

textarea {
    border: 0;
    border-radius: 0;
    outline: none;
    width: 100%;
    padding: calc(var(--space-size) * 2/3);
    background-color: transparent;
    font-weight: 400;
    height: calc(var(--space-size) * 4);
    border: 1px solid var(--color-black);
}

input[type=radio],
input[type=checkbox] {
    padding: 0;
}

select {
    -webkit-appearance: none;
    background-image: url('select.svg');
    background-position: center right calc(var(--input-height) * 1/2);
    background-repeat: no-repeat;
    background-color: transparent;
    border: 1px solid var(--color-black);
    padding-right: calc(var(--input-height) * 4/3);
    color: var(--color-black);
}

.gap-base {
    gap: calc(var(--input-height) * 2/3);
}


/* Main */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    height: auto;
}

.section {
    padding: calc(var(--space-size) * 4) 0;
    position: relative;
}

.section-half {
    padding: calc(var(--space-size) * 2.25) 0;
    position: relative;
}

.img-wrap {
    position: relative;
    width: 100%;
    padding-top: 56%;
    height: 0;
    overflow: hidden;
    /* background-color: var(--color-gray-2); */
}

.img-wrap-2 {
    padding-top: 45%;
}

.img-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.scroll-title {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    padding: calc(var(--space-size) * 4/3) 0;
}

.scroll-title>div {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    transform: translateX(0);
    width: max-content;
    display: flex;
    align-items: center;
    -webkit-animation: scrollText 30s infinite linear;
    animation: scrollText 30s infinite linear;
}

.scroll-title-right>div {
    -webkit-animation: scrollTextR 30s infinite linear;
    animation: scrollTextR 30s infinite linear;
}

.scroll-title img {
    width: calc(var(--space-size) * 2/3);
    margin: 0 calc(var(--space-size) * 1);
}

@-webkit-keyframes scrollText {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes scrollText {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}


@-webkit-keyframes scrollTextR {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollTextR {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.wpcf7-form p {
    position: relative;
}

.wpcf7-form p label {
    width: 100%;
}

.wpcf7-spinner {
    position: absolute;
    top: calc(var(--space-size) * 1/2);
    right: calc(var(--space-size) * 1/2);
    margin: 0;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: calc(var(--space-size) * 1/2);
}

.wpcf7-not-valid-tip {
    font-size: var(--font-size-small);
}

.section-banner {
    position: relative;
}

.section-banner img {
    min-height: 400px;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
    width: 100%;
    z-index: -1;
    position: relative;
}

.section-banner>video {
    object-fit: cover;
    min-height: 400px;
    max-height: 100vh;
    width: 100%;
    z-index: -1;
    position: relative;
}

.section-banner .overlay {
    position: absolute;
    bottom: calc(var(--space-size) * 1);
    left: 0;
    width: 100%;
}

.section-banner-page {
    position: relative;
    background-color: var(--color-pri);
    padding: calc(var(--space-size) * 4) 0 calc(var(--space-size) * 1);
}

.section-banner::before {
    position: absolute;
    width: 100%;
    display: flex;
    height: 0;
    left: 0;
    top: 0;
    content: "";
    background-color: var(--color-pri);
}

.section-banner.aos-animate::before {
    animation-name: banner-height;
    animation-duration: 2s;
}

@keyframes banner-height {
    0% {
        height: 0;
    }

    30% {
        height: 100%;
    }

    60% {
        height: 100%;
    }

    100% {
        height: 0;
    }
}

.section-big-title {
    padding: calc(var(--space-size) * 4/3) 0;
}

.section-content {
    padding: calc(var(--space-size) * 2.5) 0;
}

.page-breakcrumb {
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.info-icon {
    margin-bottom: calc(var(--space-size) * 1/2);
}

.info-icon>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--space-size) * 4/3);
    height: calc(var(--space-size) * 4/3);
    border-radius: 50%;
    border: 1px solid var(--color-black);
    min-width: calc(var(--space-size) * 4/3);
}

.info-icon.color-w>div {
    border: 1px solid var(--color-white);
}

.swiper-pagination-fraction {
    padding-top: var(--space-size);
    color: var(--color-white);
    font-size: var(--font-size-small);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
    text-align: left;
    left: var(--space-size);
}

.swiper-button-next,
.swiper-button-prev {
    width: calc(var(--space-size) * 2/3);
    height: calc(var(--space-size) * 2/3);
    color: var(--color-white);
}

.swiper-button-next:after {
    content: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: var(--font-size-base);
}

.swiper-button-prev:after {
    content: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: var(--font-size-base);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    height: 20px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    bottom: 0;
    right: calc(var(--space-size) * 1);
    top: unset;
    left: unset;
}

.swiper-pagination-bullet {
    width: calc(var(--space-size) * 2/3);
    height: 2px;
    border-radius: 0;
    opacity: 1;
    background-color: var(--color-gray);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-white);
}

.list-blog {
    border-top: 1px solid var(--color-gray-2);
    overflow: hidden;
}

.list-blog>.row>div {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-gray-2);
    position: relative;
}

.list-blog>.row>div:nth-child(3n+1),
.list-blog>.row>div:nth-child(3n+2) {
    border-right: 1px solid var(--color-gray-2);
}

.list-blog-2>.row>div {
    border-right: 0;
}

.list-blog-2>.row>div:nth-child(2n+1) {
    border-right: 1px solid var(--color-gray-2);
}


.social-share {
    display: flex;
    gap: var(--space-size);
    justify-content: space-between;
    align-items: center;
}

.social-share>div {
    display: flex;
    align-items: center;
    gap: calc(var(--space-size) * 1/2);
}

.social-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--space-size) * 4/3);
    height: calc(var(--space-size) * 4/3);
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    color: var(--color-gray);
    min-width: calc(var(--space-size) * 4/3);
}

.social-share a:hover {
    border: 1px solid var(--color-pri);
    background-color: var(--color-pri);
    color: var(--color-white);
}

.social-share a:hover svg path {
    stroke: unset;
    fill: var(--color-white);
}

.list-nav {
    display: flex;
    width: 100%;
    padding-top: calc(var(--space-size) * 2);
}

.list-nav .item {
    white-space: nowrap;
    padding-right: var(--space-size);
    font-weight: 700;
}

.pagination {
    padding-top: calc(var(--space-size) * 4/3);
}

.pagination .nav-links {
    display: flex;
    gap: calc(var(--space-size) * 1/2);
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pagination .page-numbers {
    color: var(--color-gray);
}

.pagination .prev,
.pagination .next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--space-size) * 4/3);
    height: calc(var(--space-size) * 4/3);
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    min-width: calc(var(--space-size) * 4/3);
}

.pagination a.page-numbers:hover {
    color: var(--color-pri);
    border-color: var(--color-pri);
}

.pagination a.prev:hover,
.pagination a.next:hover {
    color: var(--color-white);
    border-color: var(--color-pri);
    background-color: var(--color-pri);
}

.pagination a.prev:hover svg path,
.pagination a.next:hover svg path {
    stroke: var(--color-white);
}

.pagination .page-numbers.current {
    color: var(--color-black);
}

.search-form {
    display: flex;
    max-width: 550px;
    position: relative;
}

.search-form>svg,
.search-form i {
    font-size: var(--font-size-h6);
    position: absolute;
    z-index: 0;
    pointer-events: none;
    left: calc(var(--space-size) * 1/2);
    top: 50%;
    color: var(--color-white);
    transform: translateY(-50%);
}

.search-form input {
    border-color: var(--color-white);
    color: var(--color-white);
    padding-left: var(--input-height);
    border-right: 0;
}

.search-form button {
    min-width: var(--input-height);
    width: var(--input-height);
    background: no-repeat;
    box-shadow: none;
    outline: none;
    border: 1px solid var(--color-white);
}

.input-search input {
    padding-right: var(--input-height);
}

.input-search i {
    font-size: var(--font-size-h6);
    position: absolute;
    z-index: 0;
    pointer-events: none;
    right: calc(var(--space-size) * 1/2);
    top: 50%;
    color: var(--color-black);
    transform: translateY(-50%);
}

.item-career {
    border: 1px solid var(--color-gray-2);
    padding: calc(var(--space-size) * 4/3);
}

.top-sec-nav {
    display: flex;
    overflow: auto;
}

.top-sec-nav a {
    white-space: nowrap;
}

.top-sec-nav::-webkit-scrollbar {
    display: none;
}

.autoSwiper .swiper-slide {
    width: auto;
}

.top-sec-nav .autoSwiper .swiper-slide {
    min-width: calc(var(--space-size) * 9);
    width: 20%;
}

.top-sec-nav .item {
    height: calc(var(--space-size) * 2.5);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    background-color: var(--color-gray-2);
    color: var(--color-black);
    font-weight: bold;
    padding: 0 calc(var(--space-size) * 1/2);
}

.top-sec-nav .item.active,
.top-sec-nav .item:hover {
    background-color: var(--color-pri);
    color: var(--color-white);
}

.item-pdf {
    display: flex;
    gap: calc(var(--space-size) * 1/3);
    align-items: center;
    border: 1px solid var(--color-gray-2);
    padding: var(--space-size);
    color: var(--color-black);
}

.item-pdf:hover {
    border-color: var(--color-black);
    color: var(--color-pri);
}

.item-pdf:hover svg path {
    stroke: var(--color-pri);
}

.item-pdf .content {
    width: 100%;
}

.list-doc-wrap {
    position: relative;
}

.list-doc-nav .item {
    margin-right: calc(var(--space-size) * 1);
    padding-bottom: calc(var(--space-size) * 1/3);
    position: relative;
    display: flex;
}

.list-doc-nav .item:hover {
    color: var(--color-pri);
}

.list-doc-nav .item.active::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    bottom: 0px;
    background-color: var(--color-pri);
    z-index: 1;
}

.list-doc-nav {
    border-bottom: 1px solid var(--color-pri);
    position: absolute;
    top: calc(var(--space-size) * 1/2);
    left: 0;
    right: calc(var(--space-size) * 5);
}

.list-doc-wrap .item-doc-box {
    display: none;
}

.list-doc-wrap .item-doc-box.active {
    display: block;
}

.item-blog {
    position: relative;
    overflow: hidden;
}

.item-blog .item-title {
    padding-top: var(--space-size);
}

.item-blog .desc {
    color: var(--color-black);
    padding-top: var(--space-size);
}

.item-blog-2 .content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.item-blog-2 .content .row {
    height: 100%;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.item-blog-2 .content .col-md-6:first-child {
    align-self: flex-end;
}

.item-blog-2 .content .item-title {
    color: var(--color-white);
    padding: 20px 30px;
    margin-bottom: 0;
}

.item-blog-2 .content .col-md-6:last-child {
    background-color: var(--color-gray-2);
    transition: all 0.3s ease-in-out;
    transform: translateY(100%);
}

.item-blog-2 .content .col-md-6:last-child * {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.4s;
}

.item-blog-2 .content .details {
    display: flex !important;
    padding: var(--space-size);
    align-items: center;
}

.item-blog-2 .content .details svg path {
    stroke: var(--color-gray);
}

.item-blog-2 .content .details-box {
    padding: 0 var(--space-size);
}

.item-blog-2:hover .content .col-md-6:last-child {
    transform: translateY(0);
}

.item-blog-2:hover .content .col-md-6:last-child * {
    opacity: 1;
    visibility: visible;
}

.featured-project {
    position: relative;
    transform: translateY(-50%);
}

.featured-project .item-project {
    display: block;
    position: relative;
    height: 100%;
    padding: calc(var(--space-size)* 2 / 3);
}

.featured-project .box-swiper {
    position: relative;
    border-radius: 6px;
}

.featured-project .box-img-featured {
    padding: calc(var(--space-size)* 2 / 3);
}

.featured-project .swiper-pagination-fraction {
    position: absolute;
    left: calc(var(--space-size) * 2/3);
}

.featured-project .swiper-button-next,
.featured-project .swiper-button-prev {
    position: absolute;
    height: 50%;
    width: unset;
    aspect-ratio: 1 / 1;
    border-right: 1px solid var(--color-gray);
    left: 0;
    margin-top: 0;
}

.featured-project .swiper-button-next:after,
.featured-project .swiper-button-prev:after {
    font-size: var(--font-size-h6);
    color: var(--color-black);
}

.featured-project .swiper-button-next {
    top: 0;
    border-bottom: 1px solid var(--color-gray);
}

.featured-project .swiper-button-prev {
    top: 50%;
}

.featured-project .swiper-wrapper {
    height: 100%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    pointer-events: all;
}

.item-project .content {
    padding-left: calc(var(--space-size) * 6);
}

.item-project .details {
    position: absolute;
    left: calc(var(--space-size) * 6 + var(--space-size) * 2/3);
    bottom: calc(var(--space-size) * 4/3);
}

.featured-project .swiper-pagination-fraction {
    left: calc(var(--space-size) * 6 + var(--space-size) * 2/3);
    top: calc(var(--space-size) * 4/3);
    color: var(--color-black);
    padding-top: 0;
    right: unset;
    bottom: unset;
    z-index: 1;
}

.featured-project .swiper-horizontal>.swiper-pagination-bullets,
.featured-project .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: calc(var(--space-size) * 7 + var(--space-size) * 2/3);
    top: calc(var(--space-size) * 4/3);
    padding-top: 0;
    margin-top: -5px;
    right: unset;
    bottom: unset;
}

.featured-project .swiper-pagination-bullet-active {
    background-color: var(--color-pri);
}

.featured-project .box-swiper::after {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    background-color: var(--color-gray-3);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.7s;
}

.featured-project .box-swiper .swiper {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.9s;
    height: 100%;
}

.featured-project.aos-animate .box-swiper::after {
    height: 100%;
}

.featured-project.aos-animate .box-swiper .swiper {
    opacity: 1;
    visibility: visible;
}

.featured-project .box-img-featured {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.9s;
    height: 100%;
}

.featured-project.aos-animate .box-img-featured {
    opacity: 1;
    visibility: visible;
}

/* .featured-project .swiper-slide-active h4 {
    transform: translate3d(0, 20px, 0);
    transition-property: opacity, transform;
    transition-duration: 1s;
    transition-timing-function: ease-in;
}
.featured-project.aos-animate .swiper-slide-active h4 {
    transform: translateZ(0);
} */

.featured-project.aos-init .img-wrap::after {
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: flex;
    background-color: var(--color-gray-3);
    z-index: 1;
    transition: height 0.5s ease-in-out;
    transition-delay: 1.2s;
}

.featured-project.aos-init.aos-animate .img-wrap::after {
    height: 0;
}

.icon-earth {
    position: absolute;
    left: calc(var(--space-size) * -6);
    width: calc(var(--space-size) * 15);
    top: calc(var(--space-size) * 6);
    z-index: -1;
    pointer-events: none;
}

.icon-earth-2 {
    position: absolute;
    right: calc(var(--space-size)* 4);
    width: calc(var(--space-size)* 15);
    top: calc(var(--space-size)* 0);
    transform: rotate(23deg);
    z-index: -1;
    pointer-events: none;
}

.icon-earth-3 {
    position: absolute;
    left: calc(var(--space-size) * -3);
    width: calc(var(--space-size) * 22);
    bottom: calc(var(--space-size) * 1);
    z-index: -1;
    pointer-events: none;
}

.section-video {
    position: relative;
    display: flex;
}

.section-video video {
    min-height: 480px;
    width: 100%;
    object-fit: cover;
}

.section-video .overlay {
    position: absolute;
    bottom: calc(var(--space-size) * 2);
    left: 0;
    width: 100%;
    /* transform: translateY(-50%); */
}

.section-video .overlay .big-font svg {
    width: calc(var(--space-size)* 6.5);
    height: calc(var(--space-size)* 3.5);
}

.item-num .num-box {
    font-size: var(--font-size-h1);
    margin-bottom: 0;
    line-height: 1;
}

.item-num hr {
    border-color: var(--color-pri);
}

/* hr.aos-init {
    width: 0;
}

hr.aos-animate {
    width: 100%;
} */

.img-wrap-pri,
.img-wrap-w {
    position: relative;
}

.img-wrap-w.aos-init::after {
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    content: "";
    display: flex;
    background-color: var(--color-white);
    z-index: 1;
    transition: width 0.5s ease-in-out;
}

.img-wrap-gray.aos-init::after {
    background-color: #f5f5f5;
}

.img-wrap-w.aos-animate::after {
    width: 0;
}


.img-wrap-pri.aos-init::after {
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: flex;
    background-color: #01395a;
    z-index: 1;
}

.color-gray svg path {
    stroke: var(--color-gray) !important;
}

a.color-gray:hover svg path {
    stroke: var(--color-pri) !important;
}

/* .img-wrap.aos-init div {
    opacity: 0;
} */

.img-wrap-pri.aos-animate::after {
    animation-name: banner-width;
    animation-duration: 2s;
}

/* .img-wrap.aos-init.aos-animate>div {
    animation-name: banner-opacity;
    animation-duration: 0.2s;
    animation-delay: 0.8s;
} */

@keyframes banner-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes banner-width {
    0% {
        width: 0;
    }

    40% {
        width: 100%;
    }

    60% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

/* .img-wrap:hover img {
    transform: scale(1.1) !important;
    transition-delay: 0s !important;
    transition-duration: 0.5s !important;
    transition-timing-function: ease-in-out !important;
} */
.border-pri {
    border-color: var(--color-pri);
}

.video-wrap .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.video-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #fff;
    z-index: 99;
}

.icon-small img {
    width: calc(var(--space-size) * 3);
    height: calc(var(--space-size) * 3);
    object-fit: contain;
}

.desc-height {
    height: calc(var(--space-size) * 1);
}

.overflow-unset {
    overflow: unset;
}

.mg-3 {
    margin-bottom: 1rem !important;
}

.color-pri>.color-gray {
    color: var(--color-pri);
}

.color-w>.color-gray {
    color: var(--color-white);
}

.featured-project .item-project {
    background-color: var(--color-gray-3);
}

.list-nav .item:hover {
    color: var(--color-pri);
}

a.color-black:hover {
    color: var(--color-pri);
}

/*
.desc {
    background: linear-gradient(to top,
            transparent 27%,
            var(--color-black) 40%,
            var(--color-black) 0) left bottom 0vh / 100vw 100vh fixed no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */


.text-line-2>span {
    overflow: hidden;
    display: inline-flex;
}

.text-line-2>span>span,
.char {
    display: inline-block;
    transform: translate3d(0, 100%, 0);
}

.text-line-2.aos-animate>span>span,
.aos-animate .char {
    animation: an 0.6s ease-out 1 both;
}

@keyframes an {
    from {
        /* opacity: 0; */
        transform: translate3d(0, 100%, 0);
    }

    to {
        /* opacity: 1; */
        transform: translate3d(0, 0, 0);
    }
}

.contact-form .btn {
    position: relative;
    padding: 0;
}

.contact-form .btn input {
    border: 0;
    min-width: 100px;
    text-align: left;
    color: var(--color-white);
}

.contact-form .btn svg {
    position: absolute;
    right: 15px;
}

.contact-form .btn svg path {
    stroke: var(--color-white);
}

.contact-form .btn:hover input {
    color: var(--color-white);
}

.fly-icon {
    text-align: right;
}

.fly-icon img {
    max-width: 170px;
    width: 100%;
}

.right-btn {
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
}

.right-btn svg {
    transition: all 0.3s ease-in-out;
}

.right-btn:hover {
    color: var(--color-pri);
}

.right-btn:hover svg {
    transform: translateX(5px);
}

.right-btn svg path {
    transition: all 0.3s ease-in-out;
}

.right-btn:hover svg path {
    stroke: var(--color-pri) !important;
}