html,
body {
    width: 100%;
    height: 100%;
}

/* #font ================================= */
@font-face {
    font-family: IRANYekan;
    font-stretch: normal;
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/IRANYekanXVF.woff');
}

html,
body {
    height: 100%;
}

.tooltip,
body {
    font-family: 'IRANYekan', sans-serif;
}

@media print {
    body {
        font-family: 'IRANYekan', sans-serif !important;
    }
}

/* #other ================================= */

.nav-link,
.btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;

    text-decoration: none;
}

img {
    max-width: 100%;
}

.offcanvas a,
.stretched-link,
.list-group-item a {
    text-decoration: none;
}

.dropdown-menu .dropdown-item.active i {
    color: var(--bs-light) !important;
}

/* ========================================================================== */
/*                                 #Components                                */
/* ========================================================================== */
.panelLargeLink {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;

    padding: 1.5rem !important;
    background-color: var(--bs-body-bg) !important;
    border: 0 !important;
    border-right: 0.25rem solid var(--bs-primary) !important;

    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.5rem;
}
.panelLargeLink i {
    font-size: 1.5rem;
    color: var(--bs-primary);
}
.panelLargeLink svg {
    width: 100%;
    max-width: 100%;
    max-height: 120%;

    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.panelLargeLink svg path {
    fill: var(--bs-light);
    transition: fill 0.15s ease-in-out;
}
[data-bs-theme=dark] .panelLargeLink {
    color: var(--bs-light);
}
[data-bs-theme=dark] .panelLargeLink svg path {
    fill: var(--bs-dark-bg-subtle);
}

.panelLargeLink:hover {
    background-color: var(--bs-dark) !important;
    color: var(--bs-light);
}
[data-bs-theme=dark] .panelLargeLink:hover {
    background-color: var(--bs-dark-bg-subtle) !important;
}
.panelLargeLink:hover svg path {
    fill: var(--bs-primary);
}
/* ================================= #frame ================================= */
.nt-frame {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;

    background-color: var(--bs-white);
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-dark);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* =============================== #advantages ============================== */
.nt-advantages {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;

    background-color: var(--bs-white);
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-dark);

    display: flex;
    justify-content: center;
    align-items: center;
}

.nt-advantages-circle1,
.nt-advantages-circle2 {
    width: calc(var(--size)/2);
    height: calc(var(--size)/2);
    border-radius: var(--bs-border-radius-pill);

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: top left;
}

.nt-advantages-circle1 {
    background-color: var(--bs-primary);
    animation: advantagesCircle 5s ease 1.1s infinite;
}

.nt-advantages-circle2 {
    background-color: var(--bs-primary-bg-subtle);
    animation: advantagesCircle 5s ease 1s infinite;
}

.nt-advantages-icon {
    position: relative;
    z-index: 2;

    opacity: 0;
    animation: advantagesIcon 5s ease 2s infinite;
}

@keyframes advantagesIcon {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: rotate(360deg);
    }

    50% {
        opacity: 1;
        transform: rotate(360deg);
    }

    60% {
        opacity: 0;
    }
}

@keyframes advantagesCircle {
    0% {
        transform: scale(0) translate(-50%, -50%)
    }

    25% {
        transform: scale(1) translate(-50%, -50%)
    }

    75% {
        transform: scale(1) translate(-50%, -50%)
    }

    100% {
        transform: scale(0) translate(-50%, -50%)
    }
}

/* ============================== #immigration ============================== */
.nt-immigration {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;

    background-color: var(--bs-warning);
    border-radius: var(--bs-border-radius);
    border: 1px solid var(--bs-dark);

    display: flex;
    justify-content: center;
    align-items: center;
}

.nt-immigration-progressbar {
    width: calc(var(--size) /2);
    height: 2rem;
    background-color: var(--bs-body-bg);
    border: 2px solid var(--bs-dark);
    border-left-width: 4px;
    border-right-width: 4px;

    transform-origin: center center;
    animation-fill-mode: forwards;
    animation: 8s immigrationProgressbar infinite;

    position: relative;
    z-index: 5;
}

.nt-immigration-progressbar::after {
    content: '\eca3';
    font-family: "tabler-icons";
    font-size: 2rem;
    color: var(--bs-dark);

    opacity: 0;
    animation: 8s immigrationPercent infinite;

    position: absolute;
    top: 100%;
    left: 100%;
}

.nt-immigration-progress {
    width: 100%;
    height: 100%;
    background-color: var(--bs-warning-bg-subtle);

    animation: 8s immigrationProgress infinite;

    position: absolute;
    top: 0;
    left: 0;
}

