:root{
    --primary: #c71719;
    --beige: #E0E1D8;
    --dark: #212121;
    --foodark: #0A070B;

    --btn-radius: 30px;
}
body{
    font-family: "Roboto", sans-serif;
}

#header{
    background-color: var(--primary);
    padding: 15px 0;
}
#header .logo{ width: 80px; }
#header .menu{
    position: absolute;
    text-decoration: none;

    right: 15px;
    font-size: 1.9em;
    color: #fff;
    top: 50%;
    margin-top: -20px;
    display: none;
}
#header .nav-holder{
    display: flex;
    justify-content: flex-end;
}
#header .nav-holder ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
#header .nav-holder ul li a{
    display: block;
    padding: 10px 15px;
    color: #fff;

    font-family: "Roboto";
    font-weight: 300;
    text-decoration: none;

    position: relative;
}
#header .nav-holder ul li.active a{ font-weight: 600; }
#header .nav-holder ul li a:after{
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -25%;

    width: 50%;
    height: 2px;

    bottom: 4px;
    background-color: #fff;

    transition: all cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
    transform: scaleX(0);
}
#header .nav-holder ul li:hover a:after,
#header .nav-holder ul li.active a:after{
    transform: scaleX(1);
}

/**
* Page
* d'accueil
*/
#slide{
    max-height: 500px;
    height: 500px;
    background-color: var(--dark);
}
#slide .owl-stage-outer,
#slide .owl-stage,
#slide .owl-item
{ height: 100% !important; }
#slide .owl-dots{
    position: absolute;
    bottom: 15px;
    left: 0;

    display: flex;
    column-gap: 5px;

    display: flex;
    justify-content: center;
    width: 100%;
}
#slide .owl-dots button{
    width: 10px;
    height: 10px;

    background-color: #fff;
    border-radius: 15px;
}
#slide .owl-dots button.active{ width: 30px; background-color: var(--primary); }
#slide .item{ position: relative; }
#slide .item,
#slide .item .image{
    width: 100%;
    height: 100%;

    display: flex;
    font-family: "IBM Plex Sans";
    color: #fff;
}
#slide .item .image{
    position: absolute;
    top: 0;
    left: 0;

    z-index: 0;
}
#slide .item .image .nonviable{ width: 40%; }
#slide .item .image .viable{ width: 60%; position: relative; }
#slide .item .image .viable img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
#slide .item .image .viable:before,
#slide .item .image .viable:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    width: 100%;
    height: 100%;
}
#slide .item .image .viable:before{
    background: rgba(71, 74, 255, 0);
    background: -webkit-radial-gradient(circle, rgba(71, 74, 255, 0) 0%, #212121 100%);
    background: radial-gradient(circle, rgba(71, 74, 255, 0) 0%, #212121 100%);
}
#slide .item .image .viable:after{
    background: rgba(71, 74, 255, 0);
    background: -webkit-linear-gradient(269deg, rgba(71, 74, 255, 0) 0%, rgba(33, 33, 33, 0.19) 50%, #212121 100%);
    background: linear-gradient(269deg, rgba(71, 74, 255, 0) 0%, rgba(33, 33, 33, 0.19) 50%, #212121 100%);
}
#slide .item .container{
    position: relative;
    z-index: 3;
    display: flex;
}
#slide .item .container .viable{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#slide .item .container .nonviable{ width: 60%; }
#slide .item .category{
    color: #BFC9C3;
    opacity: 0.6;
}
#slide .item .title{ font-size: 2.8em; }
#slide .item .description{ color: rgba(255, 255, 255, 0.6); }
#slide .item .metadatas{ margin: 15px 0; }
#slide .item .metadatas .meta{ width: 40%; }
#slide .item .metadatas .meta h3{ color: rgba(255, 255, 255, 0.6); font-size: 1.2em; margin-bottom: 5px; }
#slide .item .metadatas .meta p{ color: rgba(255, 255, 255, 0.6); font-size: 0.8em; }
#slide .item .more{
    background-color: var(--primary);
    border-color: var(--primary);

    width: 150px;
    border-radius: var(--btn-radius);
}

