@font-face {
    font-family: 'NyghtSerif';
    src: url('fonts/NyghtSerif-Regular.woff2') format('woff2'),
    url('fonts/NyghtSerif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NyghtSerif';
    src: url('fonts/NyghtSerif-Bold.woff2') format('woff2'),
    url('fonts/NyghtSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'NyghtSerif';
    src: url('fonts/NyghtSerif-LightItalic.woff2') format('woff2'),
    url('fonts/NyghtSerif-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'NyghtSerif';
    src: url('fonts/NyghtSerif-Medium.woff2') format('woff2'),
    url('fonts/NyghtSerif-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

html, body {
    font-family: 'NyghtSerif', sans-serif;
    font-weight: 400;
    background-color: #FFC72C;
    overflow-x: hidden;
}

.active-page {
    color: #FF1B1C;
}

.custom-btn {
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0);
    border-radius: 25px;
    height: 2.5rem;
    width: 8rem;
    font-size: 1rem;
    border: 2px solid #FFFFFF;
    bottom: 140px;
    left: 200px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover, .custom-btn:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    outline: none;
}

@media (max-width: 992px) {
    .custom-btn {
        bottom: 100px;
        left: 150px;
        height: 2.3rem;
        width: 7.5rem;
    }
}

@media (max-width: 768px) {
    .custom-btn {
        font-size: 0.8rem;
        bottom: 55px;
        left: 75px;
        height: 2.3rem;
        width: 7rem;
    }
}

@media (max-width: 576px) {
    .custom-btn {
        font-size: 0.75rem;
        bottom: 25px;
        left: 50px;
        height: 2rem;
        width: 6.5rem;
    }
}

.page-title {
    position: relative;
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.page-title::after {
    content: "––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––";
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}

.card {
    border-style: none;
    overflow: hidden;
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.shop-card {
    background-color: #060606;
    color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.shop-card:hover, .shop-card:focus {
    transform: scale(1.05);
    box-shadow: 7px 14px 14px rgba(0, 0, 0, 0.4);
    outline: none;
}

.shop-card-text {
    font-size: 0.8rem;
}

.footer {
    background-color: #060606;
    color: #FFFFFF;
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: italic;
    font-variation-settings: "slnt" 0,
    "wdth" 50,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

.footer-title {
    font-weight: 500;
}

.team-card {
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
}

.vh-90 {
    height: 90vh;
}