body,
html {
    margin: 0;
    padding: 0;
}
.chargement {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--colorMain);
    top: 0;
    left: 0;
    z-index: 999999;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    display: flex;
}
.chargement img {
    width: 9%;
    height: auto;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .chargement img {
        width: 23%;
    }
}
@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
body {
    font-family: Montserrat, sans-serif;
    width: 100%;
}
.light {
    font-weight: 300 !important;
}
.regular {
    font-weight: 400 !important;
}
.medium {
    font-weight: 500 !important;
}
.semi-bold {
    font-weight: 600 !important;
}
.bold {
    font-weight: 700 !important;
}
:root {
    --colorMain: #10434b;
    --colorSecondary: #e9b966;
}
.--primary {
    color: var(--colorMain);
}
.--secondary {
    color: var(--colorSecondary);
}
.--separator-sm {
    width: 80px;
}
.--separator-md {
    width: 160px;
}
.--separator-lg {
    width: 240px;
}
.--primary-separator {
    background-repeat: repeat-x;
    background-image: url(assets/img/wave.png);
    background-size: 20px 9px;
    display: inline-block;
    height: 20px;
    margin-top: 7px;
}
.--secondary-separator {
    background-repeat: repeat-x;
    background-image: url(assets/img/wave2.png);
    background-size: 20px 9px;
    display: inline-block;
    height: 20px;
    margin-top: 7px;
}
.--vertical-primary-separator {
    background-repeat: repeat-y;
    background-image: url(assets/img/wave3.png);
    background-size: 9px 20px;
    display: inline-block;
    height: 80px;
    width: 20px;
    margin: auto 0;
}
.--vertical-secondary-separator {
    background-repeat: repeat-y;
    background-image: url(assets/img/wave4.png);
    background-size: 9px 20px;
    display: inline-block;
    height: 80px;
    width: 20px;
    margin: auto 0;
    margin-top: 66px;
}
.nav-link {
    color: var(--colorMain) !important;
    transition: 0.3s;
}
.nav-link:hover {
    color: var(--colorSecondary) !important;
}
.nav-item:hover {
    background-repeat: repeat-x;
    background-image: url(assets/img/wave.png);
    background-position: 0 1.9em;
    background-size: 20px 9px;
}
.section-title {
    min-height: 15vh;
}
.flex-text-container {
    display: flex;
    margin: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.custom-chips-primary {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 40px;
    background-color: var(--colorMain);
    color: #fff;
}
.custom-chips-secondary {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 40px;
    background-color: var(--colorSecondary);
    color: #fff;
    width: 90px;
    margin: auto;
}
ul {
    padding-left: 15px;
}
#social-nav a {
    margin-left: 5px;
}
.icon-phone {
    background-image: url(assets/img/icon/phone_green.svg);
    background-size: 20px 20px;
}
.icon-phone:hover {
    background-image: url(assets/img/icon/phone_yellow.svg);
    background-size: 20px 20px;
}
.icon-phone-alt {
    background-image: url(assets/img/icon/phone_yellow.svg);
    background-size: 20px 20px;
}
.icon-phone-alt:hover {
    background-image: url(assets/img/icon/phone_green.svg);
    background-size: 20px 20px;
}
.icon-phone-white {
    background-image: url(assets/img/icon/phone_white.svg);
    background-size: 20px 20px;
}
.icon-fb {
    background-image: url(assets/img/icon/facebook_green.svg);
    background-size: 20px 20px;
    transition: 0.6s;
}
.icon-fb:hover {
    background-image: url(assets/img/icon/facebook_yellow.svg);
    background-size: 20px 20px;
    transition: 0.6s;
}
.icon-fb-white {
    background-image: url(assets/img/icon/facebook_white.svg);
    background-size: 26px 26px;
}
.icon-instagram {
    background-image: url(assets/img/icon/instagram_green.svg);
    background-size: 20px 20px;
}
.icon-instagram:hover {
    background-image: url(assets/img/icon/instagram_yellow.svg);
    background-size: 20px 20px;
}
.icon-instagram-white {
    background-image: url(assets/img/icon/instagram_white.svg);
    background-size: 26px 26px;
}
.icon-tripadvisor {
    background-image: url(assets/img/icon/tripadvisor_green.svg);
    background-size: 20px 20px;
}
.icon-tripadvisor:hover {
    background-image: url(assets/img/icon/tripadvisor_yellow.svg);
    background-size: 20px 20px;
}
.icon-tripadvisor-white {
    background-image: url(assets/img/icon/tripadvisor_white.svg);
    background-size: 26px 26px;
}
.icon-man-white {
    background-image: url(assets/img/icon/man.svg);
    background-size: 16px 16px;
    margin-right: 10px;
    margin-left: 10px;
}
.icon-euro {
    background-image: url(assets/img/icon/euro.svg);
    background-size: 16px 16px;
    margin-left: 2px;
}
.icon-arrow-left {
    background-image: url(assets/img/icon/arrow_left.svg);
    background-size: 20px 20px;
}
.icon-arrow-right {
    background-image: url(assets/img/icon/arrow_right.svg);
    background-size: 20px 20px;
}
.icon-cart {
    background-image: url(assets/img/icon/panier.svg);
    background-size: 24px 24px;
    margin-right: 5px;
}
.icon-cart-yellow {
    background-image: url(assets/img/icon/panier_yellow.svg);
    background-size: 24px 24px;
}
.icon-mail-yellow {
    background-image: url(assets/img/icon/mail_yellow.svg);
    background-size: 16px 16px;
    margin-right: 5px;
    padding-right: 25px;
    background-repeat: no-repeat;
}
.icon-clock-yellow {
    background-image: url(assets/img/icon/clock_yellow.svg);
    background-size: 16px 16px;
    margin-right: 5px;
    padding-right: 25px;
    background-repeat: no-repeat;
}
.icon-position-yellow {
    background-image: url(assets/img/icon/position_yellow.svg);
    background-size: 16px 16px;
    margin-right: 5px;
    padding-right: 25px;
    background-repeat: no-repeat;
}
.icon-phone-yellow {
    background-image: url(assets/img/icon/phone_yellow.svg);
    background-size: 16px 16px;
    margin-right: 5px;
    padding-right: 25px;
    background-repeat: no-repeat;
}
.anchor {
    display: block;
    height: 200px;
    margin-top: -200px;
    visibility: hidden;
}
.t-card {
    -webkit-box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.13);
    transition: 0.3s;
    min-height: 120px;
    position: relative;
}
.t-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.17);
}
.t-container {
    display: flex;
    flex-direction: column;
    align-content: space-around;
    align-items: center;
    height: 100%;
}
.t-card-img {
    width: 100%;
    height: auto;
}
.t-card-ingredient-list {
    columns: 2;
    -moz-columns: 2;
    -webkit-columns: 2;
    list-style-type: none;
    min-height: 120px;
}
ul.t-card-ingredient-list > li::before {
    content: "● ";
    color: var(--colorSecondary);
}
@media screen and (max-width: 768px) {
    ul.t-card-ingredient-list > li::before {
        font-size: 0.7em;
    }
}
ul.t-card-products-list {
    display: inline-table;
    list-style: none;
    width: 100%;
    height: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
}
ul.t-card-products-list > li {
    display: inline-block;
    margin-right: 40px;
    padding-left: 1em;
    text-indent: -0.7em;
}
ul.t-card-products-list > li::before {
    content: "● ";
    color: var(--colorSecondary);
}
@media screen and (max-width: 768px) {
    ul.t-card-products-list > li::before {
        font-size: 0.7em;
    }
}
.t-chips {
    display: inline-block;
    padding: 2px 12px;
    height: 40px;
    font-size: 1em;
    line-height: 30px;
    border-radius: 25px;
    background-color: var(--colorMain);
    color: #fff;
}
.t-card-footer {
    position: absolute;
    bottom: -26px;
    color: #fff;
}
#guru {
    position: absolute;
    top: 69vh;
    right: 3%;
}
#guru-2 {
    position: absolute;
    top: 69vh;
    right: 3%;
}
.guru {
    height: 100%;
    width: 250px;
}
@media screen and (max-width: 768px) {
    #guru {
        display: flex;
        justify-content: end;
        width: 100%;
        top: 100%;
    }
    .guru {
        width: 175px;
    margin-top: 9px;
    }
    #guru-2 {
        display: flex;
        justify-content: end;
        width: 100%;
        top: 100%;
    }
}
.navbar {
    padding: 0;
    height: 135px;
}
#navbar .custom-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.navbar-nav {
    background-color: #fff;
}
.intro-img:hover {
    width: 100px;
    height: 100px;
}
#navbar-items-list {
    height: 135px;
    z-index: 100;
}
.wave-effect {
    background-image: url(assets/img/carousel/wave_carousel.png);
    background-repeat: repeat-x;
    background-size: 100% 65px;
    height: 65px;
    position: absolute;
}
#top-wave-effect {
    margin-top: 120px;
}
#bottom-wave-effet {
    margin-top: -45px;
}
@media screen and (max-width: 768px) {
    .wave-effect {
        background-image: url(assets/img/carousel/wave_mobile.png);
    }
    #bottom-wave-effet {
        margin-top: -20px;
    }
    #navbar-items-list {
        height: 100px;
        z-index: 100;
    }
    #top-wave-effect {
        margin-top: 95px;
    }
    #mobile-header img {
        margin-top: 30px;
    }
}
#mobile-header {
    position: absolute;
    top: 0;
    width: 100%;
}
#image-intro {
    margin-top: 135px;
}

