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

/* Table of Contents
     1. General
     2. Backgrounds
     3. Typography
     4. Components (buttons, cards etc.)
     5. Custom responsive styles
     6. Admin area
     7. QuillJS
     8. Blazor default styles
*/

/*COOKIES*/

.cc-font-overwrite {
    font-family: 'quicksandlight', Helvetica, Arial;
    color: #e2bc36;
    ;
}

.cc-max-w-3xl, .cc-max-w-3xl h1, .cc-max-w-3xl div, .cc-max-w-3xl p, .cc-max-w-3xl button {
    color: #e2bc36 !important;
    height: contain !important;
}

    .cc-max-w-3xl a {
        color: #e2bc36 !important;
    }

    .cc-max-w-3xl p {
        text-indent: 0;
        padding-top: 9px !important;
        color: #e2bc36 !important;
        text-align: justify !important;
    }

    .cc-max-w-3xl a:hover {
        color: black !important;
    }

    .cc-max-w-3xl button:nth-of-type(1):hover {
        color: #b95754 !important;
    }

    .cc-max-w-3xl .cc-block:nth-of-type(1) {
        /*  background: #EBEAF0 !important;*/
        color: black !important;
        border: groove 1px !important;
    }

    .cc-max-w-3xl button:nth-of-type(2) {
        background: #e2bc36 !important;
        color: black !important;
        border: groove 1px !important;
    }

    .cc-max-w-3xl .cc-block:nth-of-type(1):hover {
        background: #b95754 !important;
        color: white !important;
    }

    .cc-max-w-3xl .cc-block:nth-of-type(2):hover {
        background: black !important;
        color: white !important;
    }

/*COOKIES END*/

/* Classe pour le texte avec fond blanc qui s'efface progressivement */
.text-with-gradient-bg {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
}

/*-=-=-=-=-=-=-=-=-=-*/
/* GENERAL STYLES */
/*-=-=-=-=-=-=-=-=-= */
#elementcc {
    animation: falldown 1.1s, fadeIn 1.1s;
}

#elementdd {
    animation: fadeIn2 1.1s;
}

h2 {
    animation: falldown 2.5s, fadeIn 2.5s;
}

h1 {
    animation: falldown .7s, fadeIn .7s;
}

h3 {
    animation: falldown 1s, fadeIn 1s;
}

h4 {
    animation: falldown .7s, fadeIn .7s;
}


@keyframes falldown {

    0% {
        transform: translate(0, -900px);
        opacity: 0;
    }
}

@keyframes fadeIn {

    0% {
        opacity: 0;
    }
}

@keyframes fadeIn2 {

    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }
}

* {
    box-sizing: border-box;
}


/*@font-face {
    font-family: AbsaraSansPro-Light;
    src: url('\assets\fonts\AbsaraSansPro-Light.otf');
    src: local('\assets\fonts\AbsaraSansPro-Light.otf'), url('\assets\fonts\AbsaraSansPro-Light.otf') format('opentype');
}*/

@font-face {
    font-family: 'AbsaraSansPro-Light';
    font-style: normal;
    font-weight: normal;
    src: local('assets\fonts\AbsaraSansPro-Light.otf') format('opentype');
}

@font-face {
    font-family: 'AbsaraSansPro-Thin';
    font-style: normal;
    font-weight: normal;
    src: local('assets\fonts\AbsaraSansPro-Thin.otf') format('opentype');
}
/*
@font-face {
    font-family: 'AbsaraSansPro-Light';
    font-weight: bold;
    src: url("assets\fonts\AbsaraSansPro-Light.otf") format("opentype");
}*/

main {
    margin-top: 0;
    margin-bottom: 170px;
    min-height: 100vh;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    min-height: 100vh;
    /*   position: relative;*/
    /*padding-bottom: 350px;*/
    /*   font-family: 'AbsaraSansPro-Light', sans-serif ;*/
    box-sizing: border-box;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    font-size: 1.2rem;
    text-align: center;
    background-color: rgb(233,233,233);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0;
}

html, body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    color: black;
}

#wrap {
    min-height: -webkit-calc(100% - 100px); /* Chrome */
    min-height: -moz-calc(100% - 100px); /* Firefox */
    min-height: calc(100% - 100px); /* native */
}

.clear {
    clear: both;
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 30px 0;
    font-weight: 500;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

#container {
    width: 860px;
    margin: 0 auto;
}

