:root {
    --base-color: #0054a6;
    --base-color-2: #0160e7 !important;

    --primary-light: #004295;
    --primary-hover: var(--base-color-2);
    --primary-color-10: #eaf3fc;
    --secondary-color: #0160e7;
    --theme-color: #D4A528;
    --primary-gradient: linear-gradient(80deg, #1f0098 0%, #05d7f0 100%);
    --text-gradient: linear-gradient(80deg, #1f0098 0%, #05d7f0 100%);
    --white: #ffff;
    --red-main: rgb(216, 36, 29);


    --transition: .3s all ease-in-out;
    --text-dark: #222;
    --dark-color: #121415;
    --font-vietnam: "Inter", sans-serif;
    --font-heading: "Inter", sans-serif;
    --font-title: "Inter", sans-serif;

    --fs-xl: 3.8em;
    --fs-lg: 2em;
    --fs-title: 1.8em;
    --fs-base: 1em;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    background: var(--white);
    color: #495057;
    font: normal 400 15px/1.4 var(--font-vietnam);

}
input:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: var(--primary-color) !important;
}
a {
    text-decoration: none !important;
}

.h1,
h1 {
    font-size: 2rem;
    font-weight: 700;
}

.h2,
h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

.h3,
h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.h4,
h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

.h5,
h5 {
    font-size: 1rem;
    font-weight: 700;
}

.h6,
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #343434;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.opacity-1 {
    opacity: 1 !important;
}

blockquote {
    font-style: italic;
    color: #6e7687;
    padding-left: 2rem;
    border-left: 2px solid #0028641f;
    margin-bottom: 1em;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--base-color) !important;
}

.text-secondary {
    color: var(--base-color-2) !important;
}

.hover-primary:hover {
    color: var(--base-color) !important;
}

.hover-theme:hover {
    color: var(--theme-color) !important;
}

