.header__menu__item a[title="Education"]:hover {
    color: #be1d37;
}

.header__menu__item a[title="Migration"]:hover {
    color: #be1d37;
}

.header__menu__item a[title="Training"]:hover {
    color: #003974;
}

.header__menu__item a[title="Contact us"]:hover {
    color: #003974;
}

.d-none {
    display: none !important;
}

.plane-section {
    background-color: #ffffff00 !important;
}

.loader {
    width: 16px;
    height: 16px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-left: 6px;
    display: none;
}

.visa-list-content p {
    line-height: 30px !important;
}

.visa-list-content .btn-v2--bg-cardinal-red:hover {
    background-color: #f0516b;
}

.visa-list-content .btn-v2--bg-midnight-green:hover {
    background-color: #37699c;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: "Manrope", sans-serif;
    width: 100%;
    padding: 16px 0px;
    max-width: 1200px;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.timeline-date {
    color: #6c757d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.366;
    letter-spacing: -0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-left: auto;
}

.tag {
    background-color: #212529;
    color: #adb5bd;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.366;
    letter-spacing: -0.04em;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .tag:hover {
        background-color: #2c3237;
        transform: translateY(-2px);
    }

/**/
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: #e2e2e2;
    border-radius: 4px;
    margin-bottom: 1rem;
}

    .skeleton::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        height: 100%;
        width: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: shimmer 1.5s infinite;
    }

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.skeleton-img {
    width: 100%;
    height: 200px;
}

.skeleton-title {
    height: 20px;
    width: 80%;
}

.skeleton-subtitle {
    height: 14px;
    width: 60%;
}

.skeleton-button {
    height: 30px;
    width: 100px;
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInMoveUp 0.5s ease-out forwards;
}

@keyframes fadeInMoveUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination__link.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}

.pagination__ellipsis {
    display: inline-block;
    margin: 0 5px;
    color: #888;
}

.facebook__card {
    padding: 0px !important;
}

@keyframes shake {
    0% {
        transform: translateX(-2px);
    }

    25% {
        transform: translateX(2px);
    }

    50% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.5s infinite;
}

/*need to add whatsapp css*/
.whatsapp__typing .whatsapp__dots_img {
    width: 28px;
    height: 17px;
    margin: 0px !important;
}

.whatsapp__msg__wrapper,
.whatsapp__img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}