/* Error */
.fr-error {
    color: #e62e04;
    font-size: 80%;
}

/* Loading */
#lds-loading {
    position: fixed;
    z-index: 2000;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    display: none;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid var(--mainColor);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: fixed;
    z-index: 999;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.swal2-container {
    z-index: 9999 !important;
}

/* Main */

.text-main {
    color: var(--mainColor);
}

.text-navy {
    color: var(--navyColor);
}

.text-gradient-blue {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(180deg, #123456, #1388fd);
}

.btn-default {
    background-color: var(--mainColor);
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    --bs-btn-active-color: var(--mainColor);
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: var(--mainColor);
}

.btn-default:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #000000;
    border-radius: 12px;
    /* padding: 10px 20px; */
    /* font-size: 16px;
    font-weight: bold; */
    transition: background-color 0.3s ease;
}

.btn-white:hover {
    background-color: #fff;
    color: #000000;
}

.cl-green {
    color: #198754 !important;
}

.cl-red {
    color: #dc3545 !important;
}

.cl-orange {
    color: #fd7e14 !important;
}

.bg-green {
    background: #198754 !important;
}

.bg-red {
    background: #dc3545 !important;
}

.bg-orange {
    background: #fd7e14 !important;
}

.fsz-16 {
    font-size: 16px !important;
}

.fsz-14 {
    font-size: 14px !important;
}

.fsz-13 {
    font-size: 13px !important;
}

.fsz-12 {
    font-size: 12px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.bg-primary-bg-4 {
    background-color: #0f1425;
}

.btn-blue{
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    --bs-btn-border-width: 2px;
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(255, 255, 255, 0.2);
    /* --bs-btn-border-color: rgba(255, 255, 255, 0.2); */
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #010920;
    --bs-btn-active-border-color: rgba(255, 255, 255);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.2);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.2);
}

/* .btn-blue:hover{
    background-color: var(--navyColor);
    color: #fff;
} */

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.line-clamp-2 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-4 {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.h-\[68px\] {
    height: 68px;
}

@media (min-width: 992px) {
    .sm\:h-\[92px\] {
        height: 92px;
    }
}

.swiper-slide{
    height: auto;
}

/* Topbar */
.topbar_inner .login a {
    display: inline-block;
    padding: 0 6px;
    color: #fff;
    border-right: 2px solid #fff;
}

.topbar_inner .login a:last-child {
    border-right: none;
    padding-right: 0;
}

/* Home */
.home-slider-img {
    max-height: 230px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

/* Policy Page */
.policy-page {
    padding: 70px 0;
    /* background: url(../images/bg_policy.jpg) no-repeat; */
    /* background-size: cover; */
    /* background: #bdc3c7;
    background: -webkit-linear-gradient(to left, #bdc3c7, #2c3e50);
    background: linear-gradient(to left, #bdc3c7, #2c3e50); */
}

.policy-page .title_policy {
    width: 100%;
    font-size: 24px;
    font-family: Roboto Bold;
    line-height: 35px;
    text-transform: uppercase;
    color: #fff;
}

.content_policy {
    min-height: 60vh;
    padding: 50px 0;
}

.port-relative {
    border-bottom: 1px solid #ccc;
}

.detail-new {
    border-top: 1px solid #ccc;
    padding-top: 16px;
    line-height: 1.6;
}

.detail-new h2 {
    font-size: 24px;
}

.detail-new h3 {
    font-size: 22px;
}

.detail-new h4 {
    font-size: 20px;
}

.detail-new h5 {
    font-size: 18px;
}

.detail-new h6 {
    font-size: 16px;
}

.list_news img {
    border-radius: 16px;
}

.list_news .news_image img {
    width: 100% !important;
}

.contact-image {
    /* background-image: url(../images/contact1.png); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    /* min-height: 550px; */
}

.contact-form {
    border-radius: 20px;
    border: 2px solid #fff;
    padding: 50px 40px;
    color: #fff;
}

.contact-form .form-control {
    border-radius: 50px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: transparent;
    border: 1px solid #fff;
    box-shadow: unset;
}

.contact-form textarea.form-control {
    /* display: flex ;
    min-height: 100px; */
    border-radius: 20px;
}

/* Modal */
.modal#statusSuccessModal .modal-content,
.modal#statusErrorsModal .modal-content {
    border-radius: 30px;
}

.modal#statusSuccessModal .modal-content svg,
.modal#statusErrorsModal .modal-content svg {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.modal#statusSuccessModal .modal-content .path,
.modal#statusErrorsModal .modal-content .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.modal#statusSuccessModal .modal-content .path.circle,
.modal#statusErrorsModal .modal-content .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.modal#statusSuccessModal .modal-content .path.line,
.modal#statusErrorsModal .modal-content .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
    animation: dash 0.95s 0.35s ease-in-out forwards;
}

