@charset "UTF-8";
/*!
* Style sheet for Jdev web page
* Modifying of initial properties of the Bootstraap framework
* Copyright 2021 Jdev
*/

/* Import for Barlow Font from API's Google font */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Definition of style variables */
:root {
    --colorone: #00c0c9;
    --colortwo: #1d1a3d;
    --fonttheme: 'Barlow', sans-serif;
}

/* Propriétés mobile */

@media screen and (max-width: 400px) {
    .containPage {
      padding: 1rem 2rem 5rem!important;
    }
}

@media screen and (max-width: 600px) {
    .containPage {
      padding: 1rem 2rem 5rem!important;
    }
}

/* Body */
html,body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--fonttheme);
    background-color: #f5f5f5ba;
}

/* Navbar */
.navbar {
    background-color: var(--colortwo);
}

.nav-item {
    padding: 12px;
}

.nav-link {
    color: white;
    font-weight: 400;
    font-size: 17px;
}

.nav-link i {
    font-size: 15px;
    padding: 5px;
}

a.nav-link.active {
    color: var(--colorone);
    font-weight: 600;
}
a.nav-link:hover, a.nav-link:focus {
    opacity:0.7;
    color: var(--colorone);
}
.navbar-toggler {
    color: white!important;
}

.navbar-toggler-icon {
    font-size: 30px;
    width: auto;
    height: auto;
}

.navbar-toggler-icon:hover {
    opacity:0.8;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.custom-link {
    font-weight: 500;
}

.custom-link i {
    font-size: 1.5rem;
    vertical-align: sub;
}

/* Container Page */
.containPage {
    padding: 2rem 0 5rem;
}

.footer{
    position: fixed;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
}

.footer a {
    color: var(--colortwo);
    text-decoration: auto;
}

#pageHome {
    padding: 6rem 0;
}

/* Chemin accès > Nav */
.breadcrumb-item {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--colortwo);
}

.breadcrumb-item a {
    color: var(--colortwo);
}

/* Titres & textes */
.titlePage {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--colortwo);
}

.text-heading {
    font-size: 20px;
}

/* Buttons */
.bton {
    padding: 10px 15px 12px 7px;
    font-size: 17px;
    border-radius: 6px;
    text-decoration: auto;
    /* margin: -1px; */
}

.btn-white {
    border: white 1px solid;
    color: white;
}

.btn-white:hover {
    background-color: #ffffff3d;
    color:white;
}

.btn-border {
    background-color: #0000ff00!important;
    color: var(--colorone);
}

.btn-border:hover {
    background-color: #00c0c96e!important;
    color: var(--colorone);
}

/* Card */

.card {
    -webkit-box-shadow: 0px 0px 17px 2px rgb(0 0 0 / 6%);
    box-shadow: 0px 0px 17px 2px rgb(0 0 0 / 6%);
    height: 100%;
}

.cardElement{
    padding: 15px;
}

.cardElement a {
    text-decoration: none;
    color: inherit;
}

.cardBlock {
    margin-bottom: 20px;
}

.card-body {
    padding: 1.5rem;
}

.card-badge {
    position: absolute;
    right: 20px;
}

.card-badge span {
    font-weight: 400;
    padding: 4px 10px 6px;
}

.card-badge .open-all {
    background-color: #1d1a3d;
}

.avance {
    background-color: #00c0c9;
}

.debutant {
    background-color: #673ab7;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
}

.card-text {
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.card-lang {
    font-size: 13px;
    font-style: italic;
    opacity: 0.8;
}

.card .btn {
    border-color: var(--colorone);
    background: var(--colorone);
    padding: 6px 12px 6px 8px;
}

.card .btn:hover {
    opacity:0.8;
}
.card .btn:focus {
    box-shadow: none;
}

.card-footer {
    border: none;
    font-size: 14px;
    text-align: end;
}

.cardElement:hover {
    z-index: 2;
    transition: all 100ms ease-in;
    transform: scale(1.02);
}

.cardElement .card:hover {
    border: 1px solid #1d1a3d94;
}

/* Formation */
#formationCards .card img {
    padding: 0px;
    margin: 15px 0px;
}
.cardMessageJdev .card {
    height: 100%;
}
.cardMessageJdev .card-text {
    -webkit-line-clamp: 10!important;
}

.cardMessageJdev .card-title {
    font-size:30px!important;
    color:var(--colorone)
}

.cardMessageJdev .icon-card i {
    font-size: 25px;
    background-color: #00c0c94d;
    padding: 9px 12px;
    border-radius: 1rem;
    color: var(--colorone);
}

/* Tutoriel */

#pageTutoriel .card-title {
    margin-top: 30px;
}

.infoTutoriel, .infoFormation {
    padding-right: 5rem;
}
.info-heading-tuto {
    margin-bottom: 2rem;
    border-bottom: 1px solid #1d1a3d14;
}

.info-heading-tuto h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-heading-tuto a {
    text-decoration: auto;
    color: var(--colorone);
}

.contenuTutoriel h2 {
    font-weight: 600;
}

.contenuTutoriel p {
    font-size: 18px;
}


/* Formation */

.contenuFormation h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contenuFormation p {
    font-size: 19px;
}

.blockModul {
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    margin-bottom: 8rem;
    box-shadow: 0px 0px 11px 1px rgb(0 0 0 / 14%);
}

.blockModul h3 {
    padding: 1.5rem 2rem 0.5em;
}

.blockModul .nav-link {
    padding: 1rem 2rem;
    color: grey;
}

.blockModul .nav-link.active {
    color: #1d1a3db0;
    background-color: #1d1a3d3b;
    border-radius: 0px;
    font-weight: 500;
}

.blockModul .nav-link:hover {
    background-color: #1d1a3d1a;
    color: #1d1a3db0;
    border-radius: 0px;
}

.blockColor {
    background-color: #f5f5f5;
    padding: 1.5rem 2rem;
    margin: 10px;
    border-radius: 10px;
}

.blockColor h4{
    font-size: 19px;
    color: var(--colorone);
    /* color: grey; */
}

.blockColor p, .blockColor a {
    color: grey;
    text-decoration: none;
    font-size: 16px!important;
}

.blockColor li {
    color: grey;
}

.btnModuleOption a {
    background-color: #00c0c936;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--colorone);
    text-decoration: none;
}

.btnModuleOption a:hover {
    background-color: #00c0c96b;
}

.btnModuleOption {
    margin: 20px 0 0 0;
    text-align: end;
}