#image-intro .img-container {
    width: 100%;
    height: 87vh;
    background-size: cover;
    background-position: center;
    background-image: url(assets/img/carousel/lasagnes.jpg);
}

#image-intro .img-container-2 {
    width: 100%;
    height: 87vh;
    background-size: cover;
    background-position: center;
    background-image: url(assets/img/carousel/lasagnes-2.jpg);
}
#image-intro .text-container {
    padding: 30px;
    color: #fff;
    background-color: #10434b80;
    margin-left: 3rem !important;
}
#image-intro .intro-text {
    border-left: 2px solid #fff;
    padding-left: 15px;
    max-width: 55vw;
}
@media screen and (max-width: 768px) {
    #image-intro .text-container {
        padding: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        background-color: #10434ba6;
        margin-left: 0 !important;
    }
    #image-intro .intro-text {
        text-align: center;
        border-left: 0;
        padding-left: 0;
        max-width: 100vw;
        margin: auto;
        padding-top: 51%;
    }
    #image-intro .intro-text h3 {
        font-size: 1.1em !important;
    }
}
#image-intro .underline {
    width: 30%;
    border-bottom: #fff 3px solid;
    height: 5px;
    margin: 25px auto;
}
#delivery-container {
    min-height: 20vh;
}
#delivery {
    width: 85%;
    margin: auto;
    min-height: 20vh;
    hyphens: none;
}
#delivery .custom-icon {
    width: 20px;
    height: 20px;
}
.mapouter {
    margin: auto;
    width: 35vw;
}
.gmap_canvas iframe {
    height: 48vh;
    width: 80%;
    margin: auto;
}
@media screen and (max-width: 991px) {
    .mapouter {
        margin-top: 1em;
        width: 70vw;
    }
}
#la-carte {
    width: 90%;
    margin: auto;
}
#la-carte > .row > .col-6 {
    padding: 0;
}
#la-carte > .row > .col-6:first-of-type {
    padding-left: 15px;
}
#la-carte > .row > .col-6:last-of-type {
    padding-right: 15px;
}
#la-carte .btn-phone {
    position: absolute;
    right: 0;
    height: 55px;
    width: 75px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.little {
    width: 56px;
    height: 26px;
    padding: 0;
    text-indent: 0;
    float: right;
}
#la-carte .btn-phone .custom-icon {
    width: 30px;
    height: 21px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 15px;
}
#la-carte #products .t-card {
    max-width: 400px;
    border-bottom: 30px var(--colorMain) solid;
    margin: 10px 20px 10px 20px;
}
#la-carte #desserts .t-card {
    max-width: 400px;
    margin: 10px 20px 10px 20px;
}
#la-carte .custom-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}
#la-carte .chips-container .custom-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}
#la-carte .chips-container {
    display: flex;
}
.text-gr {
    text-transform: uppercase;
    font-size: 10px;
}
.border-green {
    border-bottom: 30px var(--colorMain) solid;
}
.space-txt-dessert {
    margin-top: 35px;
    margin-bottom: 5px;
}