.modal#statusSuccessModal .modal-content .path.check,
.modal#statusErrorsModal .modal-content .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
    animation: dash-check 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
    display: flex;
    justify-content: center;
}

.pagination-area {
    margin-top: 30px;
    text-align: center;
}

.pagination-area .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-area .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50px;
    color: var(--optionalColor);
    background-color: transparent;
    border: 2px solid #fff;
    transition: 0.6s;
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
}

.pagination-area .page-numbers i {
    font-size: 14px;
}

.pagination-area .page-numbers:disabled {
    pointer-events: none;
    opacity: 0.7;
}

.pagination-area .page-numbers:hover,
.pagination-area .page-numbers.current {
    background-color: var(--mainColor);
    color: #fff;
    border: 2px solid var(--mainColor);
}

.pagination-area.sm .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin-left: 4px;
    margin-right: 4px;
}

.pagination-area.sm .page-numbers i {
    font-size: 12px;
}

/* Page blog */
.page-banner-content {
    text-align: center;
}

.page-banner-content .list {
    font-weight: 400;
    font-size: 14px;
}

.page-banner-content .list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0px;
    /* font-weight: 600; */
    padding: 8px 20px;
    border-radius: 100px;
}

.page-banner-content .list a {
    margin-right: 20px;
    position: relative;
    color: #000;
    font-weight: 500;
}

.page-banner-content .list a:hover {
    color: var(--mainColor);
}

.page-banner-content .list a::after {
    position: absolute;
    top: 11px;
    right: -13px;
    content: "";
    width: 5px;
    height: 1px;
    background-color: rgb(68, 83, 69);
}

/* Time and countdown */
.c-home-topdes__inner {
    padding: 10px 20px;
    margin: 8px 0 0;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(51, 51, 51, 0.2);
    border-radius: 20px;
}

.c-home-topdes__inner .is-time-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.c-home-topdes__inner .is-time-box:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--mainColor);
}

.c-home-topdes__inner .is-time-box .is-item span {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--secondColor);
    text-transform: uppercase;
}

.c-home-topdes__inner .is-time-box .is-item b {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--mainColor);
}

.c-home-topdes__inner .is-countdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}

.c-home-topdes__inner .is-countdown ul li b {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: var(--mainColor);
    margin-bottom: 6px;
}

.c-home-topdes__inner .is-countdown ul li span {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    line-height: 1.3;
    color: var(--secondColor);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .c-home-topdes__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .c-home-topdes__inner .is-time-box {
        margin-bottom: 0;
    }

    .c-home-topdes__inner .is-time-box .is-item {
        margin: 0 28px;
    }

    .c-home-topdes__inner .is-time-box .is-item:first-child {
        margin-left: 0;
    }

    .c-home-topdes__inner .is-time-box .is-item:last-child {
        margin-right: 0;
    }

    .c-home-topdes__inner .is-countdown ul {
        margin: 0 -14px;
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: unset;
    }

    .c-home-topdes__inner .is-countdown ul li {
        padding: 0 14px;
    }
}

