@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: sans-serif;
    line-height: 1.5;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: #1F1F1F;
    text-decoration: none;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover {
    color: #B31E25;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
}

html {
    margin-top: 0px !important;
}

/* menu */

.menu-header ul li {
    position: relative;
}

.menu-header ul.sub-menu {
    padding: 0;
    text-align: left;
    position: absolute;
    left: 0px;
    top: 120%;
    width: 280px;
    background: #fff;
    z-index: 9999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 30px 60px 0px #00194C1A;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.menu-header ul li:hover>ul.sub-menu {
    top: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.menu-header ul.sub-menu>li>a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    padding-right: 0;
    line-height: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* container */

.tf-container {
    max-width: 1270px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.container-fluid {
    padding-left: 0;
    padding-left: 0;
}

.container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

/* blog */

#preloader {
    background: #a8071a;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

/* button */

.tf-main-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    background: #A8071A;
    padding: 8px 15px;
    border-radius: 10px;
    border: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tf-main-btn i {
    margin-left: 7px;
    vertical-align: middle;
}

.tf-main-btn.st-dark {
    background: #000;
    color: #fff;
}

.tf-main-btn.st-gray {
    background: #AAAAAAAA;
    color: #000;
}

.tf-main-btn.st2 {
    background: #2B293D;
    font-weight: 500;
    font-size: 24px;
    padding: 15px 14px;
}

.tf-main-btn.st-dark:hover {
    background: #A8071A;
    color: #fff;
}

.tf-main-btn.st-gray:hover {
    background: #A8071A;
    color: #fff;
}

.tf-main-btn:hover {
    background: #141414;
    color: #fff;
}

.tf-main-btn.st-solid {
    border: 2px solid #676767;
    background: #fff;
    color: #676767;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-main-btn.st-solid i {
    width: 25px;
    height: 25px;
    border: 1px solid #676767;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #676767;
    vertical-align: middle;
    margin-left: 0;
}

.tf-main-btn.st-solid:hover {
    background: #A8071A;
    border-color: #A8071A;
    color: #fff;
}

.tf-main-btn.st-solid:hover i {
    border-color: #fff;
    color: #fff;
}

.tf-btn-action {
    border: 2px solid #B1ADC0;
    background: #fff;
    font-weight: 400;
    font-size: 12px;
    color: #64626C;
    padding: 9px 15px;
    border-radius: 6px;
    height: 32px;
    display: inline-flex;
    align-items: center;
}

.tf-btn-action i {
    font-size: 16px;
    margin-left: 10px;
    vertical-align: text-top;
}

.tf-btn-action:hover {
    background: #B1ADC0;
    color: #141414;
}

/* form */

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

/* header */

.site-header .topbar {
    background: #B31E25;
}

.site-header .topbar-button {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #141414;
    background: #fff;
    padding: 4px 15px;
    border-radius: 8px;
    margin: 12px 0;
    display: inline-block;
    float: right;
}

.site-header .topbar-button:hover {
    background: #141414;
    color: #fff;
}

.site-header .inner-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.site-header .site-logo img {
    width: 127.89px;
}

.site-header .header-content {
    background: #fff;
}

.site-header .menu-header .menu-main-menu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.site-header .menu-header .menu-main-menu>li>a {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
    padding: 25px 16px;
    border-bottom: 4px solid transparent;
    display: inline-block;
}

.site-header .menu-header .menu-main-menu>li>a:hover,
.site-header .menu-header .menu-main-menu>li.current-menu-item>a {
    color: #A8071A;
    border-color: #A8071A;
    background: #FFF1F0;
}

.site-header .header-sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    box-shadow: 0px 4px 18px 0px #00000014;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 9999;
    transform: translateY(-100%);
}

.site-header .header-sticky.fixed-show {
    transform: translateY(0%);
}

.logo-nav,
.mobile-menu-toggle,
.menu-close {
    display: none;
}

/* pagetitle */

.page-title {
    background: #B31E25;
    text-align: center;
    padding-top: 105px;
    padding-bottom: 111px;
}

.page-title.blog-pagetitle {
    background-position: center center;
    background-size: cover;
    position: relative;
}

.page-title.blog-pagetitle::after {
    background: #00000082;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-title.blog-pagetitle h1 {
    position: relative;
    z-index: 5;
}

.page-title.blog-pagetitle h1::before,
.page-title.blog-pagetitle h1::after {
    display: none;
}

.page-title.blog-pagetitle h1 {
    width: 1080px;
    margin: 0 auto;
}

.page-title h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.3333333333333333em;
    color: #fff;
    position: relative;
    margin: 0;
    display: inline-block;
}