.space-txt-sup {
    margin-top: 75px;
    margin-bottom: 5px;
}

.space-txt-lasagne{
    margin-top: 35px;
    margin-bottom: 35px;
  }

#formules {
    min-height: 500px;
    background: var(--colorMain);
    -webkit-box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
    box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
}
#formules ul > li {
    display: block;
    text-indent: -1em;
}
#formules ul > li:not(.no-list-style)::before {
    content: "● ";
    color: var(--colorSecondary);
}
@media screen and (max-width: 768px) {
    #formules ul > li:not(.no-list-style)::before {
        font-size: 0.7em;
    }
}
#formules .custom-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}
#custom-ul > li {
    width: 160px;
    margin: auto auto 15px auto;
    text-indent: -3em !important;
}
#ldm {
    background-color: var(--colorMain);
    -webkit-box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
    box-shadow: 0 0 13px 9px rgba(0, 0, 0, 0.23);
    min-height: 540px;
}
#ldm-slider {
    min-height: 400px;
}
#ldm-slider .custom-icon {
    width: 16px;
    height: 16px;
}
#ldm-slider .custom-icon.icon-phone-white {
    width: 20px;
    height: 20px;
}
#ldm-slider .custom-icon.icon-phone-white {
    width: 20px;
    height: 20px;
}
#ldm-slider .custom-icon.icon-cart-yellow {
    width: 24px;
    height: 24px;
    display: inline-block;
}
#ldm-slider .custom-chips-secondary {
    width: 145px;
    margin: 0;
}
#ldm-slider .special {
    width: 70px;
}
#ldm-slider .carousel-inner {
    min-height: 340px;
}
@media screen and (max-width: 995px) {
    #ldm-slider .fix-width {
        width: 570px;
    }
    #ldm-slider .carousel-inner {
        min-height: 570px;
    }
}
@media screen and (max-width: 450px) {
    #ldm-slider .carousel-inner {
        min-height: 625px;
    }
}
@media screen and (max-width: 300px) {
    #ldm-slider .carousel-inner {
        min-height: 655px;
    }
}
@media screen and (max-width: 768px) {
    #ldm-slider .fix-width {
        width: auto;
    }
}
#ldm-slider .carousel-controllers {
    margin-top: 15px;
    position: absolute;
    right: 15%;
}
#ldm-slider .carousel-controllers .custom-icon,
#ldm-slider .carousel-controllers-mobile .custom-icon {
    width: 20px;
    height: 20px;
}
#ldm-slider .carousel-controllers a {
    transition: 0.3s;
    opacity: 0.5;
}
#ldm-slider .carousel-controllers a:hover {
    opacity: 1;
}
#ldm-slider .carousel-indicators li {
    height: 10px !important;
    border-radius: 100% !important;
    max-width: 10px !important;
    background-color: #fff !important;
}
#ldm-slider .carousel-indicators .active {
    background-color: var(--colorSecondary) !important;
}
#ldm-slider ul {
    list-style: none;
    text-align: left;
}
#ldm-slider ul > li:not(.no-list-style)::before {
    content: "● ";
    color: var(--colorSecondary);
}
@media screen and (max-width: 768px) {
    #ldm-slider ul > li:not(.no-list-style)::before {
        font-size: 0.7em;
    }
}
@media screen and (max-width: 992px) {
    #ldm-slider img {
        width: 187px;
        height: 187px;
    }
}
.img-round {
    border-radius: 50%;
    border-style: solid;
    border-width: 6px;
}
#history-text {
    min-height: 35vh;
}
#history-text h5 {
    margin-bottom: 16px;
}
#history-img {
    height: 25vh;
}
#history-img > img {
    height: 24vh;
    width: auto;
}
#commentary-slide {
    min-height: 270px;
}
#commentary-slide a {
    color: var(--colorMain);
    transition: 0.3s;
}
#commentary-slide a:hover {
    color: var(--colorSecondary);
}
@media screen and (max-width: 768px) {
    #commentary-slide {
        min-height: 280px;
    }
}
#commentary-slide .section-title {
    min-height: auto;
}
.blockquote {
    border-left: 0.25rem solid var(--colorMain) !important;
}
#evenement .custom-chips-secondary {
    height: 30px;
    line-height: 30px;
    width: auto;
    cursor: pointer;
    transition: 0.3s;
}
#evenement .custom-chips-secondary:hover {
    background-color: #e5ad4a;
}
#evenement .t-card {
    width: 88vw;
    margin: auto;
}
.bg-event {
    background-color: var(--colorMain);
    color: #fff;
    width: 100% !important;
}
.event-txt {
    margin-top: 19px;
    hyphens: none;
}
.t-card-badge {
    display: block;
    padding: 0;
    font-size: 30px;
    font-weight: lighter !important;
    line-height: 50px;
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    background-color: var(--colorMain);
    border-radius: 50px;
    position: relative;
    top: -3px;
    height: 50px;
    width: 50px;
    margin: -30px auto auto auto;
    box-shadow: inset 0 0 0 3px #fff;
    border: 1px solid var(--colorMain);
}
#img-fabrication-1 {
    background-image: url(assets/img/chariot.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28%;
}
#img-fabrication-2 {
    background-image: url(assets/img/legume.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}
