:root {
--top_bkg_1: #ffe9ac;
--top_bkg_2: #ffcc5f;
--theme_dark: #f06800;
--text_color: #000000;
--success: #00a70b;
--error: #e30000;
--light: #fff0c6;
}

@media (max-width: 700px) {
    .cNarrow {
      display: block
    }
}

body, html {
    height: 100%;
    margin: 0;
    color: var(--text_color);
    font-family: 'Reggae One', cursive;
    font-family: 'Ubuntu', sans-serif;
    background-color: #fcfcf2 !important;
    }

    .cThemeDark {
    color: var(--theme_dark);
    font-weight: bold;
    }

    .cH2{
    font-size: 1.8em;
    color: var(--theme_dark);
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
    }

    .cSmaller {
        font-size: smaller;
    }

    @media (max-width: 767.98px) {
        .cH2{
            font-size: 1.2em;
            color: var(--theme_dark);
            font-weight: bold;
            margin-top: 2px;
            margin-bottom: 2px;
        }
    }

    .cColorTheme {
        color: var(--theme_dark);
        font-size: smaller;
    }

    .cRoundedFrame {
        border-style: solid;
        border-width: 1px 10px 1px 10px;
        border-color: var(--theme_dark);
        border-radius: 5px;
        padding: 5px 8px 5px 8px;
        background-color: #ffffff;
    }

    .cSubtitle {
        color: var(--theme_dark);
        font-weight: bold;
        margin-top: 15px;
        margin-bottom: 0px;
        font-size: 1.3em;
    }

    @media (max-width: 767.98px) {
        .cSubtitle {
            color: var(--theme_dark);
            font-weight: bold;
            margin-top: 15px;
            margin-bottom: 0px;
            font-size: 1.1em;
        }
    }

    .cParagraph {
        color: var(--text_color);
        font-size: 1.3em;
    }

    @media (max-width: 767.98px) {
        .cParagraph {
            color: var(--text_color);
            font-size: 1em;
        }
    }

.cTopBkg {
  background-color: var(--top_bkg_1);
  min-height: 100%;
  font-size: 1em;
  font-weight: bold;
  background-image: url('ressources/bkg.svg');
  position: relative;
  opacity: 1;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes bkgcolor {
  0% {background-color: var(--top_bkg_1);}
  50% {background-color: var(--top_bkg_2)}
  100% {background-color: var(--top_bkg_1);}
}



.cLogo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
  transform: translate(-50%, -50%);

  background-color: var(--theme_dark);
  border-style: solid;
  border-width: 4px 0px 4px 0px;
  border-color: #ffffff;
  padding-bottom: 0px;
}



.caption span.border {
  background-color: var(--theme_dark);
  color: #fff;
  padding: 18px;
  font-size: 40px;
  letter-spacing: 10px;
  border-width: 5px;
}


/* ========================================================= */
/* ======================= MORE BELOW ====================== */
/* ========================================================= */
.cMore {
    position: absolute;
    left: 50%;
    top: 75%;
  }

.cMovableContainer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;  
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cAnimationArrow {
    animation-name: moveArrow;
    animation-duration: 0.8s;
    animation-iteration-count: 2;
    animation-timing-function: ease-in-out;
    /*animation-delay: 1s;*/
}

@keyframes moveArrow {
    0%   {top:0px;}
    25% {top:5px;}
    100% {top:0px;}
  }

/* ========================================================= */
/* ======================== BANDEAU ======================== */
/* ========================================================= */
.cBanner {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-top: 5px;
    background-color: var(--theme_dark);

    border-style: solid;
    border-width: 2px 0px 2px 0px;
    border-color: #ffffff;
}

.cPortfolio {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-bottom: 5px;
    padding-top: 5px;
    background-color: white;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: var(--theme_dark);
    border-radius: 3px;
    color: var(--theme_dark);
    font-size: 1.2em;
    font-weight: bold;
    /*style="margin-bottom: 0px; margin-top: 15px;"*/
    text-align: center;
}

