@import url('https://fonts.googleapis.com/css2?family=Exo: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');

/* Global site styles placeholder */
:root {
    --primary-color: #0d6efd;
    --text-color: #212529;
}
body {
    font-family: 'Exo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: var(--text-color);
}

/* BUTTONS */
.btns {
    color: #101010;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 1px solid transparent;
    text-decoration: none;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.btn-yellow {
    background: #F4D713;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
    color: #101010;
}

.btn-white {
    background: #FFFFFF;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
    color: #101010;
}

.btn-yellow:hover,
.btn-yellow:focus-visible {
    background: #ffffff;
    color: #F4D713;
    border-color: #F4D713;
    box-shadow: 0px 18px 40px rgba(244, 215, 19, 0.35);
    transform: translateY(-1px);
}

.btn-white:hover,
.btn-white:focus-visible {
    background: #F4D713;
    color: #101010;
    border-color: #F4D713;
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.btns:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 215, 19, 0.35);
}
/* BUTTONS end*/

.footer .links .link {
    position: relative;
    color: inherit;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer .links .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #F4D713;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.footer .links .link:hover,
.footer .links .link:focus-visible {
    color: #F4D713;
    transform: translateY(-2px);
}

.footer .links .link:hover::after,
.footer .links .link:focus-visible::after {
    transform: scaleX(1);
}

/* Global site colors  */
.yellow-color{
    color: #F4D713;
}
.white-color{
    color: #FFFFFF;
}
/* Global site colors end */