#img-fabrication-3 {
    background-image: url(assets/img/box.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}
#img-fabrication-4 {
    background-image: url(assets/img/micro-onde.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}
#img-fabrication-5 {
    background-image: url(assets/img/bike.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
}
@media screen and (max-width: 768px) {
    #img-fabrication-1 {
        background-size: 17%;
    }
    #img-fabrication-2 {
        background-size: 23%;
    }
    #img-fabrication-3 {
        background-size: 23%;
    }
    #img-fabrication-4 {
        background-size: 27%;
    }
    #img-fabrication-5 {
        background-size: 34%;
    }
}
#offres {
    -webkit-box-shadow: 0 0 9px 8px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0 0 9px 8px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 9px 8px rgba(0, 0, 0, 0.13);
}

#offres .img-container-2 {
    width: 100%;
    height: 25vh;
    background-size: cover;
    background-position: center;
    background-image: url(assets/img/carousel/lasagnes.jpg);
}

#offres .img-container {
    width: 100%;
    height: 25vh;
    background-size: cover;
    background-position: center;
    background-image: url(assets/img/carousel/lasagnes-2.jpg);
}
#offres .img-filter {
    position: absolute;
    width: 100%;
    height: 25vh;
    background-color: var(--colorMain);
    opacity: 0.5;
}
#offres .text-container {
    z-index: 5;
    color: #fff;
}
#offres .intro-text {
    padding: 30px;
}
#footer {
    font-size: 0.8em;
    color: var(--colorMain);
}
#footer p {
    margin-bottom: 12px;
    line-height: 15px;
}
#footer p > i {
    color: var(--colorSecondary);
    padding-right: 5px;
}
#footer ul {
    min-width: 260px;
    max-width: 350px;
    margin: auto;
    list-style: none;
}
#footer a {
    color: var(--colorMain);
    transition: 0.3s;
}
#footer .custom-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
}
#footer a:hover {
    color: var(--colorSecondary);
}
#footer #social-nav a {
    display: inline-block;
}
#footer #social-nav a > div {
    width: 20px;
    height: 20px;
}
#end-footer {
    position: relative;
    bottom: 0;
    left: 0;
    background-color: var(--colorMain);
    font-size: 0.7em;
}
#end-footer p {
    margin: 0;
}
#end-footer a {
    color: #fff;
    transition: 0.3s;
}
#end-footer a:hover {
    color: var(--colorSecondary);
}
.font-12 {
    font-size: 12px;
}
@media screen and (max-width: 992px) {
    #end-footer {
        padding-bottom: 55px;
    }
}
#cookie-msg {
    position: fixed;
    bottom: 0;
    background-color: var(--colorMain);
    color: #fff;
    z-index: 9999;
    font-size: 0.8em;
    visibility: hidden;
}
.custom-alert {
    margin-bottom: 0;
}
#cookie-btn {
    background-color: var(--colorSecondary);
    color: #fff;
    transition: 0.3s;
}
#cookie-btn:hover {
    background-color: #a38147;
    color: #fff;
    cursor: pointer;
}
#cookie-msg a {
    text-decoration: underline;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}