.cH1 {
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 4px 4px 5px #000000;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* ========================================================= */
/* ========================= CARDS ========================= */
/* ========================================================= */
.cBoxShadow {
    border-style: none;
    border-width: 0px !important;
    border-radius: 0px !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.cCardWidth {
    width: 24em;
    margin: 15px;
    padding: 0px;
}

.cCardBody {
    padding: 5px 5px 5px 5px !important;
}

.cCaptureWrapperModal {
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px 3px 0px 0px;
}

.cCaptureNoZoom {
    width: 100%; 
    border-radius: 3px 3px 0px 0px;
}

.cCapture {
    width: 100%; 
}

@keyframes zoom_in {
    0% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
    100% {
        transform: scale(1.04);
        -webkit-transform: scale(1.04);
    }
}

@keyframes zoom_out {
    100% {
        transform: scale(1.00);
        -webkit-transform: scale(1.00);
    }
}

.cCapture:hover {
    animation: zoom_in 1s ease-in-out forwards;
    -webkit-animation: zoom_in 1s ease-in-out forwards;
}

.cCaptureNoLink {
    width: 100%;   
}

.cCaptureWrapper {
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-radius: 3px 3px 0px 0px;
}

.cRideau {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.886);
    height: 0px;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text_color);
}

.cWebTable {
    font-size: 1em;
    margin: 5px 5px 5px 5px;
    table-layout: fixed;
}


tr {
    height: 36px;
}

.cRounded {
    color: #ffffff;
    background-color: var(--theme_dark); 
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cWebTableTd {
    padding-left: 5px;
}

.cTableSeparator {
    border-style: dashed;
    border-width: 0.3px 0px 0px 0px;
    border-color: var(--theme_dark);
    padding-top: 3px;
}

.cWebTableIcon {
    background-color: inherit;
}

.cTableIconUp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}


.cWebTableTitle {
    color: var(--theme_dark); 
    font-weight: bold;
    padding-left: 5px;
    font-size: 1.1em;
}


.cURL {
    border-radius: 5px;
    color: white;
    background-color: var(--theme_dark);
    padding: 3px 5px 2px 5px;
    font-size: smaller;
}

.cNudeLink {
    cursor: pointer;
    text-decoration: none;
}

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