.page-title h1 b {
    font-size: 120px;
}

.page-title.has-description h1 {
    margin-bottom: 12px;
}

.page-title.has-description h1 big {
    font-size: 120px;
}

.page-title.has-description {
    padding-top: 69px;
    padding-bottom: 44px;
}

.page-title h1 span {
    font-weight: 250;
}

.page-title .page-desc {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.page-title.has-description h1::after,
.page-title.has-description h1::before {
    display: none;
}

.page-title h1::after {
    content: '';
    width: 193px;
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title h1::before {
    content: '';
    width: 17px;
    height: 1px;
    background: #B31E25;
    position: absolute;
    bottom: -7px;
    right: 16px;
    z-index: 1;
}

/* footer */


.footer-main {
    padding-top: 64px;
    padding-bottom: 30px;
}

.footer-main .footer-logo img {
    width: 170px;
}

.footer-main .footer-logo {
    margin-bottom: 24px;
}

.footer-main .footer-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.footer-socials a {
    width: 56px;
    height: 56px;
    background: #F5F5F5;
    color: #1F1F1F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 23px;
}

.footer-socials a:hover {
    background: #B31E25;
    color: #fff;
}

.footer-main .footer-menus h4,
.footer-main .title-footer {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #820014;
    margin-bottom: 16px;
    height: 24px;
}

.footer-main .list-information li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #1F1F1F;
}

.footer-main .list-information li.mail a {
    text-decoration: underline;
    color: #1F1F1F;
}

.footer-main .list-information li a:hover {
    color: #a8071a;
}

.footer-main .list-information li .icon-icon2 {
    font-size: 11px;
}

.footer-main .footer-menus a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
}

.footer-main .footer-menus a:hover {
    color: #820014;
}

.footer-main .footer-menus ul li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-main .content-right {
    display: flex;
    justify-content: center;
    gap: 30px 64px;
    flex-wrap: wrap;
}

.footer-main .copyright .inner {
    display: block;
    text-align: center;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #820014;
}

.footer-main .copyright .inner::after {
    content: '';
    width: 136px;
    height: 1px;
    background: currentColor;
    display: inline-block;
    margin: 0 17px;
    vertical-align: middle;
}

.footer-main .copyright .inner::before {
    content: '';
    width: 136px;
    height: 1px;
    background: currentColor;
    display: inline-block;
    margin: 0 17px;
    vertical-align: middle;
}

.footer-main .copyright {
    margin-top: 32px;
}

.footer-main .copyright a {
    text-decoration: underline;
}

.footer-main .copyright .line {
    content: '';
    width: 40px;
    height: 1px;
    background: currentColor;
    display: inline-block;
    margin: 0 17px;
    vertical-align: middle;
}

/* widget form */

.prescrire-form .group-form {
    display: flex;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-bottom: 20px;
    row-gap: 20px;
}

.prescrire-form .sib-form-block {
    padding: 0;
}

.prescrire-form .sib-multiselect {
    cursor: pointer;
}

.prescrire-form .group-form .sib-form-block {
    width: calc(25% - 16px);
    margin-left: 16px;
    padding: 0;
}

.prescrire-form .group-form .sib-form-block .entry__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #1F1F1F;
    margin-bottom: 1px;
}