section {
    position: relative;
    height: 200px;
    margin: 60px 0;
}

.section--white {
    background-color: #FFFFFF;
}

.section--red {
    background-color: #E74C3C;
}

.section--purple {
    background-color: #D6A8E9;
}

.section--blue {
    background-color: #33CCF7;
}

.section--yellow {
    background-color: #F4E9B4;
}

.section--green {
    background-color: #80D99D;
}

.section--cyan {
    background-color: #80D99D;
}

.section--pale {
    background-color: #F4E9B4;
}

.col_third section {
    margin: 0;
}

.icn_red {
    color: #FF3D6A;
}

.icn_purple {
    color: #9B59B6;
}

.icn_blue {
    color: #3498DB;
}

.icn_yellow {
    color: #F1C40F;
}

.icn_green {
    color: #80D99D;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Wow Image */
/*-=-=-=-=-=-=-=-=-= */

.service-section {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.wow_imgage {
    position: relative;
    float: left;
    margin: 0 20px 20px 0;
    width: 270px;
    height: 180px;
}

    .wow_imgage img {
        border: 4px solid #e4e4e1;
    }

/*-=-=-=-=-=-=-=-=-=-*/
/* Column Grids */
/*-=-=-=-=-=-=-=-=-= */

.col_half {
    width: 49%;
}

.col_third {
    width: 32%;
}

.col_fourth {
    width: 23.5%;
}

.col_fifth {
    width: 18.4%;
}

.col_sixth {
    width: 15%;
}

.col_three_fourth {
    width: 74.5%;
}

.col_twothird {
    width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
    position: relative;
    display: inline;
    display: inline-block;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
}

.end {
    margin-right: 0 !important;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Links */
/*-=-=-=-=-=-=-=-=-= */

a {
    text-decoration: none;
    color: #666666 !important;
}

    a:hover, a:active {
        outline: 0;
        color: #666666;
    }

*::-webkit-scrollbar {
    display: none !important;
}

.zoom-in-out-box {
    animation: zoom-in-zoom-out 1.8s ease;
    display: flex;
    width: 50%;
    margin:auto;

}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0, 0);
    }

    50% {
        transform: scale(2.2, 2.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

.imagetext {
    position: relative;
}

.imagetextimg {
    width: 100%;
    height: auto;
}

.imagetext p, .imagetexttext {
    position: relative;
    margin-top: 1rem;
}

/*#app*/
/*main*/

article {
    background-color: rgba(255, 255, 255, 0);
    border-style: none !important;
    padding: 0px 50px 50px 50px;
    margin: 0px 50px;
    border-radius: 18px;
}

.col {
    text-align: center;
}

a {
    color: #99f6f6;
}

    a:hover {
        color: white;
    }
/* 1. General */
.shadow {
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.4) !important;
}

.shadow-no-hover {
    box-shadow: 0 0.15rem 0.4rem rgba(0, 0, 0, 0.5) !important;
}

.shadow:hover {
    box-shadow: 0 0.15rem 0.4rem rgba(0, 0, 0, 0.8) !important;
}

.w-8 {
    width: 8%;
}

.w-14 {
    width: 14%;
}

.w-15 {
    width: 15%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.z-index-5 {
    z-index: 5;
}

.min-vh-90 {
    min-height: 90vh !important;
}

.overflow-auto {
    overflow: auto;
}

/* 2. Backgrounds */

.bg-motherboard-dev {
    background-image: linear-gradient(to bottom, rgba(25, 25, 112, 0.5), rgba(0, 0, 0, 0.3)), url("../assets/img/publicbackgrounds/Galaxy-stars.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hover-bg-white:hover {
    background-color: #FFF;
}

.bg-white-94 {
    text-align: center;
}

/* 3. Typography */
p {
    text-align: justify;
    color: black;
}
/* 4. Components (buttons, cards etc.) */

.btn {
    font-weight: bold;
    color: black;
    border-radius: 50px;
    margin-block: 14px;
    margin-inline: 100px;
    padding: 15px 0px 15px 0px;
    background: rgba(243,208,12, 1);
    background-color: rgba(243, 208,12, 1);
    border-color: black !important;
    cursor: pointer;
    transition: all .4s;
    transform: scale(1);
    opacity: 1;
    border-style: none !important;
}

.btn-blog {
    color: black;
    border-radius: 50px;
    margin-block: 14px;
    margin-inline: 160px;
    padding: 15px 0px 15px 0px;
    background: rgba(243,208,12, 1);
    background-color: rgba(243, 208,12, 1);
    border-color: black !important;
    cursor: pointer;
    transition: all .4s;
    transform: scale(1);
    opacity: 1;
    border-width: 0px 2px 2px 1px;
}

    .btn:hover, .btn-blog:hover {
        background-color: rgba(243, 208,12);
        background: white;
        overflow: hidden;
        border-color: black !important;
        color: white;
    }

    .btn:focus, .btn-blog:focus {
        background-color: rgba(220,220,220,0.6);
        overflow: hidden;
        color: yellow;
        border-color: yellow !important;
    }

.btn-secondary {
    background: rgb(255,255,255);
    background: rgba(226,188,54,1);
    color: black;
    padding: 20px;
}

.btn-update {
    color: #FFF;
    background-color: red;
    border-color: black;
}

    .btn-update:hover {
        color: #FFF;
        background-color: white;
        border-color: black;
    }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.hide {
    display: none;
}

.myDIV:hover + .hide,
.myDIV:focus + .hide {
    display: block;
}

.card-body {
    text-align: center !important;
    text-justify: auto;
    border-style: none;
    padding: 0px 0px 0px 0px;
    background: rgb(243, 208, 12, .2);
}

    .card-body > p {
        padding: 15px 33px 25px 33px;
        color: black;
        margin-top: 0px;
    }

.card-title {
    color: black;
    background: rgb(243, 208, 12);
    padding: 22px 0px 15px 0px;
    border-radius: 33px 33px 0% 0%;
    margin-bottom: 10px;
}

.card {
    border-style: none;
    background-color: #e2bc36;
    height: 100% !important;
    width: 100% !important;
}

.admin-index-thumbnail-image {
    display: block;
    width: 100%;
    height: auto;
}

.admin-crud-form-thumbnail-image {
    display: block;
    width: 50%;
}

.list-group {
    border-radius: 5px;
}

/* 5. Custom responsive styles */
@media (min-width: 1400px) {
    .main1 {
        /*        margin-top: 15vh !important;
*/
    }
}

@media (max-width: 1400px) {
    .mymodal {
        /*  height: fit-content;*/
        padding-bottom: 33px !important;
        overflow: scroll;
    }

    .carousel {
        max-width: 100% !important;
    }

    .ql-container {
        padding: 0% 5% 0% 5%;
    }

    .carouselmodal {
        display: table-row !important;
    }

    .carousel {
    }

    .blog-post {
        display: contents !important;
    }

        .blog-post p {
            padding: 0px 13px 0px 13px !important;
        }

    .propos {
        display: flexbox !important;
        position: static !important;
        float: initial !important;
    }

    .proposcontainer {
        float: inherit !important;
        display: !important;
        padding-right: 25px;
        padding-left: 25px;
    }

    .imagetexttext {
        position: static !important;
        margin: 50px 0px 0px 0px !important;
        padding: 0px !important;
    }

    .imagetext {
        position: static !important;
        margin: 50px 0px 0px 0px !important;
        padding: 0px !important;
    }

    .foot1, .foot2, .foot3 {
        padding-top: 42px !important;
    }

    .nav-item {
        padding-right: 2vw !important;
        padding-left: 2vw !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

@media (max-width: 1200px) {
    .foot1, .foot2, .foot3 {
        padding-top: 85px !important;
    }

    .posttitle {
        top: 54% !important;
    }
}

@media (max-width: 992px) {
    .md-and-smaller-my-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }


    button.blazored-modal-close {
        top: 5px !important;
        right: 5px !important;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }


    .carousel {
        max-width: 100% !important;
    }

    .navbar-brand img {
        margin: 50px 0px 0px 0px !important;
    }

    .navbar {
        background: white !important;
    }

    .nav-item {
        padding: 0px !important;
    }

    .nav-link {
        margin: 0px !important;
        padding: 15px !important;
    }

    .navbar-nav {
        background: white !important;
        margin-bottom: 33px !important;
    }

    .md-and-smaller-d-none {
        display: none !important;
    }


    .skill-head-top {
        display: unset;
    }

    .skill-head-h {
        margin: 33px auto 33px auto !important;
    }

    .foot1, .foot3 {
        display: none;
    }

    .liservices {
        margin: 100px !important;
        min-width: fit-content !important;
        height: fit-content !important;
    }

    .ulservices {
        padding: 0px !important;
    }

    .liservices p {
        max-width: contain !important;
        min-height: fit-content !important;
        padding: 33px 5px 33px 5px !important;
    }

    /*    .foot2 {
        padding-top: 80px !important;
        }

    .foot2  {
        margin : 0px auto 0px auto !important;
        padding : 0px 0px 0px 0px !important;
    }

    .foot21 {
        margin: 10px 10px 10px 10px !important;
    }

    .foot22 {
        margin: 10px 10px 10px 10px  !important;
    }
*/
    .foot1, .foot2, .foot3 {
        margin: 55px 0px 0px 0px !important;
    }
    /*    .skill-head {
        min-height: fit-content;
        min-width: fit-content;
    }*/

    /*    .contact{
        display:grid;
        justify-content:center;
        align-content:center;
        justify-items:center;
        align-items:center;
        text-align:center;
}
    */
    /*   .contact-item {
        padding:0px;
        margin:0px;
    }*/



    .carousel2 {
        background-color: transparent !important;
        min-width: 100% !important;
    }

    .posttitle {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
        top: 40% !important;
    }


    .worldmap {
        display: flex; /* Remplacé 'flow' par 'flex' */
        position: relative;
    }

        .worldmap svg {
            max-height: 100% !important;
            display: flex;
        }

    /*.jqvmap-zoomin {
        position: absolute;
        display: none !important;
        margin: 3px !important;
        padding: 0 !important;
        top: 15px !important;
        right: 30px;*/ 
        /*color:transparent
    }
    .jqvmap-zoomout {
        position: absolute;
        display: none !important;
        margin: 3px !important;
        padding: 0 !important;
        top: 15px !important;
        color: transparent;
        right: 0px;*/ 
    /*}*/
}



@media (min-width: 992px) {
    .md-f-size-1-5 {
        font-size: 1.5rem;
    }

    .skill-head {
        height: 600px !important;
        width: contain !important;
    }

    .imgblog {
        padding: 0 !important;
    }

    .carousel2 {
        max-width: 40% !important;
    }
}

@media (max-width: 767px) {
    .posttitle {
        top: 70% !important;
    }
    /*    .foot2 {
        padding-top: 80px !important;
        }

    .foot2  {
        margin : 0px auto 0px auto !important;
        padding : 0px 0px 0px 0px !important;
    }

    .foot21 {
        margin: 10px 10px 10px 10px !important;
    }

    .foot22 {
        margin: 10px 10px 10px 10px  !important;
    }
*/
    .foot1, .foot2, .foot3 {
        margin: 75px 0px 0px 0px !important;
    }
}

@media (max-width: 530px) {
    html {
        height: 70% !important;
    }

    .posttitle {
        top: 67% !important;
    }
}

@media (min-width:500px) {
    .main1 {
        margin-top: 5vh;
    }
}

@media (max-width: 400px) {
    .posttitle {
        top: 57% !important;
    }
}

@media (max-width: 300px) {
    .posttitle {
        top: 42% !important;
    }


    .foot2 {
        margin: 0px auto 0px auto !important;
        padding: 120px 0px 0px 0px !important;
    }

    .foot21 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

        .foot21 svg {
            margin-top: 0 !important;
            padding-top: 0 !important;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
            margin-right: 10px;
            margin-left: 10px;
        }

    /*.foot22 {
        margin: 10px 10px 10px 10px  !important;
    }
*/
    .foot1, .foot2, .foot3 {
        margin: 55px 0px 0px 0px !important;
    }
}


@media (max-width: 200px) {
    .posttitle {
        top: 18% !important;
    }
}

/*    .worldmap {
        height : 1%;
    }
*/

/* 6. Admin area */
.admin-area-main {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    max-height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
}

.admin-area-content {
    overflow-y: scroll;
    padding: 10vw;
}

/* 7. QuillJS */
.ql-container.ql-snow {
    border: none !important;
}

.ql-toolbar.ql-snow {
    border: none !important;
    display: none;
}

.quill-no-border .ql-container,
.quill-no-border .ql-editor,
.quill-no-border .ql-snow {
    border: none !important;
    outline: none !important;
}

/* Modal blog post - limiter la hauteur et permettre le scroll */
.carouselmodal .blog-post {
    max-height: 65vh;
    overflow-y: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.carouselmodal .blog-post .quill-no-border {
    max-height: 45vh;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 1rem;
}

/* Animation des boutons du carousel à l'ouverture de la modale */
.carouselmodal .carousel-control-prev,
.carouselmodal .carousel-control-next {
    animation: bounceArrow 1.5s ease-in-out 0.5s 2;
}

.carouselmodal .carousel-control-prev {
    animation-name: bounceArrowLeft;
}

.carouselmodal .carousel-control-next {
    animation-name: bounceArrowRight;
}

@keyframes bounceArrowLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes bounceArrowRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.ql-editor {
    /*  font-family: 'Roboto', sans-serif;*/
    font-size: 1rem;
    padding: 0px;
}

    .ql-editor .ql-video {
        width: 640px;
        height: 360px;
    }

/* 8. Blazor default styles */
.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "Une erreur est survenue."
    }

/*SERVICES*/

.ulservices {
    display: flex;
    justify-content: space-around;
    color: black;
}

.liservices {
    display: flex;
    align-items: center;
    width: 350px;
    height: 200px;
    font-size: 70%;
    /*padding: 50px 100px 50px 33px;*/
    transition: transform 0.2s;
    text-justify: inter-word;
    min-height: fit-content;
    margin: 33px;
    border-radius: 93px;
}

    .liservices:nth-child(1) {
        background: white;
    }

    .liservices:nth-child(2) {
        background: white;
    }

    .liservices:nth-child(3) {
        background: white;
    }

/*    .liservices:nth-child(4) {
        background: #c12f29;
    }

    .liservices:nth-child(5) {
        background: #b22222;
    }*/

.ulservices:hover .liservices {
    transform: translateX(-25%);
}

.ulservices:hover li:hover {
    transform: scale(1.5);
    transition-duration: 0.1818181818s;
}

    .ulservices:hover li:hover ~ li {
        transform: translateX(25%);
    }

.liservices > img {
    padding: 10px 20px 10px 0px;
    margin: 0px 0px 0px 0px;
}

.liservices > p {
    padding: 0px 0px 0px 0px;
    margin: 0px 20px 0px 0px;
    color: black;
}

/*** GALLERIE-FILTRE***/

#filter-list {
    border-radius: 25px;
    font: bold 14px Franklin Gothic Demi, Tahoma, Halvetica;
    margin: 0em 0em 0em 0em;
    display: inline;
    list-style: none;
    width: 500px;
    border: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #e2bc36;
    padding: 3px 0px 3px 0px;
}

    #filter-list li {
        padding: 3px 8px 3px 8px;
        display: inline-block;
        font: bold 14px;
        border-width: 0px 0px 4px 3px;
        text-align: center;
        text-decoration: none;
        list-style: none;
        color: #000000;
        text-transform: uppercase;
        border-radius: 25px;
        cursor: pointer;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        letter-spacing: 0.12em;
    }

        #filter-list li.active,
        #filter-list li:hover {
            background: #e2bc36;
            border-width: 0px 0px 0px 0px;
        }

/*scroll*/

/*MODAL*/
.mymodal {
    z-index: 102;
    position: relative;
    /* This way it could be display flex or grid or whatever also. */
    display: inline-block;
    /* Probably need media queries here */
    width: 1600px;
    max-width: 100%;
    height: 750px;
    max-height: 100%;
    position: fixed;
    left: 50%;
    top: 50%;
    /* Use this for centering if unknown width/height */
    transform: translate(-50%, -50%);
    /* If known, negative margins are probably better (less chance of blurry text). */
    /* margin: -200px 0 0 -200px; */

    background: white;
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
}

.blazored-modal-header {
    /*  display: none !important;*/
    padding: 0px !important;
    display: flex;
}

button.blazored-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2bc36;
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

button.blazored-modal-close:hover {
    background-color: #c9a62e;
    transform: scale(1.1);
}

button.blazored-modal-close:focus {
    outline: 2px solid #e2bc36;
    outline-offset: 2px;
}
/*
blog-post p*/

/*END MODAL*/



.posttitle {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    color: #e2bc36;
    top: 67%;
    left: 0;
}



.worldmap {
    display: flow;
    position: relative;
}

    .worldmap svg {
        max-height: 100% !important;
        display: flex;
    }

