@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu.visible {
    visibility: visible;
    opacity: 1;
}

/* index Start */
@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-Bold.woff2') format('woff2'),
        url('./font/NeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-BoldItalic.woff2') format('woff2'),
        url('./font/NeueMontreal-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-Italic.woff2') format('woff2'),
        url('./font/NeueMontreal-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-Medium.woff2') format('woff2'),
        url('./font/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-Light.woff2') format('woff2'),
        url('./font/NeueMontreal-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-MediumItalic.woff2') format('woff2'),
        url('./font/NeueMontreal-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-Regular.woff2') format('woff2'),
        url('./font/NeueMontreal-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./font/NeueMontreal-LightItalic.woff2') format('woff2'),
        url('./font/NeueMontreal-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}


.faq-content {
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* All Hover effect Start */

.primaryBtn-hoverEffect{
    font-size: 16px;
}

.primaryBtn-hoverEffect span svg {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translate(0, 0);
    opacity: 1;
}

.primaryBtn-hoverEffect:hover span svg {
    animation: arrowHideTopRight 0.15s forwards, arrowShowBottomLeft 0.15s forwards 0.15s;
}

.primaryBtn-hoverEffect span svg.leave {
    animation: arrowHideBottomLeft 0.15s forwards, arrowShowTopRight 0.15s forwards 0.15s;
}

@keyframes arrowHideTopRight {
    to {
        transform: translate(100%, -100%);
        opacity: 0;
    }
}

@keyframes arrowShowBottomLeft {
    from {
        transform: translate(-100%, 100%);
        opacity: 0;
    }

    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes arrowHideBottomLeft {
    to {
        transform: translate(-100%, 100%);
        opacity: 0;
    }
}

@keyframes arrowShowTopRight {
    from {
        transform: translate(100%, -100%);
        opacity: 0;
    }

    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* All Hover effect End */

/* index End */