#cookie-msg a:hover {
    color: var(--colorSecondary);
}
#cookie-page {
    margin-top: 150px;
}
#contact-modal {
    color: var(--colorMain);
}
.modal-content {
    border-radius: 7px;
}
#contact-modal .--separator-sm.--secondary-separator {
    display: block;
}
#contact-modal .--separator-md.--secondary-separator {
    display: block;
}
.modal-header {
    border-bottom: none !important;
}
.modal-footer {
    border-top: none !important;
}
#modal-close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
}
.modal-backdrop {
    background-color: #0c2e33;
}
.rc-anchor-checkbox-label {
    font-family: Montserrat, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}
#legals a {
    color: var(--colorMain);
}
#legals a:hover {
    color: var(--colorSecondary);
    transition: 0.3s;
}
#form-button {
    background-color: var(--colorSecondary);
    color: #fff;
    width: 100%;
    transition: 0.3s;
}
#form-button:hover {
    background-color: #a38147;
    color: #fff;
    cursor: pointer;
}
#contact-modal .error {
    color: #bd4007;
}
.backToTop {
    z-index: 9998;
    position: fixed;
    right: 20px;
    bottom: 80px;
    visibility: hidden;
    cursor: pointer;
    background: var(--colorMain) url(assets/img/icon/top_arrow.svg) center 14px no-repeat;
    background-size: 23px;
    box-shadow: rgba(0, 0, 0, 0.5) 0 0 5px;
    height: 51px;
    width: 51px;
    border-radius: 100px;
    transition: box-shadow 0.2s ease;
}

