.breadcrumb {
    width: 100%;
    margin-bottom: 20px;
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 20px;
}
@media (max-width: 767.98px) {
    .breadcrumb__list {
        flex-wrap: nowrap;
    }
    .breadcrumb__list li:last-child {
        width: fit-content;
        max-width: 535px;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}
.breadcrumb__item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #45464a;
    text-decoration: none;
    white-space: nowrap;
}
.breadcrumb__item--home {
    color: #45464a;
}
.breadcrumb__item--home:hover {
    color: #00529c;
}
.breadcrumb__item--current {
    color: #45464a;
    cursor: default;
}
.breadcrumb__item:not(.breadcrumb__item--current):not(.breadcrumb__item--home):hover {
    color: #00529c;
}
.breadcrumb a.breadcrumb__item {
    transition: color 0.2s ease;
}
.breadcrumb a.breadcrumb__item:hover {
    text-decoration: none;
}
.breadcrumb__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #45464a;
}
.breadcrumb__icon {
    width: 16px;
    height: 16px;
    color: #45464a;
    flex-shrink: 0;
}

.intro-banner {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.intro-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.intro-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.intro-banner__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0.4) 55%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}
.intro-banner .breadcrumb__list {
    gap: 8px;
}
.intro-banner .breadcrumb__item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}
.intro-banner .breadcrumb__item a {
    color: #ffffff;
}
.intro-banner .breadcrumb__separator {
    color: #ffffff;
}
.intro-banner__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1280px) {
    .intro-banner {
        height: 480px;
    }
    .intro-banner__content {
        height: 260px;
        padding: 50px 0px 36px;
    }
    .intro-banner__title {
        font-size: 40px;
    }
}
@media (max-width: 1024px) {
    .intro-banner {
        height: 420px;
    }
    .intro-banner__content {
        height: 240px;
        padding: 40px 0 32px;
    }
    .intro-banner__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .intro-banner {
        height: 578px;
    }
    .intro-banner__content {
        height: 200px;
        padding: 32px 0px 28px;
        gap: 6px;
    }
    .intro-banner .breadcrumb__item {
        font-size: 12px;
    }
    .intro-banner__title {
        font-size: 32px;
    }
}

