/*--------------------------------------------------
    Add Fonts
--------------------------------------------------*/
@font-face {
    font-family: YekanBakh;
    font-weight: 100;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-Thin.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-Thin.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-Thin.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-Thin.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 300;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-Light.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-Light.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-Light.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-Light.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: normal;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-Regular.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-Regular.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-Regular.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 600;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-SemiBold.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-SemiBold.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-SemiBold.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-SemiBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 700;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-Bold.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-Bold.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-Bold.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 800;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-ExtraBold.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBold.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBold.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 900;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-Black.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-Black.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-Black.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-Black.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: YekanBakh;
    font-weight: 950;
    font-style: normal;
    src:    url('../fonts/YekanBakh/YekanBakh-ExtraBlack.eot');
    src:    url('../fonts/YekanBakh/YekanBakh-ExtraBlack.eot?#iefix') format('embedded-opentype'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBlack.woff') format('woff'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBlack.woff2') format('woff2'),
    url('../fonts/YekanBakh/YekanBakh-ExtraBlack.ttf') format('truetype');
    font-display: swap;
}
/*-- Cards --*/
.uk-card .uk-dark .uk-card-default *{
    color: #23203f;
}


/*-- Buttons --*/
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

uk-button:after {
    content: '' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

uk-button:focus:not(:active)::after {
    animation: ripple 0.4s ease-out;
}