.phone-text-ev{
    font-size: 23px;
    text-decoration: none;
    color: white;margin-top: 0px !important;
    cursor :pointer;
    transition: 0.3s;
}

.phone-text-ev:hover{
    color: #e9b966;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
}

.phone-title{
    text-decoration: none;
    color: white;
    font-size: 34px;
    cursor: pointer;
    transition: 0.3s;
}

.phone-title:hover{
    text-decoration: none;
    color: #e9b966;
    transition: 0.3s;
}

@media screen and (max-width: 768px){
    .phone-title{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px){
    .ev-phone{
    font-size: 23px;
    }
}

.ev-phone-text{
    font-size: 22px;
    margin-top:3px !important;
}

@media screen and (max-width: 768px){
    .ev-phone-text{
    font-size:18px;
    margin-left: 12px;
    margin-right: 12px;
    }
}
button{
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    transition: 0.3s;
}

button:hover{
    color:white;
    background-color: #10434b !important;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    transition: 0.3s;
}

.custom-chips-secondary-2{
    width: auto;
}

.address-info{
    text-decoration: none;
    color:#a38147;
    font-size: 22px;
    transition: 0.3s;
    transition: 0.3s;
}

.address-info:hover{
    text-decoration: none;
    color: #10434b;
    transition: 0.3s;
    transition: 0.3s;
}

.text-info-title{
    font-size: 29px;
}

.icon-uber-white {
    background-image: url(assets/img/icon/uber-white.svg);
    background-size: 20px 20px;
    transition: 0.3s;
}

.icon-deliveroo-white {
    background-image: url(assets/img/icon/deliveroo-white.svg);
    background-size: 20px 20px;
    transition:0.3s;
}

#bloc-choix{
    width: 100%;
    display: flex;
    height: 100vh;
}

