html {
    scroll-behavior: smooth;
}

.containerVideo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}
    

.containerVideo iframe {
    aspect-ratio: 16/9 !important;
    display: block;
    width: min(900px, 100%) !important;
    max-width: 100%;
    height: auto;
    min-height: 220px;
    border: 0;
}

.mediaList {
    width: min(900px, 100%);
    margin: 35px auto;
    padding: 0;
}

.mediaList.mediaCount2,
.mediaList.mediaCount3 {
    display: grid;
    grid-template-columns: repeat(var(--media-columns, 2), minmax(0, 1fr));
    gap: 22px;
    width: min(1180px, 100%);
}

.mediaList.mediaCount3 {
    --media-columns: 3;
}

.mediaItem {
    width: 100%;
    margin: 24px auto;
}

.mediaList.mediaCount2 .mediaItem,
.mediaList.mediaCount3 .mediaItem {
    margin: 0;
}

.mediaTitle {
    margin: 0 0 12px;
    color: #FEFEFE;
    font-weight: 900;
    text-align: center;
}

.mediaSubtitle {
    margin: -6px 0 12px;
    color: #c9ccd6;
    text-align: center;
}

.mediaDescription {
    width: min(720px, 100%);
    margin: 14px auto 0;
    color: #9fa0ac;
    line-height: 1.6;
    text-align: center;
}