/* ========================================================= */
/* ========================= ANIMATION ========================= */
/* ========================================================= */
.cCloud {
    position: absolute;
    height: 50px;
    left: 100px;
    top: 100px;
    border-style: solid;
    border-width: 2px;
    border-color: #ffffff;
    border-radius: 8px;
    background-color: #ffeeb1;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

@keyframes floating {
    0% {left: 100px; top: 100px;}
    10% {left: 110px; top: 90px;}
    20% {left: 90px; top: 95px;}
    30% {left: 100px; top: 105px;}
    40% {left: 105px; top: 100px;}
    50% {left: 95px; top: 105px;}
    60% {left: 105px; top: 100px;}
    70% {left: 100px; top: 90px;}  
    80% {left: 110px; top: 100px;}
    90% {left: 100px; top: 95px;}
    100% {left: 100px; top: 100px;}  
  }



.cAnimation {

    position: absolute;
top: 30%;

width: 100%;
height: 50px;
overflow: hidden;
}

.cBandeau {
    height: 100%;   
}

.cLayerBoite {
    position: absolute;
    height: 50px;
    left: 0px;
    overflow: hidden;

    animation: moveright 40s infinite;
}

@keyframes moveright {
    100% {left: 2000px;}
  }

.cLayer1 {
height: 100%;
}


.cIdPhoto {
    border-style: solid;
    border-width: 3px;
    border-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    margin-right: 5px;
}

/* ========================================================= */
/* ========================= FORM ========================= */
/* ========================================================= */
.cForm {
    width: 100%;    
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;

}

.cDescriptionForm {
    width: 100%;
    height: 500px;
    background-color: var(--main_light);
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  }

.cFormElement {
    width: 100%;
    padding: 0px;
    border: 2px solid var(--theme_dark);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 5px;
    resize: vertical;

    background-color: #ffffff;
    color: var(--theme_dark);
    font-weight: normal;
    font-size: 1.2em;
}

.cFormLabel {
 font-size: 1.2em;
 font-weight: bold;
 margin-right: 0px;
 color: var(--theme_dark);
 text-align: right;
}

@media (max-width: 767.98px) {
    .cFormLabel {
        font-size: 1.2em;
        font-weight: bold;
        margin-right: 0px;
        color: var(--theme_dark);
        text-align: left;
       }
}

.cSubmitButton {
font-size: 1.2em;
font-weight: bold;
width: 130px;
background-color: var(--theme_dark);
color: #ffffff;
text-align: center;
border-radius: 3px;
cursor: pointer;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 0px;
padding: 5px 10px 5px 10px;
border-style: solid;
border-width: 2px;
border-color: #ffffff;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
float: right !important;
}


.cSubmitButtonInactive {
    font-size: 1.2em;
    font-weight: bold;
    width: 130px;
    background-color: var(--theme_dark);
    color: #ffffff;
    text-align: center;
    border-radius: 3px;
    cursor:not-allowed ;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 0px;
    padding: 5px 10px 5px 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    float: right !important;
    opacity: 0.5;
    }

.cStickyMenuItem {
    cursor: pointer;
}

.cStickyMenu {
    width: 190px;
    Position: fixed;
    top: 5%;
    left: 10px;
    z-index: 9; 
    background-color: var(--theme_dark);
    text-align: center;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color: white;
    /*padding: 3px 8px 3px 8px;*/
    color: white;
    font-weight: normal;
    font-size: 1.2em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    opacity: 0.5;
    transition: opacity 0.5s;
    }

    .cStickyMenu:hover {
        opacity: 1;
        transition: opacity 0.5s;
    }

    @media (max-width: 767.98px) {
        .cStickyMenu {
            Position: fixed;
            top: 5%;
            left: 10px;
            z-index: 9; 
            background-color: var(--theme_dark);
            text-align: center;
            border-style: solid;
            border-width: 2px;
            border-radius: 5px;
            border-color: white;
            /*padding: 3px 8px 3px 8px;*/
            color: white;
            font-weight: normal;
            font-size: 1em;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
            opacity: 1;
            }

        .cStickyMenu:hover {
            opacity: 1;
        }
    }

    .cStickyMenuHead {
        width: 100%;
        background-color: white;
        color: var(--theme_dark);
        cursor: pointer;
        padding: 0px;
        margin: 0px;
        font-weight: bold;
    }
    
    .cStickyMenuBody {
        width: 100%;
        padding: 3px 5px 3px 5px;
    }

/* ============== Top Button ============== */
.cGoTop {
    Position: fixed;
    top: 85%;
    left: 5%;
    z-index: 9; 
    }

.cButtonTop {
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.cButtonTop:hover {
    opacity: 1;
    transition: opacity 0.5s;
}

/* ============== Form ============== */
.cError {
    color: var(--error);
    font-weight: bold;
    font-size: 1.2em;
}

.cSuccess {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2em;
}


.cModalLink {
    cursor: pointer;
    color: #2370B2 !important;
    font-style: normal;
    text-decoration: none;
}


.cModalLink:hover {
    color: #114471 !important;
    cursor: pointer;
    font-style: normal;
    text-decoration: underline !important;
}


.cCheckbox {
    accent-color: var(--theme_dark);
}

.cFormSubLabel {
    font-weight: normal;
    font-size: 1em;
    color: var(--theme_dark);
    margin-left: 20px;
}

@media (max-width: 767.98px) {
    .cFormSubLabel {
        font-weight: normal;
        font-size: 0.8em;
        color: var(--theme_dark);
        margin-left: 20px;
    }
}

.cCopySuccess {
    color: var(--success);
    text-decoration: none !important;
}

.cCopyError {
    color: var(--error);
    text-decoration: none !important;
}

  .cNameAlphabet {
    font-size: 1.5em;
  }

  .cNameKatakana {
    font-size: 1.2em;
    font-weight: normal;
  }

  @media (max-width: 767.98px) {
    .cNameAlphabet {
        font-size: 1.3em;
      }
    .cNameKatakana {
        font-size: 0.8em;
        }
  }


/* ========================================================= */
/* ========================= FORM ========================= */
/* ========================================================= */
.cThankYou {
    font-size: 3em;
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 5px #000000;
}

.cClose {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 75%;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--light);
    text-shadow: 4px 4px 5px #000000;
    cursor:pointer;
}