.bg-slide {
    @apply w-full h-full bg-center bg-cover;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #0a0a0a;
    color: #fff;
}

.meta-text {
    font-family: "Anuphan", Sans-serif;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF52;
    stroke: #FFFFFF52;
    line-height: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.footer-column ul li a:hover {
    color: #6c8dbb;
}

.footer-container::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    z-index: -1;
    background: radial-gradient(circle, rgba(186, 31, 25, 0.8) -18%, rgba(0, 0, 0, 0) 45%);
}

@keyframes bounce-diagonal {
    0% {
        transform: translate(0, 0);
    }

    30% {
        transform: translate(8px, -8px);
    }

    60% {
        transform: translate(-4px, 4px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.get-in-touch:hover .plane-icon {
    animation: bounce-diagonal 0.6s ease;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-btn img {
    width: 22px;
    height: 22px;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.floating-btn {
    position: relative;
    overflow: visible;
}

/* vòng nhấp nháy */
.floating-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    border: 2px solid rgba(35, 134, 205, 0.8);
    animation: pulse-ring 1.5s infinite;
}

.floating-btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    /* nở ra ngoài */
    border-radius: 9999px;
    border: 6px solid rgba(35, 134, 205, 0.35);
    animation: pulse-ring 2.2s infinite;
}

.clip-l {
    clip-path: polygon(0 0,
            45% 0,
            10% 61%,
            30% 65%,
            100% 100%,
            0 100%)
}

.menu-header li a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    transition: 0.3s;
}

.menu-header li a:hover {
    color: white;
}

/* mobile */

#mobile-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-header .current-menu-item>a,
.menu-header .current_page_item>a,
.menu-header .current-menu-parent>a,
.menu-header .current-menu-ancestor>a {
    color: white;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1 !important;
}