#bloc-st-gely{
    width: 50%;
    background-image: url(assets/img/carousel/lasagnes.jpg);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    text-align: center;
    align-content: center;
    display: grid;
    transition: 1s;
}

#bloc-st-gely:hover{
    background-image: linear-gradient(#10434b7c,#10434b7c),url(assets/img/carousel/lasagnes.jpg);
    transition: 1s;
}

#bloc-st-gely:hover button{
    color: white;
  background-color: #10434b !important;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  transition: 1s;
}

#bloc-castelnau:hover button{
    color: white;
  background-color: #10434b !important;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  transition: 1s;
}

#bloc-castelnau{
    width: 50%;
    background-image: url(assets/img/carousel/lasagnes-2.jpg);
    background-position: center;
    background-size: cover;
    cursor: pointer;
    text-align: center;
    align-content: center;
    display: grid;
    transition: 1s;
}

#bloc-castelnau:hover{
    background-image: linear-gradient(#10434b7c,#10434b7c),url(assets/img/carousel/lasagnes-2.jpg);
    transition: 1s;
}

#text-bloc-st-gely{
    display: table-cell;
    vertical-align: middle;
    height: 100vh;
    width: 100%;
    text-align: center;
    transition: 1s;
}

.button-home{
    font-size: 18px;
  padding-left: 50px;
  padding-right: 50px;
  transition: 1s;
}
.text-home{
    color: white !important;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    width: 90%;
    margin: auto;
    padding-top: 33px;
    padding-bottom: 13px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #10434b80;
    transition: 1s;
    margin-top: 13%;
}

.background-bottom-home{
  background-color: #10434b80;
  width: 90%;
  margin: auto;
  padding-bottom: 23px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: 1s;
}

#bloc-st-gely:hover .text-home{
    background-color: #0c2e3300;
    transition: 1s;
}

#bloc-castelnau:hover .text-home{
    background-color: #0c2e3300;
    transition: 1s;
}

#bloc-st-gely:hover .background-bottom-home{
    background-color: #0c2e3300;
    transition: 1s;
}

#bloc-castelnau:hover .background-bottom-home{
    background-color: #0c2e3300;
    transition: 1s;
}

@media screen and (max-width: 930px){
    .text-home{
        font-size: 24px;
    }
}

@media screen and (max-width: 768px){
    #bloc-choix{
        display: none;
    }
}

#bloc-choix-mobile{
    background-image: linear-gradient(#10434b7c,#10434b7c),url(assets/img/carousel/lasagnes-2.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    text-align: center;
    align-content: center;
    display: grid;
    transition: 1s;
}

@media screen and (min-width: 769px){
    #bloc-choix-mobile{
        display: none;
    }
}

@media screen and (max-width: 768px){
    .text-home{
        font-size: 20px;
        font-weight: 100;
        background-color: #10434b00;
    }
    .background-bottom-home{
        background-color: #10434b00;
        padding-bottom: 0px;
    }
    .button-home{
        font-size: 15px;
    }
}

.text-align-footer{
    text-align: initial;
}

@media screen and (max-width: 768px){
    .text-align-footer{

    text-align: center;
    }
}

@media screen and (max-width: 768px){
    #footer ul {
    text-align: center;
    }
}