.nt-immigration-text {
    animation: 8s immigrationText infinite;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

@keyframes immigrationText {
    20% {
        transform: translateY(0) translate(-50%, -50%);
    }

    30% {
        transform: translateY(-2.5rem) translate(-50%, -50%);
        opacity: 1;
    }

    70% {
        transform: translateY(-2.5rem) translate(-50%, -50%);
        opacity: 1;
    }

    80% {
        transform: translateY(0) translate(-50%, -50%);
    }
}

@keyframes immigrationProgress {
    0% {
        width: 0%
    }

    25% {
        width: 25%
    }

    50% {
        width: 50%
    }

    75% {
        width: 75%
    }

    100% {
        width: 100%
    }
}

@keyframes immigrationProgressbar {
    95% {
        transform: rotate(0)
    }

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

@keyframes immigrationPercent {
    0% {
        opacity: 0
    }

    10% {
        opacity: 1
    }

    20% {
        opacity: 0
    }

    30% {
        opacity: 1
    }

    40% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    60% {
        opacity: 0
    }

    70% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    90% {
        opacity: 1
    }

    94% {
        opacity: 1
    }

    95% {
        opacity: 0
    }
}

/* =============================== #googleMap =============================== */
.googleMap {
    position: relative;
    padding-bottom: 50%;
}

.googleMap iframe {
    height: 100%;
    width: 100%;
    border-radius: var(--bs-border-radius);

    left: 0;
    top: 0;
    position: absolute;
}

/* ================================= #clamp ================================= */
.clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

/* ================================= #swiper ================================ */
.swiper-slide {
    display: flex !important;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.swiper-slide img {
    max-width: 100%;
    /* Make sure the image scales properly */
    max-height: 100%;
    /* Limit the image's height to avoid overflow */
    object-fit: contain;
    /* Ensure the image fits inside the container */
}

/* autoplay */
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}


/* ================================== #type ================================= */
.readable {
    max-width: 70ch;
    line-height: 2;
}

/* ========================================================================== */
/*                                  #Utlities                                 */
/* ========================================================================== */
/* ============================== #bodyClasses ============================== */
.no-scroll {
    overflow: hidden;
}

/* =============================== #fontWeight ============================== */
.nt-fw-100 {
    font-weight: 100;
    font-variation-settings: "wght" 100;
}

.nt-fw-lighter,
.nt-fw-200 {
    font-weight: lighter;
    font-variation-settings: "wght" 200;
}

.nt-fw-light,
.nt-fw-300 {
    font-weight: 300;
    font-variation-settings: "wght" 300;
}

.nt-fw-normal,
.nt-fw-400 {
    font-weight: 400;
    font-variation-settings: "wght" 400;
}

.nt-fw-medium,
.nt-fw-500 {
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.nt-fw-semibold,
.nt-fw-600 {
    font-weight: 600;
    font-variation-settings: "wght" 600;
}

.nt-fw-bold,
.nt-fw-700 {
    font-weight: bold;
    font-variation-settings: "wght" 700;
}

.nt-fw-800 {
    font-weight: 800;
    font-variation-settings: "wght" 800;
}

.nt-fw-bolder,
.nt-fw-900 {
    font-weight: bolder;
    font-variation-settings: "wght" 900;
}

.nt-fw-1000 {
    font-weight: 1000;
    font-variation-settings: "wght" 1000;
}

/* ================================== #flex ================================= */
/* flex row */
.nt-flex,
.nt-flex-start-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-start-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-start-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-start-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-center-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-center-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-center-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-center-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-end-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-end-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-end-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-end-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-around-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-around-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-around-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-around-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-between-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-between-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-between-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-between-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

/* flex column */
.nt-flex-column,
.nt-flex-column-start-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-column-start-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-column-start-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-column-start-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-column-center-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-column-center-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-colum-center-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-column-center-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-column-end-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-column-end-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-column-end-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-column-end-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-column-around-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-column-around-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-column-around-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-column-around-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-column-between-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-column-between-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-column-between-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-column-between-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: stretch;
}

/* ========================================================================== */
/*                                  #Layouts                                  */
/* ========================================================================== */
/* ================================= #header ================================ */
.header {
    width: 100%;
    position: relative;
    z-index: 1001;
}

.header .btn,
.header a {
    text-decoration: none;
}

/* scroll */
.header {
    transition: transform 0.3s ease-in-out 0.1s;
}

.header.scrolled {
    opacity: 0;
    transform: translateY(-100%);

    position: fixed;
    top: 0;
    z-index: 1021;
}

.header.scrolled.scrolling-up {
    opacity: 1;
    transform: translateY(0%);
}

/* remove scroll top on scroll */
.header.scrolled .header-top {
    display: none;
}

/* header-nav =============================== */
.header-nav {
    margin: 0 !important;
    padding: 0 4.5rem !important;
    list-style: none !important;
    display: flex;
    gap: 0;
    padding: 0 1.5rem;
}

.header-nav li>a {
    padding: 1.5rem 0.65rem;

    display: flex;
    align-items: center;
    gap: 0.25rem;

    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.header-nav-link::after {
    content: '\ea5f';
    font-family: "tabler-icons";
    font-size: 1.25rem;
    color: var(--bs-gray-500);

    transition: transform 0.3s ease 0.1s;
}

.header-nav-link.dropdown-active::after {
    transform: scaleY(-1);
}

.header-nav.dropdown-active .header-nav-item>a {
    opacity: 0.25;
}

.header-nav.dropdown-active .header-nav-item.dropdown-active .header-nav-link {
    opacity: 1;
}

.header-nav .header-nav-item .header-nav-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    width: 100%;
    min-height: 20rem;
    background-color: var(--bs-body-bg);
    padding: 1.5rem 3rem;
    border-bottom-left-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);
    transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;

    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1024;
}

.header-nav .header-nav-item:hover>.header-nav-submenu,
.header-nav .header-nav-item.dropdown-active .header-nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.header-nav-sublink {
    width: 100%;
    color: var(--bs-body-emphasis);
    padding: 1rem;
    border-radius: var(--bs-border-radius);

    display: flex;
    align-items: start;
    gap: 1rem;
    flex-wrap: nowrap;

    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.header-nav-sublink:hover .nt-fw-bold {
    color: var(--bs-primary);
}

.header-nav-sublink:hover img {
    animation: tada 1.5s ease-in-out;
}

.header-nav-subtitle {
    padding: 0.5rem 0;
}

.header-nav-sublink p {
    margin-bottom: 0;
}




/* ================================= #footer ================================ */
.footer {
    position: relative;
    z-index: 1;
}


.footer a {
    text-decoration: none;
}


/* social links */
.link-brand-telegram:hover {
    color: #24A1DE !important;
}

.link-brand-whatsapp:hover {
    color: #25D366 !important;
}

.link-brand-facebook:hover {
    color: #1877F2 !important;
}

.link-brand-x:hover {
    color: #6b7280 !important;
}

.link-brand-linkedin:hover {
    color: #0A66C2 !important;
}

.link-brand-youtube:hover {
    color: #CD201F !important;
}

.link-brand-instagram:hover {
    color: #c32aa3 !important;
}


.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-bottom-swiper {
    --swiper-theme-color: var(--bs-info);
    --swiper-pagination-bullet-inactive-color: #000;
}

.footer-bottom-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.footer-bottom-swiper .footer-bottom-swiperLink {
    height: 100%;
    background-color: var(--bs-white);
    padding: 0.5rem;
    border-radius: var(--bs-border-radius);
    border: 2px solid var(--bs-gray-300);
    transition: border-color 0.15s ease-in-out;

    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-swiper .footer-bottom-swiperLink:hover {
    border-color: var(--bs-info);
}


/* ================================== #main ================================= */
.main {
    position: relative;

    min-height: 400px;
    min-height: clamp(400px, 75vh, 800px);
    height: 100%;
}


/* #site ================================= */
.site {
    position: relative;

    display: flex;
    flex-direction: column;
}

.site .site-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: opacity 0.3s ease 0.05s, visibility 0.3s ease 0.05s;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.site.dropdown-active .site-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}


/* ========================================================================== */
/*                                   #pages                                   */
/* ========================================================================== */
/* ================================== #404 ================================== */
.page404 {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page404-anim {
    --height: 150px;
    height: var(--height);

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 1;
}

/* left cable */
.page404-anim:before {
    content: '';
    width: 12px;
    width: 100vw;
    height: var(--height);
    background: url('../img/pages/404/cable.png');

    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    z-index: -1;

}

/* right cable */
.page404-anim:after {
    content: '';
    width: 12px;
    width: 100vw;
    height: var(--height);
    background: url('../img/pages/404/cable.png');

    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: -1;

}

.page404-anim-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.page404-anim-in {
    width: 290px;
    height: var(--height);
    background-image: url('../img/pages/404/in.png');

    animation: page404in 1s ease 1s forwards;
}

.page404-anim-out {
    width: 220px;
    height: var(--height);
    background-image: url('../img/pages/404/out.png');

    animation: page404out 1s ease 1s forwards;
}

@keyframes page404out {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(75%)
    }
}

@keyframes page404in {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-75%)
    }
}

