* {
    box-sizing: border-box;
}

body.menu-open {
    height: 100vh;
    overflow: hidden;
}

@media screen and (max-width: 669px) {
    body {
        font-size: 14px;
    }
}

.hide-opacity {
    opacity: 0;
    height: 0;
    width: 0;
}

.mainWrap {
    max-width: 100%;
}

.title-block .title {
    margin: 15px 0 10px;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 42px;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .title-block .title {
        font-size: 22px;
        line-height: 28px;
    }
}

.title-block .after-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.title-block .after-title span {
    width: 12px;
    height: 12px;
    border: 1px solid #E50046;
    border-radius: 50em;
    margin: 0 15px;
}

.title-block .after-title span.full {
    background-color: #E50046;
}

.text-block {
    margin: 15px 20px;
    color: #000;
    text-align: center;
}

.cart-count {
    position: absolute;
    background: #E50046;
    color: #fff !important;
    border-radius: 50px;
    width: 24px;
    height: 24px;
    font-size: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-top: -14px;
}











.decoration {
    position: absolute;
    width: auto;
    height: auto;
    max-height: 100%;
    overflow: hidden;
    z-index: -1;
}

@media screen and (max-width: 992px) {
    .decoration {
        display: none;
    }
}

.decoration.left {
    left: 0;
}
.decoration.right {
    right: 0;
}

.decoration.decoration-1 {
    top: 10%;
}
.decoration.decoration-2 {
    top: 35%;
}
.decoration.decoration-3 {
    top: 60%;
}

.accueil .decoration.decoration-1 {
    top: 18%;
}
.accueil .decoration.decoration-2 {
    top: 42%;
}
.accueil .decoration.decoration-3 {
    top: 65%;
}

.site-header .messages {
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    height: 55px;
}

.site-header .messages .owl-stage {
    display: flex;
    align-items: center;
}