.prescrire-form .group-form .sib-form-block input,
.prescrire-form .group-form .sib-form-block .input--multiselect {
    border-radius: 4px;
    border-color: #BFBFBF;
    height: 22px;
    padding: 12px 16px;
}

.prescrire-form .input--multiselect::before {
    all: unset;
    content: "";
    height: 6px;
    width: 6px;
    display: inline-block;
    border-style: solid;
    border-width: 0 1.5px 1.5px 0;
    border-color: transparent #1C1B1F #1C1B1F transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
    position: absolute;
    right: 24.7px;
}

.prescrire-form .group-btn {
    text-align: right;
}

.prescrire-form .prescrire-button {
    background: #B31E25;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    padding: 11px 28px;
    border-radius: 8px;
    display: inline-block;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    outline: none;
    border: none;
    display: inline-flex
;
    align-items: center;
}

.prescrire-form .prescrire-button svg path {
    fill: #fff;
}

.prescrire-form .prescrire-button:hover {
    background: #141414;
    color: #fff;
}

.prescrire-form .sib-menu {
    padding: 10px;
}

.prescrire-form .sib-menu .prescrire-button {
    font-size: 12px;
    line-height: 18px;
    padding: 3px 10px;
}

.prescrire-form .sib-menu .sib-menu__selectTextAlign {
    padding: 0px !important;
    margin-bottom: 15px;
}

.prescrire-form .sib-menu .sib-menu__apply {
    padding: 0;
}

.prescrire-form .sib-menu .sib-menu__item-list {
    margin-bottom: 15px;
}

.prescrire-form #error-message {
    border-color: #fff;
}

.prescrire-form #error-message .sib-form-message-panel__text {
    color: #fff;
}

.sib-form {
    padding: 0 !important;
}

.prescrire-form #sib-container {
    border-radius: 16px;
}

.contact-form {
    border: 1px solid #B31E25;
    border-radius: 25px;
    padding: 21px 41px 26px 41px;
    background: #EEEEEE;

}

.contact-form input,
.contact-form textarea {
    background: #fff;
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
}

.contact-form input {
    padding: 17px 20px;
}

.contact-form textarea {
    height: 232px;
    padding: 12px 10px 10px 22px;
}

.contact-form label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    display: block;
    margin-bottom: 5px;
}

.contact-form .group-form-two-col {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: 16px;
}

.contact-form .group-form-two-col .inner {
    width: calc(50% - 30px);
    margin-left: 30px;
}

.contact-form .group-form {
    margin-bottom: 15px;
}

.contact-form button {
    border: none;
    border-radius: 8px;
    padding: 11px 25px;

    background: #B31E25;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.contact-form button:hover {
    background: #000000;
    color: #fff;
}

.contact-form button i {
    margin-left: 7px;
    vertical-align: middle;
    font-size: 14px;
}

.contact-form .wrap-button {
    text-align: center;
}

/* widget form */

/* login form */

.wrap-login-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.wrap-login-form .content-left img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.wrap-login-form .content-left {
    width: 35%;
}

.wrap-login-form .content-right {
    width: 65%;
}

.tf-ajax-login-form {
    max-width: 656px;
    margin: 0 auto;
    padding: 20px;
}

.tf-ajax-login-form input,
.tf-ajax-login-form textarea {
    background: #B0BAC366;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #141414;
    padding: 14px 30px;
    margin-top: 10px;
    width: 100%;
}

.tf-ajax-login-form input,
.tf-ajax-login-form textarea {
    border: none;
}

.tf-ajax-login-form input::placeholder,
.tf-ajax-login-form textarea::placeholder {
    color: #00000080;
}

.tf-ajax-login-form label {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #7C838A;
    width: 100%;
    display: block;
}

.tf-ajax-login-form .form-field {
    margin-bottom: 27px;
}

.tf-ajax-login-form .form-btn {
    text-align: left;
}

.toastify.tf-toast-full {
    width: 100%;
    max-width: unset;
    text-align: center;
    left: 0;
    right: 0;
}