.w-100 {
  width: 100% !important;
}

.tooltip2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip2 .tooltiptext {
  visibility: hidden;
  width: max-content;
  max-width: 150px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;

  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.tooltip2:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.pricing-table {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2rem;
}

.pricing-table .table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table .table th {
  padding: 16px 12px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: none;
  font-size: 15px;
}

.pricing-table .table td {
  padding: 14px 16px;
  vertical-align: middle;
  border-top: 0px solid #f0f0f0;
  font-size: 14px;
}

.pricing-table .table tbody tr:hover {
  background-color: #f9f9f9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-order {
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #a50034;
  border-color: #a50034;
}

.btn-primary:hover {
  background-color: #8a002c;
  border-color: #8a002c;
}

.btn-outline-danger {
  color: #cc0000;
  border-color: #cc0000;
}

.btn-outline-danger:hover {
  background-color: #cc0000;
  color: white;
}

.price-cell {
  font-weight: 700;
  color: #333;
}

.price {
  font-size: 18px;
  color: #1b3cb4;
}

.currency {
  font-size: 16px;
  color: #1b3cb4;
  margin-right: 4px;
}

.plan-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-name {
  color: #a50034;
  font-size: 15px;
  font-weight: 700;
}

.server-img {
  width: 90px;
  height: auto;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

tr:hover .server-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .pricing-table .table {
    min-width: 900px;
  }
}

.flag-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: auto;
  border-radius: 4px;
}