/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 764px) {
    .versionpc {
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up)
  @media only screen and (min-width: 600px) {
    .example {background: green;}
  }
   */

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .versionmobile {
        display: none;
    }
}

* {
    /* border: 1 solid red;
  background-color: rgba(255, 0, 0, 0.3); */
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

.px-10 {
    padding-left: 10rem;
    padding-right: 10rem;
}

.img-sm {
    max-width: 100%;
}

.btn-centrale-success {
    /* padding: 15px 30px; */
    padding: 0.6rem 1.2rem;
    border: none;
    font-size: 14px;
    color: #fff;
    background-color: #8dbe25;
    text-align: left;
    filter: drop-shadow(4px 4px 30px rgba(141, 190, 37, 0.4));
}

.header-cover {
    width: 100%;
    object-fit: cover;
    height: 260px !important;
}

.header-caption {
    position: absolute;
    height: 100%;
    width: 58%;
    left: 12%;
    display: flex;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.header-caption * {
    margin: 0;
}

.header-title {
    color: #272b4f;
    font-family: Roboto;
    text-align: left;
    font-weight:bold;
    font-size: 1rem;
    margin-top: 6px;
}

.header-caption p {
    color: black;
    font-family: Roboto;
    text-align: left;
    font-size: 0.8em;
}

.playBtn {
    height: 70px;
    border: none;
    font-size: 26px;
    background-color: transparent;
    text-align: center;
    color: #9c9c9c;
}

.playBtn-icon {
    position: relative;
    animation: radiate 1s ease infinite;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.playBtn-text {
    font-size: 15px;
    color: #9c9c9c;
    visibility: hidden;
}

.playBtn-text:hover {
    text-decoration: none;
    color: inherit;
}

.pointer {
    cursor: pointer;
}

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-none:hover {
    text-decoration: none;
}

.playBtn-icon {
    background: linear-gradient(45deg, #fd7e14 2%, #fff, #fd7e14 98%);
}

@keyframes radiate {
    from {
        box-shadow: 0 0 0px 0px rgb(255 0 0 / 50%);
    }
    to {
        box-shadow: 0 0 0px 15px rgb(255 0 0 / 0%);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .px-sm-10 {
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .img-sm {
        max-width: 100%;
    }

    .header-title {
        font-size: 35px;
    }

    .header-caption p {
        font-size: 0.8em;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .px-md-10 {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    .img-sm {
        max-width: 80%;
    }

    .header-title {
        font-size: 45px;
    }

    .header-caption p {
        font-size: 1.2em;
    }

    .header-cover {
        height: 460px !important;
    }

    .playBtn-text {
        visibility: visible;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .px-lg-10 {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    .img-sm {
        max-width: 60%;
    }

    .custom-position {
        left: 8%;
        top: 10%;
    }

    .header-title {
        font-size: 48px;
    }

    .header-caption p {
        font-size: 1.1em;
    }

    .header-cover {
        height: 560px !important;
    }

    .btn-centrale-success {
        padding: 0.8rem 1.9rem;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .px-xl-10 {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    .img-sm {
        max-width: 40%;
    }

    .example {
        background: pink;
    }

    .header-cover {
        height: 660px !important;
    }

    .btn-centrale-success {
        padding: 1rem 2.6rem;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .px-xxl-10 {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    .img-sm {
        max-width: 20%;
    }

    .header-title {
        font-size: 56px;
    }

    .header-caption p {
        font-size: 1.3em;
    }

    .header-cover {
        height: 760px !important;
    }
}

.shadow {
    box-shadow: 0 3px 15px 5px #0001;
}

span.link-card {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffebb5ff;
    border-radius: 25px;
}

span.link-card-img {
    padding: 10px;
    width: 50px;
    height: 50px;
    display: block;
    background: #fcc200ff;
    border-radius: 25px;
}

.cursor-pointer {
    cursor: pointer;
}
