/* ---- FONTS ---- */

/* Gotham */

@font-face {
    font-family: "Gotham-Black";
    src: url("../fonts/Gotham/Gotham-Black.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Bold";
    src: url("../fonts/Gotham/Gotham-Bold.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Book";
    src: url("../fonts/Gotham/Gotham-Book.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-ExtraLight";
    src: url("../fonts/Gotham/Gotham-ExtraLight.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Light";
    src: url("../fonts/Gotham/Gotham-Light.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Medium";
    src: url("../fonts/Gotham/Gotham-Medium.otf") format("opentype");
}

@font-face {
    font-family: "GothamNarrow-Bold";
    src: url("../fonts/Gotham/GothamNarrow-Bold.otf") format("opentype");
}

@font-face {
    font-family: "GothamNarrow-Book";
    src: url("../fonts/Gotham/GothamNarrow-Book.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Thin";
    src: url("../fonts/Gotham/Gotham-Thin.otf") format("opentype");
}

@font-face {
    font-family: "Gotham-Ultra";
    src: url("../fonts/Gotham/Gotham-Ultra.otf") format("opentype");
}

/* Bebas Neue */

@font-face {
    font-family: "BebasNeue";
    src: url("../fonts/Bebas-Neue/BebasNeue.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue-Bold";
    src: url("../fonts/Bebas-Neue/BebasNeue-Bold.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue-Book";
    src: url("../fonts/Bebas-Neue/BebasNeue-Book.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue-Light";
    src: url("../fonts/Bebas-Neue/BebasNeue-Light.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue-Regular";
    src: url("../fonts/Bebas-Neue/BebasNeue-Regular.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue-Thin";
    src: url("../fonts/Bebas-Neue/BebasNeue-Thin.otf") format("opentype");
}


/* CITATIONS */

.citation p::before,
.citation-1 p::before,
.citation-2 p::before,
.citation-3 p::before,
.citation-4 p::before,
.citation-5 p::before {
    padding: 0 !important;
    padding-right: 3px !important;
    margin: 0 !important;
    width: 30px;
    transform: rotateZ(180deg) translateY(20px);
    display: inline-block;
}

.citation p::after,
.citation-1 p::after,
.citation-2 p::after,
.citation-3 p::after,
.citation-4 p::after,
.citation-5 p::after {
    padding: 0 !important;
    padding-left: 3px !important;
    margin: 0 !important;
    width: 32px;
    transform: translateY(10px);
    display:inline-block;
}


.citation p::before,
.citation p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation.svg");
}

.citation-1 p::before,
.citation-1 p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation_1-2-3.svg");
}

.citation-2 p::before,
.citation-2 p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation_4-5.svg");
}

.citation-3 p::before,
.citation-3 p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation_6-7.svg");
}

.citation-4 p::before,
.citation-4 p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation_8-9.svg");
}

.citation-5 p::before,
.citation-5 p::after {
    content: url("https://isaure.dgtn.dev/images/citations/citation_10-11.svg");
}

/* SWITCHER */

.el-nav[uk-switcher] {
    margin: 0;
    padding: 0;
    margin-right: 50px;
}

.el-nav[uk-switcher] li {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
}

.el-nav[uk-switcher] li:first-child {
    border-radius: 10px 0 0 0;
}
.el-nav[uk-switcher] li:last-child {
    border-radius: 0 10px 0 0;
}

.small-title{
 	font-size:20px;
}

.uk-switcher .el-title {
    grid-area: titre;
    color : black;
    font-family:montserrat;
    line-height: 50px;
    font-size: 40px;
}

.uk-switcher .el-content {
    grid-area: contenu;
    font-style: italic;
}

.uk-switcher .el-meta {
    grid-area: citation;
}

.uk-switcher div:has(>a.uk-button) {
    grid-area: bouton;
    text-align: center;
}

.uk-switcher picture {
    grid-area: image;
    position: relative;
}

.uk-switcher picture img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.uk-switcher>.el-item.uk-active {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
    grid-template-rows: auto;
    gap: 0;
    row-gap: 50px;
    column-gap: 50px;
    padding: 100px 0 75px 0;
    grid-template-areas: 
        "... citation titre ..."
        "... image titre ..."
        "... image contenu ..."
        "... image bouton ..."
    ;
}

/* Switcher Responsive */

@media screen and (max-width: 1201px) {
    .uk-switcher>.el-item.uk-active {
        grid-template-columns: 1fr 1fr;
        padding: 100px 20px 75px 20px;
        grid-template-areas: 
            "citation titre"
            "image titre"
            "image contenu"
            "image bouton"
        ;
    }
}

@media screen and (max-width: 961px) {
    .uk-switcher>.el-item.uk-active {
        grid-template-columns: 1fr;
        row-gap: 0;
        column-gap: 0;
        padding: 80px 20px 30px 20px;
        grid-template-areas: 
            "citation"
            "titre"
            "image"
            "bouton"
        ;
    }
    .uk-switcher div:has(>a.uk-button) {
        height: 30px;
    }
    .uk-switcher picture img{
        position: relative;
        width: 100%;
        object-fit: cover;
    }
    .uk-switcher .el-content {
        display: none;
    }
}

@media screen and (max-width: 641px) {
    .uk-switcher>.el-item.uk-active {
        grid-template-columns: 1fr;
        padding: 80px 20px 30px 20px;
        grid-template-areas: 
            "citation"
            "titre"
            "image"
            "bouton"
        ;
    }
}

@media screen and (max-width: 361px) {
    .uk-switcher .el-title {
        line-height: initial;
    }
}

/* Fin switcher responsive */



/* ------- COLOR AND BACKGROUND-COLOR -------- */

.text-dark {
    color: #000;
}
.text-light {
    color: #fff;
}

/* HEADER ET FOOTER */

.bg-top, .bg-footer {
    background-color: rgba(230,205,149,1);
}
.bg-top-50, .bg-footer-50 {
    background-color: rgba(230,205,149,0.5);
}

/* SECTION 1 */

.color-one, .color-one h2, .color-one p, .color-one div {
    color : rgba(13, 122, 126, 1) !important;
}
.bg-one {
    background-color: rgba(13, 122, 126, 1);
}
.bg-one-5 {
    background-color: rgba(13, 122, 126, 0.05);
}
.bg-one-10 {
    background-color: rgba(13, 122, 126, 0.1);
}
.bg-one-15 {
    background-color: rgba(13, 122, 126, 0.15);
}
.bg-one-20 {
    background-color: rgba(13, 122, 126, 0.2);
}
.bg-one-25 {
    background-color: rgba(13, 122, 126, 0.25);
}
.bg-one-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 100vw;
    height: 100%;
    background: rgba(13, 122, 126, 0.1);
    background: linear-gradient(90deg,rgba(13, 122, 126, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

/* SECTION 2 */

.color-two, .color-two h2, .color-two p, .color-two div {
    color : rgba(70, 130, 107, 1) !important;
}
.bg-two {
    background-color: rgba(70, 130, 107, 1);
}
.bg-two-5 {
    background-color: rgba(70, 130, 107, 0.05);
}
.bg-two-10 {
    background-color: rgba(70, 130, 107, 0.1);
}
.bg-two-15 {
    background-color: rgba(70, 130, 107, 0.15);
}
.bg-two-20 {
    background-color: rgba(70, 130, 107, 0.2);
}
.bg-two-25 {
    background-color: rgba(70, 130, 107, 0.25);
}
.bg-two-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 100vw;
    height: 100%;
    background: rgba(70, 130, 107, 0.1);
    background: linear-gradient(90deg,rgba(70, 130, 107, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}
.bg-two-forme-1 {
    background-color: rgba(223, 233, 197, 0.5);
    filter: blur(2px);
}
.bg-two-forme-2 {
    background-color: rgba(70, 130, 107, 0.2);
    filter: blur(2px);
}
.bg-two-forme-3 {
    background-color: rgba(219, 216, 164, 0.5);
    filter: blur(2px);
}

/* SECTION 3 */

.color-three, .color-three h2, .color-three p, .color-three div {
    color : rgba(53, 134, 76, 1) !important;
}
.bg-three {
    background-color: rgba(53, 134, 76, 1);
}
.bg-three-5 {
    background-color: rgba(53, 134, 76, 0.05);
}
.bg-three-10 {
    background-color: rgba(53, 134, 76, 0.1);
}
.bg-three-15 {
    background-color: rgba(53, 134, 76, 0.15);
}
.bg-three-20 {
    background-color: rgba(53, 134, 76, 0.2);
}
.bg-three-25 {
    background-color: rgba(53, 134, 76, 0.25);
}
.bg-three-30 {
    background-color: rgba(53, 134, 76, 0.25);
}
.bg-three-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 100vw;
    height: 100%;
    background: rgba(53, 134, 76, 0.1);
    background: linear-gradient(90deg,rgba(53, 134, 76, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

/* SECTION 4 */

.color-four, .color-four h2, .color-four p, .color-four div {
    color : rgba(118, 123, 59, 1) !important;
}
.bg-four {
    background-color: rgba(118, 123, 59, 1);
}
.bg-four-5 {
    background-color: rgba(118, 123, 59, 0.05);
}
.bg-four-10 {
    background-color: rgba(118, 123, 59, 0.1);
}
.bg-four-15 {
    background-color: rgba(118, 123, 59, 0.15);
}
.bg-four-20 {
    background-color: rgba(118, 123, 59, 0.2);
}
.bg-four-25 {
    background-color: rgba(118, 123, 59, 0.25);
}
.bg-four-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 100vw;
    height: 100%;
    background: rgba(118, 123, 59, 0.1);
    background: linear-gradient(90deg,rgba(118, 123, 59, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}
.bg-four-forme-1 {
    background-color: rgba(118, 123, 59, 0.2);
    filter: blur(2px);
}
.bg-four-forme-2 {
    background-color: rgba(70, 130, 107, 0.15);
    filter: blur(2px);
}
.bg-four-forme-3 {
    background-color: rgba(223, 233, 197, 0.5);
    filter: blur(2px);
}

/* SECTION 5 */

.color-five, .color-five h2, .color-five p, .color-five div {
    color : rgba(130, 117, 47, 1) !important;
}
.bg-five {
    background-color: rgba(130, 117, 47, 1);
}
.bg-five-5 {
    background-color: rgba(130, 117, 47, 0.05);
}
.bg-five-10 {
    background-color: rgba(130, 117, 47, 0.1);
}
.bg-five-15 {
    background-color: rgba(130, 117, 47, 0.15);
}
.bg-five-20 {
    background-color: rgba(130, 117, 47, 0.2);
}
.bg-five-25 {
    background-color: rgba(130, 117, 47, 0.25);
}
.bg-five-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -5px);
    width: 100vw;
    height: 100%;
    background: rgba(130, 117, 47, 0.1);
    background: linear-gradient(90deg,rgba(130, 117, 47, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}
.bg-one-gradient,
.bg-two-gradient,
.bg-three-gradient,
.bg-four-gradient,
.bg-five-gradient {
    position: relative;
    z-index: 1;
}


/* titre */

/*div:has(h2.el-title) {
    padding-left: 20px;
}*/