.site-header .messages p {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    /*line-height: 27px;*/
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.site-header .main-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.site-header .main-head > * {
    padding: 0 35px;
}

.site-header .main-head .logo {
    width: 20%;
}

.site-header .main-head .search {
    flex: 1 0 auto;
}

.site-header .main-head .links {
    width: 40%;
}

.site-header .main-head .search .search-container {
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    padding: 10px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.site-header .main-head .search .search-container input {
    border: none;
    background-color: #fff;
}

.site-header .main-head .search .search-container i {
    font-size: 24px;
    color: #000;
    justify-content: flex-end;
    cursor: pointer;
}

.site-header .main-head .links > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
}

.site-header .main-head .links li {
    list-style: none;
    color: #000;
    font-size: 14px;
    line-height: 27px;
    text-align: center;
    margin: 5px 8px;
    position: relative;
}

.site-header .main-head .links li.has-dropdown {
    display: flex;
    background: #E50046;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.site-header .main-head .links a {
    color: #000;
}

.site-header .main-head .links li i {
    font-size: 24px;
    margin-right: 10px;
}

.site-header .main-head .links li .dropdown {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0px;
    background-color: #fff;
    padding: 8px;
    z-index: -10;
    width: 310px;
    transition: all 0.5s ease;
}

.site-header .main-head .links li:hover .dropdown {
    opacity: 1;
    top: 38px;
    z-index: 10;
}

.site-header .main-head .links li .dropdown ul {
    padding: 8px;
}

.site-header .main-head .links li .dropdown li {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    list-style: none;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
}

.site-header .main-head .links li .dropdown li i {
    color: #E50046;
    font-size: 20px;
    width: 18px;
}



@media screen and (max-width: 1000px) {
    .site-header .main-head .logo {
        width: 40%;
    }
    
    .site-header .main-head .search {
        width: 60%;
    }
    
    .site-header .main-head .links {
        width: 100%;
        margin-top: 20px;
    }

    .site-header .main-head .links > ul {
        justify-content: center;
    }
}

@media screen and (max-width: 800px) {
    .site-header .top-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .site-header .main-head .logo {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .site-header .main-head .logo img {
        max-height: 85px;
    }
    
    .site-header .main-head .search {
        display: none;
    }
    
    .site-header .main-head .links {
        display: none;
    }
}

@media screen and (max-width: 449px) {
    .site-header .main-head .links {
        width: 100%;
        margin-top: 20px;
    }

    .site-header .main-head .links li {
        width: 100%;
    }
}









.site-header .menu .mobile-display {
    display: none;
}

.site-header .menu > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
}

.site-header .menu > ul > li {
    list-style: none;
    padding: 0px 20px;
}

.site-header .menu ul li:hover > a {
    color: #E50046;
}

.site-header .menu:not(.open) > ul > li:hover > a {
    color: #FFF;
    background-color: #E50046;
}

.site-header .menu > ul > li a {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.site-header .menu li .sub-menu {
    position: absolute;
    z-index: 100;
    left: 0;
    width: 100%;
    padding: 0;
    max-height: 0;
    transition: max-height 0.1s ease-out;
    overflow: hidden;
}

.site-header .menu:not(.open) li:hover .sub-menu {
    max-height: 20000px;
    transition: max-height 1s ease-in;
}

.site-header .menu li .sub-menu .sub-menu-inner {
    background-color: #fff;
    width: 100%;
    padding: 15px;
    margin: 0;
    margin-top: 0px;
}

.site-header .menu li .sub-menu .menu-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0 12%;
}

.site-header .menu li .sub-menu .menu-column {
    max-width: calc(100% / 4 - 30px);
    margin: 10px 15px;
}

@media screen and (max-width: 1000px) {
    .site-header .menu li .sub-menu .menu-column {
        max-width: calc(100% / 4 - 30px);
    }
}

.site-header .menu li .sub-menu .menu-column .menu-title {
    font-size: 18px;
    line-height: 27px;
    min-height: 27px;
    color: #E00543;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul {
    padding: 0;
    padding-left: 20px;
    margin: 0;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul > li::marker {
    color: #E50046;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul.menu-products , 
.site-header .menu li .sub-menu .menu-column .column-content > ul.menu-products li.product {
    list-style: none;
    padding: 0;
    text-align: center;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul li.product img {
    height: 126px;
    width: auto;
    margin: 0 auto;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul li.product .name {
    color: #000;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    display: block;
}

.site-header .menu li .sub-menu .menu-column .column-content > ul li.product .price {
    color: #E50046;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: block;
}

.site-header .menu li .sub-menu hr {
    border-color: #E50046;
    margin: 20px 20px 10px;
}

.site-header .menu li .sub-menu .cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.site-header .menu li .sub-menu .cta .cta-btn {
    border-radius: 5px;
    padding: 10px 15px;
    background-color: #E50046;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin: 10px 0;
}

.site-header .menu li .sub-menu .cta .cta-banner {
    margin: 10px 0;
    max-width: 50%;
}

.site-header .mobile-menu {
    display: none;
}

.site-header .menu .menu-close {
    display: none;
}

.site-header .menu ul > li {
    list-style-type: none;
}

.menu.open .menu-column .column-content li {
    margin-bottom: 10px !important;
}

@media screen and (max-width: 800px) {
    .site-header .mobile-menu {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    .site-header .mobile-menu i {
        font-size: 24px;
        color: #000;
        cursor: pointer;
    }

    .site-header .menu {
        display: none;
    }

    .site-header .menu.open {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 100000000000;
        overflow: scroll;
    }

    .site-header .menu .menu-close {
        display: block;
        position: absolute;
        right: 32px;
        top: 20px;
        font-size: 24px;
        color: #000;
        cursor: pointer;
    }

    .site-header .menu .mobile-display {
        display: block;
    }

    .site-header .menu .mobile-display li {
        list-style: none;
    }

    .site-header .menu .mobile-display li a {
        color: #000;
        font-size: 16px;
        font-weight: 500;
    }

    .site-header .menu .mobile-display li i {
        color: #000;
        font-size: 20px;
        width: 20px;
        margin-right: 10px;
    }

    .site-header .menu ul {
        display: block;
        flex-direction: column;
    }

    .site-header .menu .mobile-display ul {
        padding-top: 50px;
    }

    .site-header .menu ul > li {
        margin: 0;
        margin-bottom: 20px;
    }

    .site-header .menu > ul > li.has-child > a:after{
        font-family: var(--fa-style-family,"Font Awesome 6 Free");
        font-weight: var(--fa-style,900);
        font-size: 14px;
        margin-left: 10px;
        content:"\f078"
    }
    .site-header .menu > ul > li.has-child.open > a:after{
        content:"\f077"
    }

    .site-header .menu li .sub-menu {
        position: relative;
        padding: 0;
        padding-left: 10px;
        margin-top: 0px;
    }

    .site-header .menu li.open .sub-menu {
        max-height: 20000px;
        transition: max-height 1s ease-in;
    }

    .site-header .menu li .sub-menu .menu-columns {
        margin: 0;
    }

    .site-header .menu li .sub-menu .menu-columns .menu-column {
        width: 100%;
        max-width: unset;
        margin: 0;
    }

    .site-header .menu li .sub-menu .cta .cta-btn {
        font-size: 15px;
    }

    .site-header .menu li .sub-menu .cta .cta-banner {
        max-width: 100%;
    }
}

@media screen and (min-width: 800px) {
    .site-header .menu ul.menu-hydropathe > li {
        padding: 0;
    }
    .site-header .menu ul.menu-hydropathe > li > a {
        padding: 10px 20px;
    }
    .site-header .menu li .sub-menu .sub-menu-inner {
        margin-top: 20px;
    }
}








.side-nav {
    position: fixed;
    right: -206px;
    top: 30%;
    z-index: 100000000;
}

.side-nav .element {
    margin: 10px 0;
    padding: 0;
    position: relative;
    height: 44px;
    width: 250px;
    right: 0;
    transition: right 0.5s ease;
}

.side-nav .element .element-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 10px;
    height: 44px;
}

.side-nav .element.has-sub:hover {
    right: 206px;
}

.side-nav .element.has-sub:hover .element-inner {
    position: absolute;
    right: 0;
}

.side-nav .element a {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.side-nav .element a i {
    font-size: 22px;
    color: #222222;
}

.side-nav .element a span {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
}

.side-nav .element.has-sub:hover i {
    margin: 0 10px;
}

.side-nav .element .sub {
    display: none;
    width: 200px;
}

.side-nav .element:hover .sub {
    display: block;
}

.side-nav .search-container {
    background-color: #fff;
    padding: auto 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 34px;
}

.side-nav .search-container input {
    border: none;
    background-color: #fff;
}












.accueil {
    position: relative;
}

.accueil .banner-header {
    position: relative;
    width: 100%;
    /* height: 400px; */
    max-height: 100vh;
    margin-bottom: 25px;
}

.accueil .banner-header .banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.accueil .banner-header img {
    /*min-height: 250px;*/
    object-fit: cover;
    width: 100%;
}

.accueil .categories-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 35px 0;
}

.accueil .categories-block .category-block {
    margin: 5px;
    height: 330px;
    position: relative;
}

.accueil .categories-block .category-block.block_1_2 {
    width: calc(50% - 10px);
}
.accueil .categories-block .category-block.block_1_3 {
    width: calc(33.3% - 10px);
}
.accueil .categories-block .category-block.block_1_4 {
    width: calc(25% - 10px);
}
.accueil .categories-block .category-block.block_2_3 {
    width: calc(66.6% - 10px);
}
.accueil .categories-block .category-block.block_3_4 {
    width: calc(75% - 10px);
}
.accueil .categories-block .category-block.block_1 {
    width: calc(100% - 10px);
}

.accueil .categories-block .category-block .block-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    position: absolute;
    border-radius: 5px;
}

.accueil .categories-block .category-block .block-image::after {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    content: '';
}

.accueil .categories-block .category-block .block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.accueil .categories-block .category-block.has-text .block-content {
    width: 35%;
    padding: 0 15px;
}

.accueil .categories-block .category-block .block-content * {
    z-index: 2;
}

.accueil .categories-block .category-block .block-content h3 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.accueil .categories-block .category-block .block-content a {
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    padding: 10px 20px;
    border: 3px solid #fff;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.5s;
}

.accueil .categories-block .category-block .block-content a:hover {
    color: #fff;
    background: #E50046;
    border-color: #E50046;
}

.accueil .categories-block .category-block .texts {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 30%;
    justify-content: center;
    min-width: 250px;
}

.accueil .categories-block .category-block .block-text {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
    width: 100%;
}

.accueil .categories-block .category-block .block-text:nth-child(1) {
    width: 100%;
}
.accueil .categories-block .category-block .block-text:nth-child(2) {
    width: 75%;
}
.accueil .categories-block .category-block .block-text:nth-child(3) {
    width: 50%;
}

.accueil .categories-block .category-block .block-text .text {
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
    background-color: #E50046;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 15%;
    font-size: 28px;
    line-height: 42px;
    z-index: 2;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 800px) {
    .accueil .categories-block .category-block {
        width: 100% !important;
        margin: 5px auto !important;
        height: 280px;
    }

    .accueil .categories-block .category-block.has-text .block-content {
        width: 55%;
    }    

    .accueil .categories-block .category-block .block-text .text {
        font-size: 16px;
        line-height: 20px;
    }
}

@media screen and (max-width: 449px) {
    .accueil .categories-block .category-block.has-text .block-content {
        width: 100%;
        padding: 0;
    }

    .accueil .categories-block .category-block .block-content h3 {
        font-size: 20px;
    }

    .accueil .categories-block .category-block .texts {
        width: 100%;
        min-width: none;
        bottom: 0;
        justify-content: flex-end;
        display: none;
    }

    .accueil .categories-block .category-block .block-text {
        width: 100% !important;
        margin: 0;
    }

    .accueil .categories-block .category-block .block-text .text {
        font-size: 16px;
        line-height: 20px;
        clip-path: none;
        padding: 2px;
    }

    .accueil .categories-block .category-block .block-content a {
        margin-bottom: 60px;
    }
}






.bloc-image-texte {
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 30px 0;
}

.bloc-image-texte .image {
    width: 50%;
}

.bloc-image-texte .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.bloc-image-texte .texte {
    width: 50%;
    padding: 2em 75px;
    text-align: justify;
}

.bloc-image-texte .texte p {
    color: #000;
}

.bloc-image-texte .texte .buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.bloc-image-texte .texte .buttons .button {
    border: 3px solid #E50046;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #E50046;
    text-transform: uppercase;
    margin: 10px 0;
    text-align: center;
    display: flex;
    align-items: center;
    min-width: 200px;
    transition: all 0.5s;
}

.bloc-image-texte .texte .buttons .button:hover {
    background-color: #000;
    border-color: #000;
}

.bloc-image-texte .texte .button.secondary-button {
    color: #E50046;
    background-color: #fff;
}

.bloc-image-texte .texte .button.secondary-button:hover {
    color: #fff !important;
    background-color: #E50046 !important;
    border-color: #E50046 !important;
}

.bloc-image-texte .logo {
    position: absolute;
    z-index: 10;
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: calc(50% - 75px);
    top: calc(50% - 75px);
}

@media screen and (max-width: 991px) {
    .bloc-image-texte .logo {
        display: none;
    }

    .bloc-image-texte .texte {
        width: 100%;
    }

    .bloc-image-texte .image {
        flex: 1 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .bloc-image-texte .texte {
        padding: 1em 15px;
    }
}

.accueil .logos {
    margin: 30px 0;
}

.accueil .logos .owl-stage {
    display: flex;
    align-items: center;
}

.accueil .logos img {
    width: 180px;
    margin: auto;
}




.accueil .avis {
    margin: 30px 0;
}

.accueil .avis .avis-single {
    position: relative;
    padding: 25px 15px;
    background-color: #fff;
    min-height: 200px;
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.accueil .avis .avis-single .quote-open {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
}

.accueil .avis .avis-single .quote-close {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
}

.accueil .avis .avis-single .avis-content {
    font-size: 16px;
    color: #000;
    line-height: 24px;
}






















.footer {
    background-color: #180007;
    padding: 60px 10% 40px;
    position: relative;
    z-index: 10;
}

.footer .decoration {
    /* z-index: 0; */
}

.footer .decoration.decoration-footer-1 {
    top: 0;
}
.footer .decoration.decoration-footer-2 {
    bottom: 0;
}

.footer .up-footer {
    display: flex;
    flex-direction: row;
    z-index: 1;
}

.footer .up-footer ul, .footer .up-footer li {
    list-style: none;
    padding: 0;
}

.footer .up-footer .links {
    width: 25%;
}

.footer .up-footer .contact {
    width: 25%;
}

.footer .up-footer .description {
    width: 50%;
    padding: 0 10%;
}

.footer .up-footer .description img {
    width: 100%;
    margin-bottom: 35px;
}

.footer .up-footer .description .description-text p {
    color: #fff;
    line-height: 24px;
    text-align: justify;
}

.footer .up-footer .title {
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer .up-footer .links ul li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
}

.footer .up-footer .links ul li a {
    color: #fff;
}

.footer .up-footer .contact ul li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.footer .up-footer .contact ul li a {
    color: #fff;
}

.footer .up-footer .contact ul li i {
    font-size: 24px;
    margin-right: 12px;
    color: #fff;
}

.footer .up-footer .contact .social-networks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer .up-footer .contact .social-networks a {
    margin: 15px 10px;
}

.footer .up-footer .contact .social-networks a i {
    color: #fff;
    font-size: 32px;
}


.footer .mid-footer {
    margin: 35px 0;
    z-index: 1;
}

.footer .mid-footer .gouv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer .mid-footer .gouv .gouv-logo {
    margin-right: 20px;
    background-color: #fff;
    width: 100px;
}

.footer .mid-footer .gouv p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer p.big {
    font-size: 18px !important;
    line-height: 27px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

.text-center {
    text-align: center;
}

.sub-footer {
    background-color: #000;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    z-index: 1;
}

.sub-footer p {
    color: #fff !important;
    text-transform: uppercase;
    margin: 0;
}

.sub-footer p a {
    color: #fff !important;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .footer .up-footer {
        flex-wrap: wrap;
    }

    .footer .up-footer > * {
        width: 100% !important;
        margin: 15px 0;
        padding: 0;
        text-align: center;
    }

    .footer .up-footer .contact ul li {
        justify-content: center;
    }
}