.contact-section {
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}
.contact-section .bg {
    position: absolute;
    bottom: 87.76px;
    width: 100%;
    height: 869.24px;
    object-fit: cover;
    z-index: -1;
}
@media (max-width: 991px) {
    .contact-section .bg {
        bottom: 600px;
        width: 100%;
        height: 215px;
    }
}
.contact-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 869px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 51%, rgb(255, 255, 255) 100%);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}
.contact-section__wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.contact-section__form-container {
    flex: 0 0 auto;
    width: 641px;
    position: relative;
}
.contact-section__form-container .toast__message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #b6dcfd;
    border-radius: 20px;
}
.contact-section__form-container .toast__message .information {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}
.contact-section__form-container .toast__message .information svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}
.contact-section__form-container .toast__message .information .title {
    font-size: 24px;
    font-weight: 600;
    color: #00529c;
    margin-bottom: 12px;
    text-align: center;
}
.contact-section__form-container .toast__message .information .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #111832;
}
.contact-section__form-card {
    background: #B6DCFD;
    border-radius: 20px;
    padding: 28px 40px;
    position: relative;
}
.contact-section__form-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.265;
    margin-bottom: 24px;
    color: #00529c;
}
.contact-section__form {
    position: relative;
}
.contact-section__form-fields {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.contact-section__form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.contact-section .form-group.form-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.contact-section .form-group.form-item .form-control-feedback {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 4px;
    color: #d2002e;
}
.contact-section .form-group.form-item .validation-message,
.contact-section .form-group.form-item .error-message {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #d2002e;
    padding-left: 16px;
    margin: 0;
}
.contact-section .form-group.form-item .success-message {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #10B981;
    padding-left: 16px;
    margin: 0;
}
.contact-section__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 8px;
    min-height: 48px;
}
.contact-section__input-wrapper--dropdown {
    cursor: pointer;
}
.contact-section__input-wrapper--textarea {
    min-height: auto;
    align-items: flex-start;
}
.contact-section .select2-container--default .select2-selection--single {
    border: none;
    border-radius: 8px;
    height: 48px;
    padding: 12px 56px 12px 56px;
}
.contact-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    color: #111832;
}
.contact-section .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.contact-section__input-icon {
    position: absolute;
    left: 16px;
    top: 23px;
    transform: translateY(-50%);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
}
.contact-section__input-icon--textarea {
    top: 14px;
    transform: none;
}
.contact-section__input {
    flex: 1;
    border: none;
    outline: none;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 16px 12px 56px;
    min-height: 48px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.366;
    color: #111832;
    width: 100%;
}
.form-group.form-item .contact-section__input {
    background: #ffffff;
    border-radius: 8px;
}
.form-group.form-item.contact-section__input-wrapper--dropdown .contact-section__input {
    cursor: pointer;
}
.form-group.form-item.contact-section__input-wrapper--textarea .contact-section__input {
    min-height: 130px;
    padding-top: 12px;
    resize: none;
}
.contact-section__input::placeholder {
    color: #111832;
    opacity: 0.7;
}
.contact-section__input:focus {
    outline: none;
}
.form-group.form-item.has-error .contact-section__input {
    border: 1px solid #EF4444;
}
.form-group.form-item.has-success .contact-section__input {
    border: 1px solid #10B981;
}
.contact-section__select {
    appearance: none;
    cursor: pointer;
    padding-right: 46px;
}
.contact-section__select option {
    color: #111832;
}
.contact-section__dropdown-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
}
.contact-section__textarea {
    min-height: 80px;
    padding: 12px 16px 12px 56px;
}
.contact-section__submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}
.contact-section__submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.contact-section__submit-text {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.265;
    color: #111832;
    background: #ffffff;
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
}
.contact-section__submit-text span {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-section__submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    border-radius: 8px;
}
.contact-section__info-container {
    flex: 1;
    padding-top: 32px;
}
.contact-section__info-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.265;
    color: #111832;
    margin-bottom: 24px;
}
.contact-section__info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-section__info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-section__info-item--social {
    padding-top: 40px;
}
.contact-section__info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.contact-section__info-content {
    flex: 1;
    display: flex;
    gap: 20px;
}
.contact-section__info-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #111832;
}
.contact-section__info-value {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #111832;
}
.contact-section__info-value--highlight {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-section__social-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-section__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-section__social-btn:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.contact-section__social-btn:hover svg path {
    fill: #ffffff;
}
.contact-section__social-btn svg {
    width: 20px;
    height: auto;
}
.contact-section__map-wrapper {
    margin-top: 72px;
    display: flex;
    gap: 0;
    height: 611px;
    background: #E1F1FF;
    overflow: hidden;
    position: relative;
    padding: 0;
}
@media (max-width: 991px) {
    .contact-section__map-wrapper {
        flex-direction: column;
        height: 600px;
        padding: 59px 0 0 0;
        margin-top: 200px;
    }
}
.contact-section__map-tabs {
    display: none;
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 10;
    background: #ffffff;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
    .contact-section__map-tabs {
        display: flex;
        gap: 0;
    }
}
.contact-section__map-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 40px;
}
.contact-section__map-tab span {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.366;
    color: #111832;
    transition: color 0.3s ease;
}
.contact-section__map-tab:hover {
    background: #e8eef0;
}
.contact-section__map-tab.active {
    background: #e8eef0;
}
.contact-section__map {
    flex: 1;
    width: 100%;
    height: 100%;
    background: #e8eef0;
    order: 1;
}
@media (max-width: 991px) {
    .contact-section__map {
        position: absolute;
        top: 59px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100% - 59px);
        order: 2;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .contact-section__map.hidden {
        opacity: 0;
        transform: translateX(-20px);
        pointer-events: none;
    }
}
.contact-section__map-locations {
    width: 442px;
    height: 611px;
    background: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    order: 2;
}
.contact-section__map-locations::-webkit-scrollbar {
    width: 4px;
}
.contact-section__map-locations::-webkit-scrollbar-track {
    background: transparent;
}
.contact-section__map-locations::-webkit-scrollbar-thumb {
    background: #00529c;
    border-radius: 2px;
}
.contact-section__map-locations::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 55.1923076923, 105);
}
@media (max-width: 991px) {
    .contact-section__map-locations {
        position: absolute;
        top: 59px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100% - 59px);
        max-height: none;
        order: 1;
        opacity: 0;
        transform: translateX(20px);
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .contact-section__map-locations.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
}
.contact-section__map-location {
    padding: 24px 40px;
    border-top: 1px solid #e8eef0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-section__map-location:hover {
    background: rgb(240.3, 248.14, 255);
}
.contact-section__map-location.active {
    background: #E1F1FF;
}
@media (max-width: 768px) {
    .contact-section__map-location {
        padding: 20px 24px;
    }
}
.contact-section__map-location-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: #00529c;
    margin: 0 0 11px 0;
}
.contact-section__map-location-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: fit-content;
}
.contact-section__map-location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: fit-content;
}
.contact-section__map-location-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}
.contact-section__map-location-text {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
}
.contact-section__map-location-link {
    color: #00529c;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.contact-section__map-location-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.select2-container--default .select2-results__option {
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111832 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #e8eef0 !important;
    color: #111832 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #e8eef0 !important;
    color: #1bb5ec !important;
    font-weight: 600 !important;
}