@media (min-width: 1280px) {
    .home-slider-img {
        max-height: 680px !important;
    }

    .c-home-topdes__inner {
        padding: 20px 30px;
        margin: 12px 0 0;
    }

    .c-home-topdes__inner .is-time-box .is-item {
        margin: 0 38px;
    }

    .c-home-topdes__inner .is-time-box .is-item span {
        font-size: 16px;
    }

    .c-home-topdes__inner .is-time-box .is-item b {
        font-size: 24px;
    }

    .c-home-topdes__inner .is-countdown ul li {
        padding: 0 20px;
    }

    .c-home-topdes__inner .is-countdown ul li b {
        font-size: 24px;
    }

    .c-home-topdes__inner .is-countdown ul li span {
        font-size: 16px;
    }
}

/* @media (min-width: 1600px) {
    .c-home-topdes__inner {
        padding: 20px 30px;
        margin: 10px 0;
    }
    .c-home-topdes__inner .is-time-box .is-item {
        margin: 0 56px;
    }

    .c-home-topdes__inner .is-time-box .is-item span {
        font-size: 18px;
    }

    .c-home-topdes__inner .is-time-box .is-item b {
        font-size: 32px;
    }

    .c-home-topdes__inner .is-countdown ul li {
        padding: 0 29px;
    }

    .c-home-topdes__inner .is-countdown ul li b {
        font-size: 32px;
    }

    .c-home-topdes__inner .is-countdown ul li span {
        font-size: 18px;
    }
} */

.event_banner img {
    border-radius: 20px;
    width: 100%;
}

.footer_right ul {
    padding: 0;
}

.footer_left .footer_title {
    font-size: 14px;
    font-weight: 600;
}

.social_footer img {
    max-width: 20px;
    margin-left: 12px;
}

.social_footer a {
    color: #fff;
    font-size: 18px;
}

.social_footer a:hover {
    color: #fff;
}

.search-popup {
    position: fixed;
    width: 0;
    height: 0;
    top: auto;
    left: auto;
    z-index: -999;
    opacity: 0;
    transition: 0.6s;
}

.search-popup.active {
    z-index: 9999;
    opacity: 1;
}

.search-popup.active .search-popup-overlay {
    top: auto;
    z-index: 6;
    display: block;
    top: 0;
    -khtml-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.8;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0, 1);
    height: 100%;
    width: 100%;
}

.search-popup .search-popup-overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    z-index: 3;
    opacity: 0;
    display: none;
    background-color: #333333;
    /* cursor: url(../images/cross-btn.png), auto; */
}

.search-popup.active .search-popup-content {
    width: 100%;
    opacity: 1;
    z-index: 999;
    transition: 0.6s;
}

.search-popup .search-popup-content {
    position: fixed;
    width: 0;
    max-width: 565px;
    padding: 30px 15px;
    left: 0;
    right: 0;
    top: 45%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    z-index: 3;
}

.search-popup .search-popup-content .search-popup-form {
    position: relative;
}

.search-popup .search-popup-content .search-popup-form .form-control {
    width: 100%;
    background-color: #ffffff;
    font-size: 15px;
    color: #000;
    border: 1px solid var(--mainColor);
    outline: none;
    height: 50px;
    border-radius: 50px;
    padding: 15px 80px 15px 25px;
}

.search-popup .search-popup-content .search-popup-form button {
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--mainColor);
    color: #fff;
    right: 0;
    border: none;
    border-radius: 50px;
    transition: 0.6s;
    font-size: 22px;
    letter-spacing: 0.5px;
}

/* Table Custom */
.table-custom tr th {
    white-space: nowrap;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.text-transparent {
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.bg-purple-pink-gradient {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #8B5CF6;
    --tw-gradient-to: rgb(139 92 246 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #D946EF
}

.bg-blue-purple-gradient {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #1EAEDB;
    --tw-gradient-to: rgb(30 174 219 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #8B5CF6
}

.bg-pink-orange-gradient {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-from: #D946EF;
    --tw-gradient-to: rgb(217 70 239 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #fbbf24
}

.bg-blue-purple-gradient {
    background-image: linear-gradient(90deg, #1eaedb, #8b5cf6);
}

.text-white-80 {
    color: #fffc;
}

/* Responsive */

@media(max-width: 991px) {
    .pagination-area .page-numbers {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        margin-left: 4px;
        margin-right: 4px;
    }
}


@media (max-width: 768px) {
    .line-clamp-4 {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}