/* Aujourd'hui sur DNTV */
.ondntv .section-title{
    text-align: center;
    background-color: #4B4B4B;
    color: #fff;
    padding: 5px 0;

    font-family: "IBM Plex Sans";
    font-weight: 200;
    font-size: 0.9em;
    margin: 0;
}
.ondntv .programs{
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.ondntv .programs .program{
    flex: 0 0 250px;
    height: 150px;
    background-color: #F3EFE7;
}
.ondntv .programs .program:nth-child(even){ background-color: #E8E4DC; }
.ondntv .programs .program.active{ background-color: #F41B3B; }
.htimeline .program{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "IBM Plex Sans";
}
.htimeline .program .hour{
    text-align: right;
    font-size: 2.5em;
    font-weight: 700;

    color: rgba(0, 0, 0, 0.3);
    padding: 0 15px;
}
.htimeline .program.active .hour{ color: #fff; }
.htimeline .program .infos{
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.htimeline .program .details{ padding: 0 0 10px; }
.htimeline .program .details p,
.htimeline .program .details h3{
    margin: 0;
    color: #8E8989;
    font-weight: 400;
}
.htimeline .program.active .details p,
.htimeline .program.active .details h3{ color: #fff; }
.htimeline .program .details p{ font-size: 0.75em; }
.htimeline .program .details h3{ font-size: 1.3em; font-weight: 400;  }
.htimeline .program .iconic{
    font-size: 1.8em;
    text-decoration: none;
    color: #8E8989;
}
.htimeline .program.active .iconic{ color: #fff; }

/* Nos programmes */
.broadcasts{ padding: 45px 0; }
.broadcasts .section-title{
    font-family: "Montserrat", sans-serif;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary);

    font-weight: 700;
    font-size: 2.0em;
}
.broadcasts .program{
    width: 100%;
    padding: 15px;
    position: relative;

    cursor: pointer;
}
.broadcasts .programs .owl-item:nth-child(even){ transform: translateY(30px); }
.broadcasts .owl-carousel .owl-stage-outer{ height: 480px }
.broadcasts .program:before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    border: 3px solid;
    border-color: transparent;
    border-radius: 20px;

}
.broadcasts .program:hover:before{ border-color: var(--primary); }
.broadcasts .program img{
    display: block;
    margin: 0 auto;

    width: 100%;
    position: relative;
    z-index: 2;
}
.broadcasts .controls{
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 15px;
}
.broadcasts .controls a{
    display: flex;
    width: 30px;
    height: 30px;

    background-color: var(--primary);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 100%;
}
.broadcasts .controls a:hover{
    background-color: var(--beige);
    color: var(--primary);
}

/* Blockbusters */
.blockbusters{
    position: relative;
    background-color: var(--primary);
}
.blockbusters .back{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}
.blockbusters .back img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.blockbusters .inner{
    position: relative;
    z-index: 3;

    background: #da0000;
    background: -webkit-linear-gradient(0deg, #da0000 0%, rgba(87, 18, 26, 0.48) 100%);
    background: linear-gradient(0deg, #da0000 0%, rgba(87, 18, 26, 0.48) 100%);
    padding: 45px 0;
}
.blockbusters .infos{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.blockbusters .infos .bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.blockbusters .infos h3{
    color: #fff;
    font-size: 2.0em;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    width: 350px;
    margin: 0;
}
.blockbusters .infos a{
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.0em;
}
.blockbusters .vignettes{
    display: flex;
    column-gap: 30px;
    margin-top: 30px;
}
.blockbusters .vignette{
    width: calc(100% / 3);
    border: 4px solid transparent;
    border-radius: 8px;

    overflow: hidden;
    cursor: pointer;
    /* background-color: #fff; */

    position: relative;
}

.blockbusters .vignette a{
    display: flex;
    color: #fff;
    text-decoration: none;
}
/* .blockbusters .vignette a:hover{ color: var(--primary); } */
.blockbusters .vignette:hover{ border-color: #fff; }
.blockbusters .vignette img{
    width: 100%;
    height: 250px;
    border-radius: 6px;
}
.blockbusters .vignette .details{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.4);
}
.blockbusters .vignette .details h3{ margin: 0; }

/* Live */
.live .top{
    display: flex;
    padding: 45px 130px;
}
.live .top > div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.live .top .left{
    row-gap: 30px;
    padding-right: 30px;
}
.live .top .left img{
    width: 200px;
}
.live .top .left h3{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2.3em;
}
.live .top .right img{ width: 100%; }
.live .top .left a{
    width: 300px;
    background-color: var(--primary);
    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-weight: 200;

    border-radius: 0px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.live .bottom{
    display: flex;
    padding-bottom: 45px;
}
.live .bottom > div{
    width: calc(100% / 3);
    font-family: "DM Sans", sans-serif;
    text-align: center;
}
.live .bottom h3{
    color: var(--primary);
    font-weight: bold;
    font-size: 3.5em;
}
.live .bottom p{
    color: #8CA2C0;
    font-size: 1.2em;
}

/* Témoiginages */
.testimony{
    background-color: rgb(217, 217, 217, 0.3);
    padding: 45px 0;
}
.testimony .item{
    display: flex;
    column-gap: 15px;
}
.testimony .item .image{
    width: 50px;
    height: 50px;

    background-color: var(--primary);
    border-radius: 50%;
}
.testimony .item .texts{
    font-family: "DM Sans", sans-serif;
    width: calc(100% - 65px);
    row-gap: 0px;
    display: flex;
    flex-direction: column;
}
.testimony .item .texts .citation,
.testimony .item .texts .author,
.testimony .item .texts .stars{ margin: 0 }
.testimony .item .texts .citation{
    font-size: 1.0em;
    font-weight: 300;
    margin-bottom: 5px;
}
.testimony .item .texts .author{
    font-size: 0.85em;
    color: #486284;
}
.testimony .item .texts .stars{ color: #486284; }

/* Footer */
footer{
    margin-top: 100px;
    position: relative;
    color: #fff;
}
footer .prefooter{
    background-color: var(--primary);
    width: 80%;

    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -40%;
    border-radius: 10px;

    padding: 25px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .prefooter .indications h3,
footer .prefooter .indications p{ margin: 0; }
footer .prefooter .indications h3{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}
footer .prefooter .indications p{
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
}
footer .prefooter a{
    background-color: var(--foodark);
    color: #fff;
    border-radius: 0;

    font-family: "Inter", sans-serif;
}
footer .footer{
    background-color: var(--foodark);
    padding-top: 100px;
    padding-bottom: 30px;
}
.footer .container{ max-width: 80%; position: relative; }
.footer .left img{ width: 120px; }
.footer .left p{
    font-family: "Poppins", sans-serif;
    font-size: 0.8em;
    color: #606060;
    margin-top: 15px;

    text-align: justify;
}
.footer .bloc > h3{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 1.0em;
}
.footer .bloc > ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .bloc ul li a{
    text-decoration: none;
    font-size: 0.9em;
    color: rgba(225, 225, 225, 0.5);
}
.footer .bloc ul li:hover a{ color: rgba(225, 225, 225, 0.9); }
.footer .bloc.socials h3{ text-align: right; }
.footer .bloc.socials > ul{
    display: flex;
    column-gap: 10px;
    justify-content: flex-end;
}
.footer .bloc.socials ul li a{ font-size: 1.4em; display: block; }
footer .subfooter{ margin-top: 15px; }
footer .subfooter > p{
    font-family: "Poppins", sans-serif;
    display: block;
    margin: 0;
    font-size: 0.8em;
    color: #606060;
}
footer .madeby{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 0.8em;
    text-align: right;

    position: absolute;
    right: 15px;
    bottom: 10px;
    opacity: 0.5;

    transition: all 0.3s;
}
footer .madeby:hover{ opacity: 1; }
footer .madeby a{
    color: #fff;
    text-decoration: none;
}
footer .madeby p{ margin: 0 0; }
footer .goup{
    width: 32px;
    height: 32px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #fff;
    color: #000;
    border-radius: 50%;

    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -16px;
    text-decoration: none;
    font-size: 1.2em;
}
footer .goup:hover{
    background-color: var(--primary);
    color: #fff;
}
footer .goup span{
    display: inline-block;
    margin-left: 0px;
}


.hero img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.chaine .hero img{ height: 400px; }

/**
* Notre
* chaine
*/
.blocs, .team{
    padding: 45px 0;
    font-family: "Montserrat", sans-serif;
}
.blocs .container,
.team .container
{ max-width: 1024px; }
.blocs .title,
.team .title{
    width: 60%;
    font-size: 2.3em;
    margin-bottom: 30px;
}
.blocs .row{ row-gap: 15px; }
.bloc h3{
    font-weight: 800;
    font-size: 1.3em;
}
.team .member{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team .member .image{
    width: 70%;
    height: auto;
    aspect-ratio: 1/1;

    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}
.team .member .image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.team .member .name,
.team .member .poste{
    font-family: "Montserrat", sans-serif;
    text-align: center;
}
.team .member .name{
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 0;
}

/**
* Nos
* Programmes
*/
.section.padded{ padding: 30px 0; }
.page-title{
    display: block;
    text-align: center;

    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}
.programmes .categories{
    display: flex;
    list-style: none;

    justify-content: center;
    padding: 0;
    margin: 30px 0 0;
    column-gap: 15px;
}
.programmes .categories li a{
    display: block;
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 24px;

    font-family: "Montserrat", sans-serif;
    font-size: 0.9em;
    font-weight: 400;

    transition: all ease-in 0.2s;
}
.programmes .categories li:hover a{ background-color: rgba(0, 0, 0, 0.1); }
.programmes .categories li.active a{
    background-color: var(--primary);
    color: #fff;
}
.programmes .list{
    display: flex;
    column-gap: 15px;
    row-gap: 15px;
    margin-bottom: 30px;

    margin-top: 30px;
    flex-wrap: wrap;
}
.programmes .list .item{
    width: calc(calc(100% / 3) - 15px);
    height: 240px;
    position: relative;
}
.programmes .list .item img,
.programme .list .item img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.programmes .list .item .details,
.programme .list .item .details{
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 15px;
    background: #131313;
    background: -webkit-linear-gradient(0deg, #131313 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #131313 0%, rgba(255, 255, 255, 0) 100%);

    transition: all ease-in 0.1s;
}
.programmes .list .item:hover .details,
.programme .list .item:hover .details
{ background: rgba(199, 23, 25, 0.8); }
.programmes .item .details .category,
.programme .item .details .category,
.programmes .item .details .title,
.programme .item .details .title,
.programmes .item .details .metadata,
.programme .item .details .metadata{
    padding: 0;
    margin: 0;

    color: #fff;
    font-family: "Montserrat", sans-serif;
}
.programmes .item .details .category,
.programme .item .details .category{
    font-weight: 300;
    font-size: 0.85em;
}
.programmes .item .details .title,
.programme .item .details .title{ font-weight: 600; }
.programmes .pages{
    display: flex;
    justify-content: flex-end;
}


/**
* Détails
* Programme
*/
.programme .page .container{ max-width: 1024px; }
.programme .hero img{
    height: 350px;
    object-fit: cover;
    object-position: center;
}
.programme .infos{ display: flex; }
.programme .infos .details{ width: 70%; }
.programme .infos .details h3{
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 2.2em;
    margin: 15px 0 0;
}
.programme .infos .actions{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
}
.programme .infos .actions a{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 100px;
    text-decoration: none;
    font-family: serif;
    font-family: "Montserrat", sans-serif;
    color: var(--foodark);
}
.programme .infos .actions a:hover{ color: rgb(13, 110, 253); }
.programme .infos .actions a span{ font-size: 1.3em; }
.programme .infos .actions a > :not(.icon){ font-size: 0.85em; }
.programme .description{
    margin: 30px 0 0;
    font-family: "Poppins", sans-serif;
}
.programme .description h3{
    font-size: 1.3em;
    font-weight: 500;
}
.programme .description p{ font-size: 0.9em; }
.programme .related{
    margin-top: 60px;
    font-family: "Montserrat", sans-serif;
}
.programme .related .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.programme .related .head h3{
    font-size: 1.2em;
    color: var(--primary);
    font-weight: 500;
}
.programme .related .head a{
    font-size: 0.9em;
    text-decoration: none;
    color: var(--foodark);
}
.programme .related .head a:hover{ color: var(--primary); }
.programme .related .head a span{ color: var(--primary); }
.programme .related .list{
    display: flex;
    margin-top: 15px;
}
.programme .list{ column-gap: 15px; }
.programme .list .item{
    position: relative;
    width: calc(calc(100% / 5) - 7px);
    height: 250px;
}
.programme .item .details .title{ font-size: 1.3em; }

/**
* Direct
*/
.live .watch{
    margin-top: 60px;
    width: 100%;
    height: 600px;

    position: relative;
}

/**
* Contacts
*/
.contacts .informations{ padding: 45px 0; }
.contacts .informations .container{ max-width: 1024px }
.contacts .informations .left{
    display: flex;
    flex-direction: column;
    justify-content: center;

    row-gap: 20px;
}
.contacts .informations .left h3{
    font-family: "Poppins", sans-serif;
    font-size: 3.0em;
    font-weight: bold;
    text-transform: uppercase;
    color: #486284;

    margin: 0;
}
.contacts .informations .left .texts{
    display: flex;
    flex-direction: column;
}
.contacts .informations .left .texts p{
    margin: 0;
    display: flex;
    column-gap: 15px;

    align-items: center;
    color: #7B95B7;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2em;
}
.contacts .informations .left ul{
    list-style: none;
    margin: 0;
    padding: 0;

    font-family: "Montserrat", sans-serif;
    color: #7B95B7;

    display: flex;
    flex-direction: column;
}
.contacts .informations .left ul li{
    font-size: 1.2em;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.contacts .informations .left ul li:before{
    content: "\eb53";
    font-family: "icomoon";
}
.contacts .informations .left .btn{
    width: 140px;
    border-radius: var(--btn-radius);
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}
.contacts .informations .right img{
    width: 100%;
    border-radius: 32px;
}

/**
* Menu
* Responsive
*/
#mobilepanel{
    position: fixed;
    width: 100%;
    height: 100%;

    background-color: var(--primary);
    z-index: 2000;

    top: 0px;

    transform: translateX(-100%);
    transition: all cubic-bezier(0.16, 1, 0.3, 1) .6s;
}
.onmobile #mobilepanel{
    transform: translateX(0%);
}
#mobilepanel .flexible > h3{
    font-family: 'Poppins', sans-serif;
    padding: 0 30px;
    margin-top: 30px;
    color: #fff;
    font-size: 1.9em;
}
#mobilepanel .flexible{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
#mobilepanel .mainmenu{
    list-style: none;
    margin: 15px 0;
    padding: 0;
    text-align: left;
}
#mobilepanel .mainmenu > li{
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    margin-left: 0;
}
#mobilepanel .mainmenu li.withdrop:after{
    content: "\e91d";
    color: #fff;
    position: absolute;
    right: 20px;
    top: 8px;
    font-family: 'icomoon';
    font-size: 1.5em;
}
#mobilepanel .mainmenu li.withdrop.expanded:after{ content: "\e91c"; }
#mobilepanel .close{
    position: absolute;
    top: 22px;
    right: 15px;

    color: #fff;
    font-size: 1.8em;
    text-decoration: none;
}
#mobilepanel .mainmenu > li:first-child{ border-top: 1px solid rgba(255, 255, 255, 0.3); }
#mobilepanel .mainmenu > li ul{ display: none; }
#mobilepanel .mainmenu > li a{
    display: block;
    padding: 6px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 1.8em;

    font-family: 'Poppins', sans-serif;
}
#mobilepanel .mainmenu > li.active > a{ color: var(--secondary); }
#mobilepanel .mainmenu > li:hover:not(.calltoaction) > a{ font-weight: normal; }
#mobilepanel .mainmenu > li.calltoaction:hover > a{ background-color: var(--primary); }
#mobilepanel .mainmenu .submenu{
    position: relative;
    margin-top: 0;
}
#mobilepanel .mainmenu li.withdrop.expanded .submenu{ padding-bottom: 7px; }
#mobilepanel .mainmenu .submenu ul{
    padding: 0;
    margin: 0;
}
#mobilepanel .mainmenu .submenu li{ display: block; }
#mobilepanel .mainmenu .submenu li a{
    font-family: "Manrope";
    font-size: 0.8em;
}
#mobilepanel .logo{
    position: absolute;
    bottom: 30px;
    left: 30px;
}
#mobilepanel .logo img{ width: 100px; }
#mobilepanel ul.socials{
    list-style: none;
    padding: 0 0 0 30px;
    margin: 15px 0 0 0;
}
#mobilepanel ul.socials li{
    display: inline-block;
    font-family: 'Roboto Light';
    margin-right: 25px;
}
#mobilepanel ul.socials li a{
    color: #fff;
    text-decoration: none;
}
#mobilepanel ul.socials li a{ font-size: 1.5em; }
#mobilepanel ul.socials li:hover a{ color: rgba(255, 255, 255, 0.7); }

#mobilepanel .mainmenu .withdrop.expanded ul{
    display: block;
    list-style: none;
}
#mobilepanel .madeby{
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 0.8em;
    text-align: right;

    position: absolute;
    right: 30px;
    bottom: 35px;
    opacity: 1;

    transition: all 0.3s;
}
#mobilepanel .madeby:hover{ opacity: 1; }
#mobilepanel .madeby a{
    color: #fff;
    text-decoration: none;
}
#mobilepanel .madeby p{ margin: 0 0; }


/**
* Bootstrap
* Modification
*/
.page-link{ color: var(--primary); }
.page-link.active, .active > .page-link{
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover{
    background-color: rgba(199, 23, 25, 0.8);
    border-color: var(--primary);
}