.select2-container--default .select2-results__option[aria-selected=true]:first-child {
    border-radius: 8px 8px 0 0;
}

.select2-container--default .select2-results__option[aria-selected=true]:last-child {
    border-radius: 0 0 8px 8px;
}

.select2-dropdown {
    border: 2px solid #b6dcfd !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default .select2-results__option--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#contactMap .leaflet-control-zoom {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}
#contactMap .leaflet-control-zoom a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #00529c;
    font-weight: 600;
    transition: all 0.3s ease;
}
#contactMap .leaflet-control-zoom a:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    color: #ffffff;
}
#contactMap .leaflet-control-zoom a:first-child {
    border-bottom: 1px solid #e8eef0;
}
#contactMap .leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}
#contactMap .leaflet-control-attribution a {
    color: #00529c;
}
#contactMap .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 0;
}
#contactMap .leaflet-popup-content {
    margin: 0;
    font-family: "Be Vietnam Pro", sans-serif;
}
#contactMap .leaflet-popup-tip {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#contactMap .leaflet-container a.leaflet-popup-close-button {
    color: #111832;
    font-size: 20px;
    padding: 8px 10px;
}
#contactMap .leaflet-container a.leaflet-popup-close-button:hover {
    color: #00529c;
}

@media (max-width: 1199.98px) {
    .contact-section__wrapper {
        gap: 30px;
    }
    .contact-section__form-container {
        width: 500px;
    }
}
@media (max-width: 991.98px) {
    .contact-section__form-container {
        width: 100%;
    }
    .contact-section__info-container {
        order: -1;
        padding-top: 0;
    }
    .contact-section__wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0 24px;
    }
    .contact-section__info-item--social {
        padding: 20px 0;
    }
}
@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0 0 0;
    }
    .contact-section__form-card {
        padding: 28px 20px;
    }
    .contact-section__form-title {
        font-size: 20px;
    }
    .contact-section__info-title {
        font-size: 28px;
    }
    .contact-section__form-container .toast__message .information {
        width: calc(100% - 40px);
    }
}
/*# sourceMappingURL=contact.css.map */