.font-heading {
    font-family: var(--font-heading) !important;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

.transition-cubic {
    transition: all 1.7s cubic-bezier(.14, .4, .09, .99);
}

.transition-default {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.limit-3 {
    --lines: 3;
    --line-height: 1.5;
    --font-size: 0.95rem;
    --calc-max-height: calc(var(--line-height) * var(--lines) * var(--font-size) - 2);
    display: inline-block;
    display: -webkit-box;
    width: 100%;
    max-height: var(--calc-max-height);
    height: var(--calc-max-height);
    font-size: var(--font-size);
    line-height: var(--line-height);
    line-clamp: var(--lines);
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.button-theme {
    padding: 9px 32px;
    border-radius: 30px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    transition: all 0.35s ease;
    outline: none;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    user-select: none;
    font-size: 0.9em;
    line-height: 1.5;
    border: none;
}

.button-theme:hover {
    transform: scale(1.05);
}

.button-theme.button-theme_primary {
    background: var(--base-color);
    color: var(--bs-white);
}

.button-theme.button-theme_primary:hover {
    background: var(--base-color);
    color: var(--bs-white);
}

.button-theme.button-theme_secondary {
    background: #fd9904;
    color: var(--bs-white);
}

.button-theme.button-theme_secondary:hover {
    background: #d37f01;
}

.button-theme.button-theme_red {
    background: rgba(216, 36, 29, 0.91);
    color: var(--bs-white);
}

.button-theme.button-theme_white {
    background: var(--bs-white);
    color: var(--bs-gray-800);
}

.button-theme.button-theme_white:hover {
    background: var(--theme-color);
    color: var(--bs-white);
}

.link-circle .link-svg {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    border-radius: 8px;
    transform: rotate(45deg);

}

.link-circle .link-svg svg {
    width: 40px;
    height: 40px;
    transform-origin: center;
    transform: rotate(-45deg);
}

.link-circle .link-svg svg path {
    fill: var(--bs-white);
}

.link-circle.circle-white {
    color: var(--bs-white);
}

.link-circle.circle-white .link-svg {
    background-color: var(--bs-white);
}

.link-circle.circle-white .link-svg svg path {
    fill: var(--primary-color);
}

.link-circle .link-svg svg > g > path {
    animation: border-360 5s linear infinite;
    transform-origin: center;
}
.link-circle.circle-transparent:hover .link-svg {
    background-color: var(--primary-light);
    box-shadow: 0px 0px 15px rgb(0 0 0 / 9%);
}

.link-circle.circle-transparent:hover .link-text {
    margin-left: 16px !important;
}
@keyframes border-360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-gap {
    padding: 50px 0;
}

.section-gap-100 {
    padding: 100px 0;
}

.section-gap-120 {
    padding: 120px 0;
}

.section-gap-150 {
    padding: 150px 0;
}

.scroll-y {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.heading-title__group {
    margin-bottom: 70px;
}

.heading-title__subtitle {
    width: max-content;
    font-weight: 800;
    opacity: 0.6;
    background: linear-gradient(180deg, #E0EDFA 50%, transparent);
    background: linear-gradient(180deg, #E0EDFA 8.13%, rgba(243, 249, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8em;
    text-transform: uppercase;
}

.heading-title__big {
    z-index: 1;
    opacity: 0.6;
    background: linear-gradient(180deg, #E0EDFA 8.13%, rgba(243, 249, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 8em;
    width: max-content;
    font-weight: 800;
    text-transform: uppercase;
}

.heading-title__big.title-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.heading-title__big.title-left {
    position: absolute;
    top: 0;
    left: 14%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.heading-title {
    color: var(--base-color);
    font-family: var(--font-heading);
    font-size: 3.4em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 800;
}

.heading-title-2 {
    color: var(--base-color);
    font-family: var(--font-heading);
    font-size: 2.5em;
    z-index: 2;
    position: relative;
    margin-bottom: 0;
    letter-spacing: 1px;
    font-weight: 800;
}

.heading-line {
    display: block;
    height: 4px;
    background-color: var(--theme-color);
    width: 100px;
    margin: 20px 0;
}

.heading-title__text {
    font-size: 1.2em;
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    line-height: 1.6;
    color: var(--bs-gray-700);
}

.section-breadcrumb__wrap {
    height: 60vh;
}

.section-breadcrumb__wrap > img {
    transition: all .35s ease-in-out;
    -webkit-animation: animation-breadcrumb 4s forwards 0s;
    animation: animation-breadcrumb 4s forwards 0s;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@-webkit-keyframes animation-breadcrumb {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animation-breadcrumb {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.section-breadcrumb__wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    bottom: -1px;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fffffffc);
}

.breadcrumb-heading {
    font-size: 4em;
    letter-spacing: 2px;
}

.section-breadcrumb .breadcrumb {
    padding: 35px 0;
}

.section-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 1.1em;
}

.section-breadcrumb .breadcrumb .breadcrumb-item,
.section-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-gray-700);
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}

.section-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: var(--bs-gray-600);
    font-weight: 400;
}

.section-breadcrumb .breadcrumb-scroll {
    bottom: 20px;
}

.section-breadcrumb .breadcrumb-scroll:hover {
    transform: translateY(-5px);
}

.section-breadcrumb .breadcrumb-scroll:hover {
    color: var(--theme-color) !important;
    cursor: pointer;
}

.breadcrumb-scroll .link-theme__arrow {
    width: 100px;
    height: 50px;
}

.breadcrumb-scroll .link-theme__arrow span {
    position: absolute;
    width: 18px;
    left: 50%;
    transform: translateX(-50%) scale(.3);
    top: 0;
    height: 3px;
    opacity: 0;
    animation: Move-Arrow 2s ease-out infinite;
}

.breadcrumb-scroll .link-theme__arrow span:before {
    left: 0;
    transform: skewY(45deg)
}

.breadcrumb-scroll .link-theme__arrow span:after {
    right: 0;
    transform: skewY(-45deg)
}

.breadcrumb-scroll .link-theme__arrow span:after,
.breadcrumb-scroll .link-theme__arrow span:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: var(--bs-white);
}

.breadcrumb-scroll .link-theme__arrow span:nth-child(2) {
    animation-name: Move-Arrow;
    animation-duration: 2s;
    animation-delay: .8s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

.breadcrumb-scroll .link-theme__arrow span:first-child {
    animation-name: Move-Arrow;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite
}

@keyframes Move-Arrow {
    25% {
        opacity: 1
    }

    33.3% {
        opacity: 1;
        transform: translateX(-50%) translateY(7px)
    }

    66.6% {
        opacity: 1;
        transform: translateX(-50%) translateY(14px)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(21px) scale(.7)
    }
}


.section-breadcrumb__heading .letter,
.titleAnimation .letter {
    display: inline-block;
    transform: rotateY(90deg);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform-origin: center;
}

.section-breadcrumb__heading .letter.show,
.titleAnimation .letter.show {
    transform: rotateY(0deg);
    opacity: 1;
}

.animation-loader {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
    z-index: 9999;
    pointer-events: none;
    transition: var(--transition);
}

.animation-loader .item {
    background-color: var(--bs-white);
    opacity: 1;
    transform: scale(1.12);
}

.pageMain {
    scroll-behavior: auto;
}

.swiper-button {
    transition: var(--transition);
    background-color: transparent;
    border: 1px solid transparent;
    position: absolute;
    z-index: 3;
    top: 40%;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 13px;
}

.swiper-button svg {
    width: 25px;
    height: 25px;
}

.swiper-button svg path {
    fill: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.swiper-button.button-prev svg {
    transform: scaleX(-1);
}

.swiper-button:hover svg path {
    fill: var(--theme-color);
}

.swiper-button:hover {
    color: var(--theme-color);
}

.swiper-button.button-prev {
    left: -90px;
}

.swiper-button.button-next {
    right: -90px;

}

@media (max-width: 1280px) {
    .heading-title__big {
        font-size: 6.5em;
    }

    .heading-title {
        font-size: 3.2em;
    }

    .heading-title-2 {
        font-size: 2.2em;
    }


}

@media (max-width: 1024px) {
    .heading-title__big {
        font-size: 6.5em;
    }

    .heading-title {
        font-size: 3em;
    }

    .heading-title-2 {
        font-size: 2em;
    }

    .heading-title__text {
        font-size: 1.1em;
    }

    .section-breadcrumb__wrap {
        height: 50vh;
    }

    .breadcrumb-heading {
        font-size: 3em;
    }

    .section-gap-150 {
        padding: 100px 0;
    }

    .section-gap-100 {
        padding: 50px 0;
    }

    .swiper-button {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .heading-title__big {
        font-size: 5em;
    }

    .heading-title {
        font-size: 2.6em;
    }
}

@media (max-width: 600px) {
    .heading-title__big {
        font-size: 3.6em;
    }

    .heading-title {
        font-size: 2em;
    }

    .heading-title-2 {
        font-size: 1.8em;
    }

    .breadcrumb-heading {
        font-size: 2.6em;
        letter-spacing: 1px;
    }

    .link-circle .link-svg {
        width: 50px;
        height: 50px;
    }

    .link-circle .link-svg svg {
        width: 35px;
        height: 35px;
    }

}

.animation-top {
    transform: translateY(140px);
    opacity: 0;
    will-change: opacity, transform;
}