.siteImageCardWrap {
    display: block;
    width: min(360px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.siteImageCard {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.mediaDescriptionCard {
    width: min(360px, 100%);
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(15, 17, 22, 0.55);
}

.siteMediaPlayer {
    display: block;
    width: min(900px, 100%);
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    margin: 0 auto;
    background: #000;
    object-fit: contain;
}

.siteAudioPlayer {
    display: block;
    width: min(720px, 100%);
    max-width: 100%;
    margin: 0 auto;
}

.btn_top {
    background-color: lightgray;
    margin:2px;
    padding:4px !important;
    padding-bottom: 3px !important;
    vertical-align: middle;
    border-radius: 5px;
    box-shadow: 3px 3px 3px black;
}
.btn_top:hover {
    opacity:0.5;
}

*, ::before, ::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::-moz-selection {
    background-color: gray;
    color: white;
}

::selection {
    background-color: gray;
    color: white;
}

a {
    text-decoration: inherit;
    color: inherit;
}

body {
    font-family: "Lato", sans-serif;
    font-display: swap;
    font-size: 1rem;
    color: #FEFEFE;
    font-size: 16px;
    background-color: #1A1B1D;
}

.shareBtn {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.shareBtn.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.elementBtn {
    padding: 0 5px;
    cursor: pointer;
    transition: all ease-in-out 250ms;
}
.elementBtn img {
    position: relative;
    width: 25px;
}

.menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    --menu-base-top: 10%;
    top: var(--menu-current-top, calc(var(--menu-base-top) - var(--menu-scroll-offset, 0px)));
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: gray;
    border: solid 2px gray;
    border-radius: 50%;
    cursor: pointer;
    z-index: 25;
    transition: top 0.2s ease;
}
.menu .line {
    position: absolute;
    left: 25%;
    height: 1px;
    transform-origin: left;
    background-color: #1A1B1D;
}
.menu .line1 {
    top: 35%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(0.5);
}
.menu .line2 {
    top: 50%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(1);
}
.menu .line3 {
    top: 65%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(0.75);
}
.menu:hover .line1 {
    transform: scaleX(1);
}
.menu:hover .line3 {
    transform: scaleX(1);
}

.ss-menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    --menu-base-top: 5%;
    top: var(--ss-menu-current-top, calc(var(--menu-base-top) - var(--menu-scroll-offset, 0px)));
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: #1A1B1D;
    border: solid 2px gray;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease-in-out 100ms;
    opacity: 0;
    z-index: -1;
    transition: top 0.2s ease, all ease-in-out 100ms;
}
.ss-menu.visible {
    opacity: 1;
    transform: translateY(calc(var(--menu-index, 1) * 64px));
    transition: all ease-in-out 250ms;
    transition-delay: calc(var(--menu-index, 1) * 25ms);
    z-index: 1;
}
.ss-menu img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    transition: all ease-in-out 100ms;
}
.ss-menu:hover img {
    transform: translate(-50%, -50%) scale(1.2);
    transition: all ease-in-out 100ms;
}
.ss-menu:hover {
    background-color: gray;
    transition: all ease-in-out 100ms;
}

.menu.active .line1 {
    top: 50%;
    width: 50%;
    transform: scaleX(1);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
}

.menu.active .line2 {
    width: 50%;
    transform: scaleX(1);
    opacity: 0;
    transition: all ease-in-out 250ms;
}

.menu.active .line3 {
    top: 50%;
    width: 50%;
    transform: scaleX(1);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
}

.menu.is-compact {
    top: 12px;
}

.ss-menu.is-compact {
    top: 12px;
}

.visible1 {
    opacity: 1;
    transform: translateY(75px);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
    z-index: 1;
}

.visible2 {
    opacity: 1;
    transform: translateY(150px);
    transition: all ease-in-out 250ms;
    transition-delay: 50ms;
    z-index: 1;
}

.visible3 {
    opacity: 1;
    transform: translateY(225px);
    transition: all ease-in-out 250ms;
    transition-delay: 100ms;
    z-index: 1;
}

.visible4 {
    opacity: 1;
    transform: translateY(300px);
    transition: all ease-in-out 250ms;
    transition-delay: 125ms;
    z-index: 1;
}

.visible5 {
    opacity: 1;
    transform: translateY(375px);
    transition: all ease-in-out 250ms;
    transition-delay: 150ms;
    z-index: 1;
}

.visible6 {
    opacity: 1;
    transform: translateY(450px);
    transition: all ease-in-out 250ms;
    transition-delay: 175ms;
    z-index: 1;
}

.visible7 {
    opacity: 1;
    transform: translateY(525px);
    transition: all ease-in-out 250ms;
    transition-delay: 200ms;
    z-index: 1;
}

section {
    min-height: 80vh;
    padding: 50px 15% 50px 15%;
    background-color: #1A1B1D;
}

.separator {
    width: 20vw;
    height: 2px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: gray;
}

.mainView {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    color: #9fa0ac;
    background: url("../img/bcc-free-template-rock-hard.jpg");
    background-size: cover;
    background-position: center;
    background-color: transparent;
    overflow: hidden;
}

.mainView .mediaList {
    position: absolute;
    left: 50%;
    bottom: 28%;
    transform: translateX(-50%);
    width: min(560px, 86vw);
    margin: 0;
    z-index: 2;
}

.mainView .mediaItem {
    margin: 0 auto;
}

.mainView .mediaTitle {
    margin-bottom: 8px;
    color: #FEFEFE;
    text-shadow: 0 2px 10px #1A1B1D;
}

.mainView .containerVideo iframe,
.mainView .siteMediaPlayer {
    width: 100% !important;
    min-height: 190px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.mainView .siteAudioPlayer {
    width: 100%;
}

.mainView.has-media h1 {
    bottom: 14%;
}

.mainView.has-media h2#slogan {
    bottom: 7%;
}

h1 {
    position: absolute;
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    font-size: 7vh;
    font-weight: 900;
    color: #FEFEFE;
    text-shadow: 0 2px 10px #1A1B1D;
    text-transform: uppercase;
    opacity: 0;
    -webkit-animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
h2 {
    font-size: 2rem;
}

h2#slogan {
    position: absolute;
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    font-size: 5vh;
    font-weight: 600;
    color: gray;
    text-shadow: 0 2px 10px #1A1B1D;
    opacity: 0;
    transform: translateY(-45px);
    -webkit-animation: slideY 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    animation: slideY 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes slideY {
    from {
        opacity: 0;
        transform: translateY(-45px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}
@keyframes slideY {
    from {
        opacity: 0;
        transform: translateY(-45px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}
p {
    color: #9fa0ac;
    line-height: 30px;
    margin: 50px 0 50px 0;
    overflow-wrap: anywhere;
}

p.miniPara {
    color: #FEFEFE;
    line-height: 30px;
    margin: 0;
}

.hardLight {
    font-size: clamp(1.1rem, 3vh, 2rem);
    line-height: 40px;
    font-weight: 900;
    text-align: center;
    width: 70%;
    margin: 70px auto 70px auto;
}

.imgContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    width: 80%;
}
.imgContent .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.imgContent .card p {
    text-align: center;
    margin: 0;
    padding: 0;
}
.imgContent .card p:first-of-type {
    font-size: 1.3rem;
    color: #FEFEFE;
}
.imgContent .card::before {
    content: url("../img/instagram.svg");
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    top: 0;
    left: 0;
    margin: 15px auto;
    width: 100%;
    max-width: 250px;
    height: 250px;
    opacity: 0;
    background-color: rgba(244, 89, 30, 0.7);
    z-index: 2;
    transition: all ease-in-out 150ms;
}
.imgContent .card:hover::before {
    opacity: 1;
    transition: all ease-in-out 150ms;
}
.imgContent img {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 15px auto;
    border-radius: 15px;
}

.miniTitle {
    font-size: 4vh;
    line-height: 40px;
    font-weight: 900;
    text-align: center;
    color: white;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}

p.pink {
    color: gray;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
p.pink:hover {
    transform: translateX(5px);
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}

#bandVideo {
    width: 640px;
    background-color: #1E0E18;
    cursor: pointer;
}

.date table {
    margin: 70px 0;
    width: 100%;
    border-spacing: 0;
    min-width: 680px;
}
.date table td {
    border-bottom: solid 1px #9fa0ac;
    color: #9fa0ac;
    padding-top: 10px;
    padding-bottom: 10px;
}
.date table td a {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.date table td a:hover {
    transform: translateX(5px);
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
.date table td:first-of-type {
    color: white;
}
.date table td:nth-of-type(even) {
    padding-left: 7px;
}
.date table span {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ss-nextShow, .ss-music {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

footer {
    background-color: gray;
    min-height: 15vh;
}

.contact p {
    text-align: center;
}

section.blocNewsletter {
    min-height: inherit;
    text-align: center;
    padding: 150px 15%;
    background: url("../img/background-newsletter.jpg");
    background-position: 50% 40%;
    background-size: cover;
}

form.newsletterForm input {
    color: #1A1B1D;
    padding: 15px;
    border: none;
    margin: 0;
    outline: none;
}
form.newsletterForm input[type=email] {
    color: #1A1B1D;
    border: solid #1A1B1D 3px;
    width: 50%;
    border-radius: 999px 0 0 999px;
}
form.newsletterForm label[for=checkRobotNews] {
    color: #9fa0ac;
}
form.newsletterForm #hideNews {
    display: none;
    margin: 10px 0;
}
form.newsletterForm #hideNews input {
    border-radius: 999px;
    font-size: 0.9rem;
    background-color: #FEFEFE;
}
form.newsletterForm input[type=submit] {
    text-transform: uppercase;
    border: solid #1A1B1D 3px;
    background-color: white;
    border-radius: 999px;
    margin-left: -25px;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
form.newsletterForm input[type=submit]:hover {
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
    color: gray;
    transform: translateX(5px);
}

.contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contactForm input, .contactForm textarea {
    color: #1A1B1D;
    padding: 15px;
    width: 70%;
    border: none;
    margin: 15px 0 15px 0;
    font-family: inherit;
    outline: none;
}
.contactForm input {
    border-radius: 999px;
}
.contactForm label, .contactForm p.labelP {
    color: white;
    font-size: 3vh;
    font-weight: 900;
}
.contactForm p.labelP {
    margin: 20px auto;
}
.contactForm textarea {
    border-radius: 5px;
}
.contactForm input[type=submit] {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 2vh;
    cursor: pointer;
    transition: all ease-in-out 250ms;
    background-color: white;
}
.contactForm input[type=submit]:hover {
    transform: scaleX(0.8);
    letter-spacing: 0.8rem;
    transition: all ease-in-out 250ms;
    color: white;
    background-color: gray;
}
.contactForm .inscriptionCheck {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.contactForm .inscriptionCheck input[type=radio] {
    margin: 0 10px;
    width: 10px;
}
.contactForm .inscriptionCheck label {
    font-size: 2vh;
    font-weight: inherit;
}
.contactForm #helpNom, .contactForm #helpTel, .contactForm #helpMail, .contactForm #helpRobot {
    display: none;
}

.hidePara {
    margin: 0;
    color: gray;
}

::-webkit-input-placeholder {
    color: #1A1B1D;
}

::-moz-placeholder {
    color: #1A1B1D;
}

:-ms-input-placeholder {
    color: #1A1B1D;
}

::-ms-input-placeholder {
    color: #1A1B1D;
}

::placeholder {
    color: #1A1B1D;
}

footer {
    text-align: center;
    padding: 50px 0 50px 0;
}
footer p {
    margin: 10px 0 10px 0;
    color: white;
}
footer p.bolder {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    text-transform: uppercase;
}
footer .socialBanner {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer img {
    max-width: 24px;
    margin: 0 2px 0 2px;
    cursor: pointer;
}

.footerBaner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerBaner .bandBanner {
    margin: 0 30px;
    width: 100%;
    max-width: 75px;
    cursor: default;
}

#upArrow {
    color:gray;
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
#upArrow:hover {
    -webkit-animation: animeLogo ease-in-out 0.3s;
    animation: animeLogo ease-in-out 0.3s;
}

@-webkit-keyframes animeLogo {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes animeLogo {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
button[name=backSite] {
    border: none;
    border-radius: 5px;
    max-width: 250px;
    margin: 25px;
    padding: 10px;
    background-color: gray;
    font-size: 2.5vh;
    font-weight: bolder;
    color: white;
    cursor: pointer;
}

.animatableY {
    opacity: 0;
    transform: translate3d(0, 3vh, 0);
    transition: all ease-in-out 1s;
}

.animatableX {
    opacity: 0;
    transform: translate3d(-3vw, 0, 0);
    transition: all ease-in-out 1s;
}

.animatableOpacity {
    opacity: 0;
    transition: all ease-in-out 1s;
}

.showed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all ease-in-out 1s;
}

@media screen and (max-width: 1024px) {
    .menu:hover .line1 {
        transform: scaleX(0.5);
    }

    .menu:hover .line3 {
        transform: scaleX(0.75);
    }

    .menu.active .line3 {
        transform: scaleX(1);
    }
}
@media screen and (max-width: 767px) {
    section[style*="background-image"] {
        background-size: auto 100% !important;
        background-position: center center !important;
    }

    .shareBtn {
        top: 18px;
        left: 12px;
        flex-direction: column;
        gap: 6px;
    }

    .elementBtn img {
        width: 20px;
    }

    .menu, .ss-menu {
        width: 42px;
        height: 42px;
        --menu-base-top: 18px;
        top: calc(var(--menu-base-top) - var(--menu-scroll-offset, 0px));
        right: 12px;
        transition: top 0.05s linear;
    }

    .ss-menu img {
        width: 18px;
        height: 18px;
    }

    .ss-menu.visible { transform: translateY(calc(var(--menu-index, 1) * 54px)); }

    h1 {
        width: 90%;
        font-size: clamp(2rem, 9vw, 3.4rem);
        bottom: 45%;
    }

    h2#slogan {
        width: 90%;
        font-size: clamp(1.6rem, 7vw, 2.8rem);
        bottom: 20%;
    }

    .mainView.has-media h1 {
        bottom: 68%;
    }

    .mainView.has-media h2#slogan {
        bottom: 60%;
    }

    .mainView .mediaList {
        bottom: 16%;
        width: calc(100% - 36px);
    }

    .mainView .containerVideo iframe,
    .mainView .siteMediaPlayer {
        min-height: 170px;
    }

  


    section {
        min-height: auto;
        padding: 56px 18px;
    }

    section.blocNewsletter {
        padding: 64px 18px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .separator {
        width: 38vw;
        margin-top: 28px;
        margin-bottom: 34px;
    }

    .ss-nextShow, .ss-music {
        height: auto;
        min-height: 48vh;
        width: 100%;
    }

.mediaList {
        width: 100%;
        margin: 28px auto;
    }

    .mediaList.mediaCount2,
    .mediaList.mediaCount3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }

    .mediaItem {
        margin: 20px auto;
    }

    .containerVideo iframe,
    .siteMediaPlayer {
        width: 100% !important;
        min-height: 190px;
    }

    .siteAudioPlayer {
        width: 100%;
        min-height: 42px;
    }

    .mediaTitle {
        font-size: 0.95rem;
        line-height: 1.35;
        padding: 0 4px;
    }

    .mediaDescription {
        font-size: 0.95rem;
        text-align: left;
    }

    .hardLight {
        line-height: 1.45;
        margin: 38px auto;
    }

    .imgContent {
        width: 100%;
    }

    .date {
        overflow-x: auto;
    }

    .date table {
        margin: 36px 0;
    }

    form.newsletterForm input[type=email] {
        width: 100%;
        border-radius: 999px;
        margin-bottom: 10px;
    }

    form.newsletterForm input[type=submit] {
        width: 100%;
        margin-left: 0;
        border-radius: 999px;
    }

    form.newsletterForm #hideNews input {
        width: 100%;
    }

    .hardLight {
        width: 100%;
    }

    #bandVideo {
        max-width: 100%;
    }

    .contactForm input, .contactForm textarea {
        width: 100%;
    }

    .imgContent .card::before {
        display: none;
    }

    p.pink:hover {
        transform: none;
    }

    .date table td a:hover {
        transform: none;
    }

    form.newsletterForm input[type=submit]:hover {
        transform: none;
    }

    .contactForm input[type=submit]:hover {
        transform: none;
        letter-spacing: 0.2rem;
        color: #1A1B1D;
        background-color: white;
    }

    #upArrow {
        width: 48px;
    }
    #upArrow:hover {
        -webkit-animation: none;
        animation: none;
    }

    .date table td:nth-of-type(even) {
        padding-left: 1px;
    }
}
@media all and (min-width: 768px) and (max-width: 1024px) {
    form.newsletterForm input[type=email] {
        width: 60%;
    }

    .contactForm input, .contactForm textarea {
        width: 90%;
    }
}
@media all and (max-width: 320px) {
    table {
        font-size: 0.8rem;
    }

    .hardLight {
        font-size: 2vh;
    }

    form.newsletterForm input[type=email] {
        width: 100%;
    }

    .containerVideo iframe,
    .siteMediaPlayer {
        min-height: 160px;
    }

    .footerBaner p.bolder {
        font-size: 0.8rem;
    }
}

.languageSwitcher {
    position: fixed;
    top: 12px;
    right: max(80px, calc(env(safe-area-inset-right) + 12px));
    z-index: 20;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 132px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.languageSwitcher.is-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.languageSwitcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.languageSwitcher .language-flag {
    line-height: 1;
}

.languageSwitcher .language-flag img {
    width: 22px;
    height: 22px;
    display: block;
}

.languageSwitcher a.active,
.languageSwitcher a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.languageSwitcher .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

@media screen and (max-width: 767px) {
    .languageSwitcher {
        top: 18px;
        left: 0;
        right: 0;
        margin: 0 auto;
        gap: 6px;
        width: fit-content;
        max-width: calc(100vw - 24px);
    }

    .languageSwitcher a {
        width: 32px;
        height: 32px;
    }

    .languageSwitcher .language-flag img {
        width: 20px;
        height: 20px;
    }
}

.spam-warning {
    color: #fff;
    margin: 10px 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}


/*# sourceMappingURL=style.css.map */
