@font-face {
    font-family: DINAlternateBold;
    src: url('../fonts/DINAlternateBold.eot');
    src: url('../fonts/DINAlternateBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINAlternateBold.woff2') format('woff2'),
        url('../fonts/DINAlternateBold.woff') format('woff'),
        url('../fonts/DINAlternateBold.ttf') format('truetype');
}

.container-l_bsm {
    position: absolute;
    top: 40px;
    right: 0;
    width: 400px;
    height: 100%;
    z-index: 20;
    max-width: 25%;

}

.bsm_container-button {
    width: 300px;
    height: 300px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    right: 0;
    z-index: 1;
    margin-top: 0;
    cursor: pointer;
    transition: transform;
    transition-duration: .6s;
    animation: moveX 5.05s linear 0s infinite alternate, moveY 5.4s linear 0s infinite alternate;
}




.bsm_container-button-go {
    transition: all;
    transition-duration: 0.8s;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    z-index: 1;

}


.go {
    position: absolute;
    max-width: 100%;
    animation-name: movementGo;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    z-index: 1;
    transition: all;
}

@keyframes movementGo {
    0% {
        margin-top: -10px;
        left: 0px;
        width: 100%;

    }

    50% {
        margin-top: 0;
        left: 20px;
        width: 90%;
    }

    100% {
        margin-top: -10px;
        left: 0px;
        width: 100%;
    }
}

.neon {
    position: absolute;
    max-width: 100%;
    animation-name: movementNeon;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    z-index: 1;
}

.glow {
    position: absolute;
    max-width: 100%;
    z-index: 1;
    animation-duration: 5s;
    animation-name: Glow;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes movementNeon {
    0% {
        opacity: 1;

    }

    50% {
        opacity: 0.5;
    }

    55% {
        opacity: 0.8;
    }

    60% {
        opacity: 0.4;
    }

    70% {
        opacity: 0.9;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes Glow {
    0% {
        opacity: 1;

    }

    1% {
        opacity: 0.3;
    }

    2% {
        opacity: 1;
    }

    98% {
        opacity: 1;

    }

    99% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}



.workshop {
    position: absolute;
    max-width: 100%;
    z-index: 1;
    animation-name: movementNeon;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    z-index: 1;
}





.circle {
    animation-name: movementCircle;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    z-index: -1;
}

@keyframes movementCircle {
    0% {
        transform: scale(1.05);

    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* landing */
.landing {
    position: fixed;
    width: 100%;
    right: -105%;
    z-index: 1;
    top: 0;
    overflow: hidden;
    transition: all;
    transition-duration: 1s;
    background-color: white;
}


.landing.active {
    right: 0;
    top: 0;
    border-radius: 0%;
    position: absolute;
    margin: 0;
    opacity: 1;
    z-index: 20;
    overflow: auto;
}

.container-close {
    display: flex;
    justify-content: end;
    justify-items: center;
    margin-top: 80px;
}

.close-landing {
    font-size: 60px;
    cursor: pointer;
    margin-right: 50px;
    position: relative;
}

.close-landing img {
    width: 50px;
    transition: all;
    transition-duration: 1s;
}

.close-landing img:hover {
    transform: rotate(180deg);
}

@media only screen and (max-width: 600px) {
    .close-landing {
        margin-right: 10px;
    }

    .close-landing img {
        width: 40px;
    }
}

.container-img-button {
    position: absolute;
    top: 0;
}

.img-botton {
    width: 350px;
    max-width: 40%;
    display: block;
    position: absolute;
    -webkit-animation: moveX 10.05s linear 0s infinite alternate, moveY 10.4s linear 0s infinite alternate;
    -moz-animation: moveX 10.05s linear 0s infinite alternate, moveY 10.4s linear 0s infinite alternate;
    -o-animation: moveX 10.05s linear 0s infinite alternate, moveY 10.4s linear 0s infinite alternate;
    animation: moveX 10.05s linear 0s infinite alternate, moveY 10.4s linear 0s infinite alternate;
}

@-webkit-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 320px);
    }
}

@-moz-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 320px);
    }
}

@-o-keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 320px);
    }
}

@keyframes moveX {
    from {
        left: 0;
    }

    to {
        left: calc(100% - 320px);
    }
}

@-webkit-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100% - 320px);
    }
}

@-moz-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100% - 320px);
    }
}

@-o-keyframes moveY {
    from {
        top: 0;
    }

    to {
        top: calc(100% - 320px);
    }
}

@keyframes moveY {
    from {
        top: -20px;
    }

    to {
        top: calc(100% - 320px);
        ;
    }
}

@media only screen and (max-width: 600px) {
    @keyframes moveX {
        from {
            left: 0;
        }

        to {
            left: 23%;
        }
    }

    @keyframes moveY {
        from {
            top: -20px;
        }

        to {
            top: calc(100% - 38vw);
            ;
        }
    }
}

.icon_bsm {
    width: 7.8rem;
}

@media only screen and (max-width: 600px) {
    .icon_bsm {
        display: none;
    }
}

.number {
    max-width: 80%;
    width: 200px;
    margin: auto;
    display: block;
}

/*utitlities*/
.bsm_separator {
    margin: 2rem auto;
    width: 120px;
    border-top: #000 solid 5px;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.bg-primary {
    background-color: #f2e61a;
}

.bg-img {
    background-image: url(../images/fond.png);
}

.container-xl {
    max-width: 912px;
    margin: auto;
    padding: 0 1rem;
}

.max-w-sm {
    max-width: 645px;
}

.my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;

}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;

}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;

}

.w-28 {
    width: 6rem;
}

.w-sm {
    width: 500px;
}

.text-base {
    font-size: 16px !important;
}

.text-lg {
    font-size: 26px !important;
}

.text-xl {
    font-size: 38px !important;
}

.text-2xl {
    font-size: 50px !important;
}

.font-light {
    font-weight: 300 !important;
}

.font-bold {
    font-weight: bold !important;
    font-family: 'DINAlternateBold';
}

@media only screen and (max-width: 600px) {

    .header-bold {
        font-size: 37px;
    }

    .header-light {
        font-size: 37px !important;
    }
}

.border-l {
    border-left: #000 solid 1px;
}

.border-r {
    border-right: #000 solid 1px;
}



.border-t-10 {
    border-top: #000 solid 10px;

}

.border-b-10 {
    border-bottom: #000 solid 10px;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media only screen and (max-width: 600px) {
    .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 860px) {

    .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .sm-text-center {
        text-align: center;
    }

    .border-l {
        border-left: none;
    }

    .border-r {
        border-right: none;
    }
}

.gap-6 {
    gap: 1.5rem;
}

.gap-12 {
    gap: 3rem;
}

@media only screen and (min-width: 600px) {

    .md-flex {
        display: flex;
    }
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}



.btn-black {
    padding: 10px 48px 14px;
    background-color: black;
    color: #fff;
    font-weight: bold;
    font-family: 'DINAlternateBold';
    border-radius: 250px;
    margin-top: 1rem;
    display: inline-block;
    line-height: normal;
    font-size: 26px;
}

@media only screen and (max-width: 750px) {
    .btn-black {
        font-size: 16px;
        padding: 8px 20px 10px;
    }
}

.hidden {
    max-height: 100vh;
    overflow: hidden;
}