/*
Theme Name: Mercury Child
Theme URI: https://mercurytheme.com/
Description: Child theme for Mercury theme
Author: MercuryTheme.com
Author URI: https://mercurytheme.com/
Template: mercury
Version: 3.9.6
*/
@import url("../mercury/style.css");

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('css/fonts/Roboto-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('css/fonts/Roboto-400.woff2') format('woff2');
}


/* Custom Header */
.space-header-2-top-btn {
    display: flex;
    align-items: center;
    order: 3;
}
.space-header-2-top-btn a {
    position: relative;
    display: flex;
    padding: 10px 15px;
    border-radius: 10px;
    border:  1px solid yellow;
    text-decoration: none;
    color: yellow;
    text-transform: uppercase;
    width: max-content;
    margin-left: auto;
    margin-right: 10px;
    overflow: hidden;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.space-header-2-top-btn a:hover {      
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 1px 1px 5px rgb(255, 255, 255);
    transform: scale(102%);
}



.space-header-2-top-btn a span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #ffffff, #eaea18);
    animation: animate1 2s linear infinite;
    animation-delay: 1s;
}

.space-header-2-top-btn a span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #eaea18);
    animation: animate2 2s linear infinite;
}

.space-header-2-top-btn a span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, #ffffff, #eaea18);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

.space-header-2-top-btn a span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, #ffffff, #eaea18);
    animation: animate4 2s linear infinite;
}


@media screen and (max-width: 768px) {
    .space-header-2-top-logo {
        width: 65%!important;
    }
    .space-header-2-top-btn {
        width: 33%!important;
    }

    .space-header-2-top-btn a {
        font-size: 15px;
        letter-spacing: 0;
        padding: 10px;
    }
}

/* Custom Header */




/* Custom Footer start */
.footer-bg,
.space-footer-copy {
    background-color: black;
}

.footer-btn {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.footer-btn-link {
    position: relative;
    display: block;
    width: max-content;
    padding: 25px 25px;
    color: yellow;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    margin: 10px auto;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
}

.footer-btn-link:hover {
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 2px 2px 5px rgb(255, 255, 255);
    transform: scale(105%);
}

.footer-btn-link span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #eaea18);
    animation: animate1 2s linear infinite;
    animation-delay: 1s;
}

.footer-btn-link span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #eaea18);
    animation: animate2 2s linear infinite;
}

.footer-btn-link span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #ffffff, #eaea18);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

.footer-btn-link span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, #ffffff, #eaea18);
    animation: animate4 2s linear infinite;
}

@keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
@keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}
@keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}



.footer-responsible-game {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.footer-responsible-game__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-responsible-game__link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-responsible-game__image {
   max-width: 120px;
   max-height: 120px;
}

/* Custom Footer end */