.single-page {
    padding: 60px 0;
}

/* GoTop Button
-------------------------------------------------------------- */
.go-top {
  position: fixed !important;
  right: -100px;
  bottom: 82px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1C1C1E;
  color: #fff;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  overflow: hidden;
}

.go-top.show {
  right: 15px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.go-top i {
  font-size: 12px;
  font-weight: 600;
  transition: all ease 0.3s;
  rotate: -90deg;
}

.go-top:hover {
  transform: translateY(-5px);
  opacity: 0.8;
    background: #1C1C1E;
  color: #fff;
}

.tf-contact-response {
    text-align: center;
}

@media (max-width: 1199px) {
    .site-header .menu-header .menu-main-menu>li>a {
        font-size: 13px;
        padding: 25px 8px;
    }

    .footer-main .content-right {
        gap: 30px;
    }

    .tf-ajax-login-form {
        max-width: 100%;
    }

    .wrap-login-form .content-left,
    .wrap-login-form .content-right {
        width: 50%;
    }
}

@media (max-width: 1024px) {

    .footer-socials a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .site-header .menu-header .menu-main-menu>li>a {
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 28px;
        z-index: 1002;
    }

    .menu-header {
        width: 320px;
        height: 100%;
        top: 0;
        left: 0px;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        position: fixed;
        background-color: #fff;
        z-index: 999999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        padding: 20px;
    }

    .menu-header .menu-main-menu {
        flex-direction: column;
        margin-top: 30px !important;
    }

    .site-header .menu-header .menu-main-menu>li>a {
        padding: 10px 20px;
        border: none !important;
        display: block;
    }

    .menu-header ul li {
        width: 100%;
        margin-bottom: 0;
    }

    .menu-header.open {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    .menu-header ul {
        list-style: none;
        padding: 0;
        margin: 60px 0 0 0;
    }

    .menu-header ul li a {
        display: block;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .menu-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 26px;
        cursor: pointer;
        z-index: 1003;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        display: none;
        opacity: 0;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .content-right,
    .logo-nav {
        display: block;
    }

    .content-right nav {
        display: none;
    }

    .content-right,
    .logo-nav,
    .mobile-menu-toggle,
    .menu-close {
        display: block;
    }

    .menu-header {
        display: block !important;
    }

    .header-content .content-left {
        flex: 1;
    }

    .header-content .content-left .site-logo {
        padding: 10px 0;
    }

    .site-header .inner-content {
        gap: 0;
    }

    .contact-form {
        padding: 20px;
    }
    .footer-main .copyright .inner::before,
    .footer-main .copyright .inner::after {
        width: 60px;
    }
    .footer-main .copyright .line {
        width: 10px;
    }
    .page-title h1 {
        font-size: 40px;
    }
    .prescrire-form .group-form .sib-form-block {
        width: calc(50% - 16px);
    }
}

@media (max-width: 767px) {
    .footer-main .copyright .inner::before,
    .footer-main .copyright .inner::after {
        display: none;
    }
    .footer-main .copyright .line {
        margin: 0 10px;
    }
    .site-header .header-sticky {
        top: 0 !important;
    }

    .footer-main .content-right {
        justify-content: left;
    }

    .footer-main .content-left {
        margin-bottom: 40px;
    }

    .footer-main .copyright p::before,
    .footer-main .copyright p::after {
        width: 50px;
    }

    .contact-form .group-form-two-col .inner {
        width: calc(100% - 30px);
    }

    .contact-form .group-form-two-col .inner:first-child {
        margin-bottom: 20px;
    }

    .prescrire-form .group-form .sib-form-block {
        width: calc(100% - 16px);
    }

    #sib-container {
        padding: 30px 20px !important;
    }

    .wrap-login-form .content-left,
    .wrap-login-form .content-right {
        width: 100%;
    }

    .wrap-login-form .content-left img {
        height: 30vh;
    }
}