/* Components */
.card-blog {
    background: var(--white_color);
    flex-flow: column;
    min-height: 380px;
}
.card-operation .img-bck_cover {
  min-height: 230px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.card-operation-progress {
  background: rgba(198, 198, 198, .4);
}

@media (max-width: 992px) {
  .card-operation .card-operation_live__col {
    margin-bottom: 20px;
  }
  .card-operation h4 {
    font-size: 17px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .card-operation p {
    font-size: 14px;
  }
}
.card-residence {
  border: solid 1px var(--grey_color);
  flex-flow: column;
  min-height: 400px;
}

.card-slick {
    color: var(--black_color);
    padding: 15px;
    flex-flow: column;
    align-items: center;
    margin-bottom: 10px;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.card-slick>div.bg-img {
    height: 64px;
    width: 80px;
    filter: grayscale(1);
}

.card-slick p {
    padding: 10px 0;
    font-weight: bold;
}

.card-slick:hover>div {
    filter: grayscale(0);
}

.card-slick:hover>span {
    line-height: 1.2;
    border-width: 2px;
    font-weight: 500;
}

.card-slick svg {
    border: solid 1px var(--primary_color);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-align: -webkit-center;
    text-align: -moz-center;
    text-align: center;
}

@media (min-width: 768px) {
    .card-slick .slick-dots {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .card-slick .slick-prev,
    .card-slick .slick-next {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .card-slick {
        padding: 18px 12px;
    }

    .card-slick>div.bg-img

    /*image*/
        {
        height: 40px;
        width: 50px;
    }
}
.card {
  display: flex;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px var(--shadow_color);
  -moz-box-shadow: 0 3px 6px var(--shadow_color);
  -ms-box-shadow: 0 3px 6px var(--shadow_color);
  -o-box-shadow: 0 3px 6px var(--shadow_color);
  box-shadow: 0 3px 6px var(--shadow_color);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.card:hover {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 3px 7px var(--shadow_hover__color);
  -moz-box-shadow: 0 3px 7px var(--shadow_hover__color);
  -ms-box-shadow: 0 3px 7px var(--shadow_hover__color);
  -o-box-shadow: 0 3px 7px var(--shadow_hover__color);
  box-shadow: 0 3px 7px var(--shadow_hover__color);
}

.card:hover .btn-toggle {
  background-color: var(--anchor_color);
  color: var(--white_color);
}

.before_premiere {
  min-width: 100px;
  min-height: 100px;
}
.before_premiere span {
  font-size: 14px;
}
.card-guide .img-bck_cover {
  opacity: 0;
}

.card-guide .content-hover {
  display: none;
}

.card-guide .content-img .download::before {
  background-color: var(--primary_color);
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 18px;
}

/* Hover */

.card-guide:hover .img-bck_cover {
  opacity: 1;
}

.card-guide:hover .content-img {
  opacity: 0;
}

.card-guide:hover .content-hover {
  display: block;
}


section.comprehensive-guide .horizontal-menu {
  flex-flow: initial;
  white-space: normal;
}

section.comprehensive-guide .horizontal-menu div.hs_cos_wrapper_type_module a {
  width: 100%;
}

@media screen and (max-width: 991px) {
  section.comprehensive-guide .horizontal-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row;
  }

  section.comprehensive-guide .horizontal-menu div.hs_cos_wrapper_type_module {
    display: inline-block;
    width: 100%;
  }

}
.accordion__item { 
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: var(--blue_grey__color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 6px var(--shadow_color);
  -moz-box-shadow: 2px 2px 6px var(--shadow_color);
  -ms-box-shadow: 2px 2px 6px var(--shadow_color);
  -o-box-shadow: 2px 2px 6px var(--shadow_color);
  box-shadow: 2px 2px 6px var(--shadow_color);
}

.accordion__item.item-open {
  background:var(--blue_grey__color);
  margin-bottom:10px;
}
.accordion__item.item-open p {
  margin-top: 1rem;
}
.accordion__trigger {
  position:relative;
  padding-right:30px;
}
.accordion__trigger:hover {
  cursor:pointer;
}
.accordion__trigger:after {
  width: 26px;
  height: 26px;
  position: absolute;
  content: "+";
  right: 0px;
  line-height: 1;
  font-size: 18px;
  font-weight: initial;
  top: calc(50% - 13px);
  color: var(--primary_color);
  border: solid 2px var(--primary_color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding-left: 7px;
  padding-top: 1px;
}
.accordion__trigger.accordion-open:after {
  content:"-";
  padding-left: 7px;
  padding-top: 0;
}

.accordion__trigger h3{
  padding:20px 0 !important;
}

.accordion__collapse { 
  display:none; 
}
.navigation-vertical li {
    border-left: solid 1px var(--grey_color);
}

.navigation-vertical li a {
    color: var(--grey_color);
}

.navigation-vertical li a:after {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--white_color);
    border: solid 1.5px var(--primary_color);
    position: absolute;
    content: '';
    top: 0;
    left: -20px;
    height: 10px;
    width: 10px;
}

.navigation-vertical li a.actived {
    color: var(--anchor_color);
    font-weight: bold;
}

.navigation-vertical li a.actived:after {
    color: var(--white_color);
    background: var(--primary_color);
    left: -25px;
    padding-left: 4px;
    padding-bottom: 15px;
    font-size: 12px;
    height: 18px;
    width: 18px;
}

.navigation-vertical li:nth-last-child(2),
.navigation-vertical li:last-child,
.navigation-vertical ul.socials_sharing li {
    border-width: 0;
}

.navigation-vertical ul.socials_sharing li a:after {
    display: none;
}

@media (max-width: 992px) {
    .navigation-vertical {
        display: none;
    }
}
.navigation-horizontal {
    background-color: var(--blue_grey__color);
}

.navigation-horizontal a {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border-top: solid 1px var(--grey_color);
    color: var(--grey_color);
}

.navigation-horizontal a.actived,
.navigation-horizontal a:hover {
    color: var(--anchor_color);
    font-weight: bold;
}

.navigation-horizontal a:after {
    position: absolute;
    content: '';
    top: -7px;
    left: 0;
    height: 12px;
    width: 12px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--white_color);
    border: solid 1.5px var(--primary_color);
}

.navigation-horizontal a:hover:after,
.navigation-horizontal a.actived:after {
    background: var(--primary_color);
    top: -10px;
    height: 18px;
    width: 18px;
}

.navigation-horizontal a:last-child {
    border-color: transparent;
}

@media (max-width: 992px) {

    .navigation-horizontal {
        background-color: transparent;
        width: 60%;
        margin: auto;
    }

    .navigation-horizontal a {
        font-size: 12px;
        border-top: none;
        border-left: solid 1px #76798b;
        margin: 0;
        padding: 0 0 20px 15px;
    }

    .navigation-horizontal a:after {
        top: 0;
        left: -7px;
    }

    .navigation-horizontal a.actived:after {
        top: 0;
        left: -10px;
    }

}




.hs-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}
.footer {
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: center;
}

.footer__container.content-wrapper {
  padding: 1rem 0;
}

.footer__copyright {
  font-size: 0.7rem;
  margin: 0.5rem 0;
}

section.footer img {
  height: 45px;
}

section.footer ul {
  display: flex;
  justify-content: center;
}

section.footer ul li a {
  /*border-right: solid 1px var(--anchor_color);*/
  position: relative;
}

section.footer ul li:first-child a {
  padding-left: 0;
}

.footer ul li:last-child a {
  padding-right: 0;
  border: none;
}
.footer ul li {
	position: relative;
	padding: 0 5px;
  }

.footer ul li:not(:last-child):after {
	content: '';
	position: absolute;
	z-index: 1;
	right: 0px;
	border-right: solid 1px var(--anchor_color);
	height: 100%;
	top: 0;
}
.footer ul li {
	word-break: initial;
}
header.header-no-navigation {
  width: 100%;
  margin: 0 auto;
  top: 0px;
  z-index: 9999;
}

header.header-no-navigation ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.header-no-navigation ul li span {
  width: max-content;
  padding-right: 4px;
}

header.header-no-navigation ul li:first-child a {
  background: var(--white_color);
}

header.header-no-navigation ul li:first-child a:hover {
  background: var(--white_color);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

header.header-no-navigation a {
  display: block;
  padding: 10px;
}

img.logo {
  height: 35px;
  width: auto;
}

img.phone {
  height: 16px;
  width: auto;
}

img.phone-alt {
  height: 30px;
  width: auto;
}

img.square {
  height: 5px;
  width: 5px;
}

header.header-no-navigation ul li:last-child {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}
/* Transition */
header a,
header svg,
header ::before,
header ::after {
  -o-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

/* Header */
header {
  background-color: var(--white_color);
  -webkit-box-shadow: 0 3px 6px var(--shadow_color);
  -moz-box-shadow: 0 3px 6px var(--shadow_color);
  -ms-box-shadow: 0 3px 6px var(--shadow_color);
  -o-box-shadow: 0 3px 6px var(--shadow_color);
  box-shadow: 0 3px 6px var(--shadow_color);
  z-index: 99;
  flex-flow: column;
  align-items: end;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
}

/* Logo */
header .logo img {
  width: 72px !important;
  height: auto;
}

/* Global */
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header ul li a {
  position: relative;
  display: block;
}

/* Menu */
header .hs-menu-wrapper {
  width: 100%;
}

header .hs-menu-wrapper>ul {
  height: calc(100vh - 190px);
  overflow: scroll;
  display: none;
  flex-flow: column;
  align-items: end;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1:first-child {
  margin-top: 10px;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1 a {
  display: block;
  padding: 10px 30px;
}

/* CTA */
header .hs-menu-wrapper>ul li.cta-mobile {
  background-color: var(--white_color);
  display: none;
  position: fixed;
  padding: 15px 30px;
  bottom: 0;
  width: 100%;
  z-index: 20;
}

header .hs-menu-wrapper>ul li.cta-mobile a span {
  width: 70%;
}

/* Dropdown */
header .hs-menu-wrapper>ul li.hs-menu-depth-1 {
  position: relative;
  width: 100%;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  z-index: 10;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1.active a.dropdown {
  color: var(--primary_color);
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1.active a.dropdown:before {
  background-color: var(--primary_color__light);
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown:before {
  background-color: var(--primary_color);
  position: absolute;
  content: '';
  top: 4px;
  left: 30px;
  width: 25px;
  height: 4px;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul {
  position: relative;
  display: none;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 {
  position: relative;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 a.dropdown_child {
  font-weight: bold;
  padding: 10px 30px 4px 30px;
}

/* Dropdown Child */
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul {
  position: relative;
  right: 0;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li {
  width: 100%;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a.has-highlight {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: max-content;
}
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a.has-highlight span {
  padding: 2px;
  margin-left: 5px;
  font-weight: bold;
  font-size: inherit;
}
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a.has-highlight span.new { 
  background: var(--primary_color);
  color: var(--white_color);
}
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a.has-highlight span.to-come {
  color: var(--primary_color);
}


header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li:last-child {
  margin-bottom: 10px;
}

header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a {
  font-size: 12px;
}

/* Dropdown Icon */
header .hs-menu-wrapper>ul li.hs-item-has-children svg {
  fill: var(--primary_color);
  position: absolute;
  padding: 12px 30px;
  top: 0;
  right: 0;
  width: 72px;
  vertical-align: middle;
}

header .hs-menu-wrapper>ul li.hs-item-has-children:hover>svg,
header .hs-menu-wrapper>ul li.hs-item-has-children.active>svg {
  fill: var(--primary_color__dark);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* Mobile layout */
header .mobile-layout {
  padding-left: 30px;
  padding-right: 30px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Mobile layout- Responsive Icon */
header .mobile-layout .resp_icon {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: auto;
  padding: 0;
  outline: 0;
}

header .mobile-layout .resp_icon svg {
  height: auto;
}

header .mobile-layout .resp_icon .line {
  stroke: var(--anchor_color);
  fill: none;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

header .mobile-layout .resp_icon .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

header .mobile-layout .resp_icon .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

header .mobile-layout .resp_icon .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

header .resp_icon.active .line {
  stroke: var(--anchor_color);
}

header .mobile-layout .resp_icon.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

header .mobile-layout .resp_icon.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

header .mobile-layout .resp_icon.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

/* Mobile layout - Logo */
header .logo a {
  padding: 15px;
  display: inline-block;
}

/* Breadcrumbs */
header .mobile-layout-submenu {
  width: 100%;
}

header .mobile-layout-submenu .breadcrumbs {
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

header .mobile-layout-submenu .breadcrumbs a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
}

header .mobile-layout-submenu .breadcrumbs p {
  padding-left: 5px;
}

/* Mobile Layout Submenu */

header .mobile-layout-submenu .contact-content {
  background-color: var(--anchor_color);
  display: none;
  padding-left: 30px;
  padding-right: 30px;
}

header .mobile-layout-submenu .contact-content ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .mobile-layout-submenu .contact-content ul li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

header .mobile-layout-submenu .contact-content ul li a {
  color: var(--white_color);
}

header .mobile-layout-submenu .contact-content ul li:first-child a:last-child::before {
  background-color: var(--secondary_highlight__color);
}

header .mobile-layout-submenu .contact-content ul li svg {
  margin-right: 5px;
}

header .mobile-layout-submenu .contact-content ul li a {
  padding: 15px 0;
  font-size: 10px;
}

header .mobile-layout-submenu .contact-content ul li:first-child a:last-child {
  margin-left: 15px;
}

header .mobile-layout-submenu .contact-content ul li:first-child a:last-child::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  top: 0;
  bottom: 0;
  left: -10px;
  margin: auto 0;
}

/* Mega Menu Settings */
header .mega-menu-row {
  display: none;
}

/*********************************************************************************
***************************************** Only Mobile *****************************
*********************************************************************************/
@media screen and (max-width: 991px) {
  header #urbis-top-menu {
    display: none;
  }

  header .container {
    max-width: 100%;
    padding: 0;
  }

  header .hs-menu-wrapper>ul {
    padding-bottom: 30px;
  }

  header .mobile-layout-submenu .contact-content ul li.phone-desktop {
    display: none !important;
  }
}

/*********************************************************************************
***************************************** Desktop *****************************
*********************************************************************************/
@media screen and (min-width: 992px) {

  /* Header */
  header .container .row {
    flex-flow: row;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu:hover>ul,
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu ul li.hs-menu-depth-2:hover>ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1:first-child {
    margin-top: 0;
  }

  /* Menu */
  header .hs-menu-wrapper>ul {
    height: 100%;
    justify-content: flex-end;
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row;
    align-items: center;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0 10px;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1:nth-last-child(2) {
    padding-right: 0;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 a {
    border: none;
  }

  /* CTA */
  header .hs-menu-wrapper>ul li.cta-mobile {
    display: none;
  }

  /* Dropdown */

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 {
    position: relative;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown {
    color: var(--anchor_color);
    font-size: 11px;
    padding: 20px 5px;
    width: max-content;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 a:hover {
    color: var(--primary_color);
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown:before {
    display: none;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul {
    position: absolute;
    width: 100%;
  }

  header .hs-menu-wrapper>ul li.hs-item-has-children:hover>svg {
    cursor: pointer;
  }

  /* Dropdown Child */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: inherit;
    right: inherit;
    width: inherit;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a {
    font-size: 12px;
    padding: 5px 0;
    width: fit-content;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a:before {
    opacity: 0;
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    top: 0;
    bottom: 0;
    left: -10px;
    margin: auto 0;
    background-color: #00000029;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a:hover {
    color: var(--primary_color);
    text-decoration: underline;
    -o-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a:hover:before {
    opacity: 1;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li a:focus {
    color: var(--primary_color__dark);
  }

  /* Dropdown Icon */
  header .hs-menu-wrapper>ul li.hs-item-has-children svg {
    width: 10px;
    height: auto;
    padding: 0;
    position: relative;
  }

  header .hs-menu-wrapper>ul li.hs-item-has-children:hover>svg {
    opacity: 1;
  }

  /* Mobile layout */
  header .mobile-layout {
    width: auto;
    border: none;
    padding: 0;
  }

  /* Mobile layout - Responsive Icon */
  header .mobile-layout .resp_icon,
  header .mobile-layout .phone-svg {
    display: none;
  }

  /* Mobile layout - Logo */
  header .logo a {
    padding: 0;
    display: inline-block;
  }

  /* Mobile Layout Submenu */
  header .mobile-layout-submenu {
    display: none;
  }

  /* Mega Menu */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu>ul {
    top: 95px;
    left: 0;
    right: 0;
    position: fixed;
    background: var(--white_color);
    padding-top: 50px;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu>ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: -100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    background: var(--white_color);
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2.cta-desktop a {
    position: relative;
    border-radius: 5px;
    border: solid 2px #E75428;
    font-size: 12px;
    padding: 12px 15px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center;
    text-align: left !important;
    justify-content: space-between;
    flex-flow: column;
    align-items: baseline;
    max-width: 155px;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2.cta-desktop a:after {
    position: relative;
    right: inherit;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2.cta-desktop a:hover {
    border: solid 2px #B0381C;
    background-color: #E75428;
    color: #FFF;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2.cta-desktop a:hover:after {
    content: url(https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Urbis%20Th%C3%A8me/Icons/arrow-circle-right-solid%20-%20white.svg);
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2.cta-desktop a:focus {
    background-color: #B0381C;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 a.dropdown_child {
    cursor: default;
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    padding: 10px 0;
    display: block;
    width: fit-content;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 a.dropdown_child:hover {
    color: inherit;
  }

  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2:nth-child(1) {
    flex: 0 0 100%;
    position: relative;
    padding-top: 5px;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2:nth-child(1):before {
    background-color: var(--primary_color);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 25px;
    height: 4px;
  }

  /* Menu 1 */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-1>ul li.hs-menu-depth-2:nth-child(2) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-1>ul li.hs-menu-depth-2:nth-child(3) {
    flex: 0 0 25%;
    padding-left: 15px;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-1>ul li.hs-menu-depth-2:nth-child(4) {
    flex: 0 0 33%;
    justify-content: center;
    align-items: end;
  }

  /* Menu 2 */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-2>ul li.hs-menu-depth-2:nth-child(2) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-2>ul li.hs-menu-depth-2:nth-child(3) {
    flex: 0 0 33%;
    /*
    justify-content: center;
    align-items: end;
    */
  }

  /* Menu 3 */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-3>ul li.hs-menu-depth-2:nth-child(2) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-3>ul li.hs-menu-depth-2:nth-child(3) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-3>ul li.hs-menu-depth-2:nth-child(4) {
    flex: 0 0 20%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-3>ul li.hs-menu-depth-2:nth-child(5) {
    flex: 0 0 20%;
  }

  /* Menu 4 */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-4>ul li.hs-menu-depth-2:nth-child(2) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-4>ul li.hs-menu-depth-2:nth-child(3) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-4>ul li.hs-menu-depth-2:nth-child(4) {
    flex: 0 0 20%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-4>ul li.hs-menu-depth-2:nth-child(5) {
    flex: 0 0 20%;
  }

  /* Menu 5 */
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-5>ul li.hs-menu-depth-2:nth-child(2) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-5>ul li.hs-menu-depth-2:nth-child(3) {
    flex: 0 0 25%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-5>ul li.hs-menu-depth-2:nth-child(4) {
    flex: 0 0 20%;
  }
  header .hs-menu-wrapper>ul li.hs-menu-depth-1.hs-mega-menu-5>ul li.hs-menu-depth-2:nth-child(5) {
    flex: 0 0 25%;
    justify-content: center;
    align-items: end;
  }

  /* Top Header */
  header #urbis-main-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: var(--white_color);
  }
  header .mobile-layout-submenu {
    display: block;
  }
  header .mobile-layout-submenu .breadcrumbs {
    display: none;
  }
  header .mobile-layout-submenu .contact-content {
    display: block;
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
  }
  header .mobile-layout-submenu .contact-content ul {
    justify-content: end;
  }
  header .mobile-layout-submenu .contact-content ul li:not(:first-child) {
    padding-left: 25px;
  }
  header .mobile-layout-submenu .contact-content ul li:first-child a:last-child {
    margin-left: 0;
    padding-left: 25px;
  }
  header .mobile-layout-submenu .contact-content ul li:first-child a:last-child:before {
    display: none;
  }
  header .mobile-layout-submenu .contact-content ul li a {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .mobile-layout-submenu .contact-content ul li a:hover {
    color: var(--primary_color__light);
  }
  header .mobile-layout-submenu .contact-content ul li svg path {
    fill: var(--primary_color);
  }

}

@media screen and (min-width: 1200px) {
  header .hs-menu-wrapper>ul li.hs-menu-depth-1 a.dropdown {
    font-size: 13px;
    line-height: normal;
  }
}

/* Elements */
.breadcrumbs {
    display: flex;
    align-items: center !important;
    flex-flow: wrap;
    padding-bottom: 5px;
}

.breadcrumbs svg:first-child {
    height: 12px;
    width: 12px;
}

.breadcrumbs svg:not(:first-child) {
    height: 9px;
    width: 9px;
}

.breadcrumbs li {
    font-size: 12px;
    padding: 0 3px;
    display: inline-block;
}

.breadcrumbs li a {
    color: var(--anchor_color);
    text-transform: capitalize;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.breadcrumbs li a:hover:before,
.breadcrumbs li:last-child a:hover:before {
    background-color: var(--primary_color);
}

.breadcrumbs li a:focus,
.breadcrumbs li a:active {
    color: var(--primary_color__dark);
}

.breadcrumbs li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.breadcrumbs li a:focus:before,
.breadcrumbs li a:active:before {
    background-color: var(--primary_color__dark);
}

.breadcrumbs li:first-child a:before {
    display: none;
}

.breadcrumbs li:last-child a:before {
    background-color: var(--grey_color);
}


.breadcrumbs li a:hover::before {
    height: 2px;
}

@media (max-width: 768px) {
    .breadcrumbs li {
        font-size: 11px;
        line-height: 15px;
    }
}

@media (max-width: 576px) {
    .breadcrumbs {
        align-items: flex-start;
    }

    .breadcrumbs li {
        padding-top: 4px;
    }

    .breadcrumbs li {
        font-size: 10px;
    }
}

/* Breadcrumbs Blog List */

.breadcrumbs-blog-list {
    margin-top: 10px;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .breadcrumbs-blog-list {
        margin-top: 0;
        margin-bottom: 0;
    }
}
.btn-to_see_all {
  display: flex;
  flex-flow: row-reverse;
  width: 100%;
  align-items: center;
}

@media (max-width: 991px) {
  .btn-to_see_all {
    justify-content: space-between;
  }

  .btn-to_see_all ul.slick-dots {
    position: initial;
    padding-left: 15px;
    width: initial;
  }
  
  .btn-to_see_all ul.slick-dots,
  .btn-to_see_all ul.slick-dots li {
    margin: 0;
  }
}
a.btn-download-pdf {
    padding: 0.875em 1.1875em;
    line-height: 1.2;
}

.contact-popup_opened {
    overflow: hidden;
}

.contact-popup_opened .contact-popup {
    display: block;
    z-index: 1000;
}

.contact-popup {
    background: rgba(0, 0, 0, 0.75);
}

.contact-popup form {
    width: 100%;
    max-width: none;
    margin: 0;
}

.contact-popup fieldset {
    max-width: 100%;
}

.contact-popup .hs_submit {
    max-width: 100%;
}

@media (max-width:991px) {

    .contact-popup .contact-popup_wrapper,
    .contact-popup .contact-popup_wrapper>span {
        max-width: 700px;
    }

    .contact-popup_closer {
        right: 0;
    }

}
.btn-nurturing {
  color: var(--anchor_color);
  position: relative;
  font-weight: bold;
  padding-left: 1em;
}

.btn-nurturing:hover {
  color: var(--primary_color);
  text-decoration: underline !important;
}

.btn-nurturing:focus,
.btn-nurturing:active {
  color: var(--primary_color__dark);
}

.btn-nurturing:before {
  background: var(--primary_highlight__color);
  background: -o-linear-gradient(90deg, var(--primary_highlight__color) 0%, var(--secondary_highlight__color) 100%);
  background: -ms-linear-gradient(90deg, var(--primary_highlight__color) 0%, var(--secondary_highlight__color) 100%);
  background: -moz-linear-gradient(90deg, var(--primary_highlight__color) 0%, var(--secondary_highlight__color) 100%);
  background: -webkit-linear-gradient(90deg, var(--primary_highlight__color) 0%, var(--secondary_highlight__color) 100%);
  background: linear-gradient(90deg, var(--primary_highlight__color) 0%, var(--secondary_highlight__color) 100%);
  display: block;
  position: absolute;
  height: 6px;
  width: 6px;
  top: 0;
  left: 0;
  bottom: 0;
  content: '';
  margin: auto;
}

.btn-nurturing:hover:before,
.btn-nurturing:active:before {
  background: var(--grey_color);
}

@media (max-width: 576px) {
  .btn-nurturing {
    font-size: 14px;
  }
}
a.btn-operation-see {
  border: solid 2px var(--primary_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  align-items: baseline;
  border: solid 2px var(--primary_color);
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  font-size: 12px;
  font-weight: bold;
}

a.btn-operation-see:hover {
  -webkit-box-shadow: 0 3px 12px var(--shadow_color);
  -moz-box-shadow: 0 3px 12px var(--shadow_color);
  -ms-box-shadow: 0 3px 12px var(--shadow_color);
  -o-box-shadow: 0 3px 12px var(--shadow_color);
  box-shadow: 0 3px 12px var(--shadow_color);
}

a.btn-operation-see:hover svg.first-svg path {
  fill: var(--primary_color);
}

a.btn-operation-see:hover svg.second-svg {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}
.btn-read {
  border-bottom: solid 1px var(--primary_color);
  font-size: 12px;
  display: block;
  width: fit-content;
  padding-top: 25px;
}

@media (max-width: 991px) {
  .btn-read {
    padding-top: 10px;
  }
}
.hs-button.btn-secondary_ghost {
  background-color: var(--white_color);
  color: var(--anchor_color);
  border: solid 2px var(--anchor_color);
}
.hs-button.btn-secondary_ghost-white {
  background-color: var(--anchor_color);
  color: var(--white_color);
  border: solid 2px var(--white_color);
}

@media (hover: hover) {
  .hs-button.btn-secondary_ghost:hover,
  .hs-button.btn-secondary_ghost:focus {
    border: solid 2px var(--primary_color);
    background-color: var(--white_color);
    color: var(--anchor_color);
  }
	.hs-button.btn-secondary_ghost-white:hover,
  	.hs-button.btn-secondary_ghost-white:focus {
    border: solid 2px var(--white_color);
    background-color: var(--white_color);
    color: var(--anchor_color);
  }
  .hs-button.btn-secondary_ghost:hover svg path,
  .hs-button.btn-secondary_ghost:active svg path {
    fill: var(--primary_color);
  }
  .hs-button.btn-secondary_ghost-white:hover svg path,
  .hs-button.btn-secondary_ghost-white:focus svg path {
    fill: var(--anchor_color);
  }
}

.hs-button.btn-secondary_ghost:active {
  background-color: var(--white_color);
  border: solid 2px var(--primary_color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.hs-button.btn-secondary_ghost-white:active {
  background-color: var(--white_color);
  border: solid 2px var(--white_color);
  color: var(--anchor_color);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.hs-button.btn-secondary_ghost,
.hs-button.btn-secondary_ghost-white,
.hs-button.btn-secondary_svg,
.hs-button.btn-primary_svg {
  padding: 0.875em 1.1875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hs-button.btn-secondary_ghost svg,
.hs-button.btn-secondary_ghost-white svg {
  margin-right: 15px;
}

.hs-button.btn-secondary_ghost svg path {
  fill: var(--anchor_color);
}
.hs-button.btn-secondary_ghost-white svg path {
  fill: var(--white_color);
}
.btn-toggle {
    background-color: var(--white_color);
    border: solid 1.5px var(--anchor_color) !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: var(--anchor_color);
    font-size: 15px;
    font-weight: bold;
}

@media (min-width: 992px) {
    .btn-toggle {
      font-size: 16px;
    }
  }
/* rest */
section.operation-stage-of-project__filter .btn-type {
  position: relative;
  font-size: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  
}

section.operation-stage-of-project__filter .btn-type .click {
  height: 14px;
  width: 14px;
  border: solid 1px var(--anchor_color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

section.operation-stage-of-project__filter .btn-type .click div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
}

section.operation-stage-of-project__filter a.btn-switcher {
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  border-radius: 150px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  font-size: 12px;
  color: var(--grey_color);
  margin-top: 2px;
  margin-bottom: 2px;
}

/* active */
section.operation-stage-of-project__filter .btn-type.active {
  color: var(--white_color);
  border: solid 2px var(--anchor_color__dark);
  background-color: var(--anchor_color__light);
}

section.operation-stage-of-project__filter .btn-type.active .click {
  border: solid 1px var(--white_color);
  color: var(--white_color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

section.operation-stage-of-project__filter a.btn-switcher.active {
  color: var(--white_color);
  border: solid 2px var(--anchor_color__dark);
  background-color: var(--anchor_color__light);
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

section.operation-stage-of-project__filter a.btn-switcher__habiter.active {
  margin-right: -35px;
  z-index: 1;
}

section.operation-stage-of-project__filter a.btn-switcher__investir.active {
  margin-left: -35px;
  z-index: 1;
}


@media (hover: hover) {

  /* hover */
  section.operation-stage-of-project__filter .btn-type:hover .click {
    border: solid 1px var(--primary_color);
  }

  /* hover off */
  section.operation-stage-of-project__filter .btn-type.active:hover {
    background: var(--grey_color);
  }

  section.operation-stage-of-project__filter .btn-type.active:hover .click {
    border: solid 1px var(--primary_color);
    color: var(--white_color);
  }

  section.operation-stage-of-project__filter a.btn-switcher.active:hover {
    color: var(--white_color);
    border: solid 2px var(--anchor_color__dark);
    background-color: var(--anchor_color__light);
  }

}
a[data-hs-anchor="true"] {
  display: block;
  position: relative;
  visibility: hidden;
}

button,
.button,
.hs-button {
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  height: auto;
  line-height: 1.2;
  padding: 15px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
  border: solid 1.3px transparent;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
button:active,
.button:active,
.hs-button:hover,
.hs-button:focus,
.hs-button:active {
  text-decoration: none;
}


/* button primary */
a.btn-primary,
.btn-primary a { 
  border: solid 1.3px transparent; 
  font-size: 16px; 
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #E75428; 
  color: #FFF; 
  padding: 22px 19px;
}

a.btn-primary:active,
.btn-primary a:active,
a.btn-primary:focus,
.btn-primary a:focus { 
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1.3px var(--anchor_color__dark); 
  background: var(--anchor_color__dark); 
}


@media (hover: hover) {
  a.btn-primary:hover,
  .btn-primary a:hover { 
    font-size: 16px; 
    color: #FFF;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: solid 1.3px #B23712;
    -webkit-box-shadow: 0 3px 6px #E7542850;
    -moz-box-shadow: 0 3px 6px #E7542850;
    box-shadow: 0 3px 6px #E7542850;
    padding: 1.375em/* 22px */ 1.1875em/* 19px */;
  }
}
.cta_button {
  font-weight: bold;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: center;
}

/* Primary & ghost */
.cta-primary {
  background: var(--primary_color);
  color: var(--white_color);
  border: solid 1.3px transparent;
  font-size: 16px;
  padding: 1.375em 1.1875em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.card:hover .cta-primary,
.cta-primary:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: solid 1.3px var(--primary_color__dark);
  -webkit-box-shadow: 0 3px 6px var(--shadow_color);
  -moz-box-shadow: 0 3px 6px var(--shadow_color);
  -ms-box-shadow: 0 3px 6px var(--shadow_color);
  -o-box-shadow: 0 3px 6px var(--shadow_color);
  box-shadow: 0 3px 6px var(--shadow_color);
}

.card:active .cta-primary,
.card:focus .cta-primary,
.cta-primary:active,
.cta-primary:focus {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1.3px var(--primary_color__dark);
  background: var(--primary_color__dark);
}

.cta-primay__ghost {
  font-size: 20px;
  padding: 0.625em 4.0625em;
  border: solid 1.5px var(--anchor_color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: var(--white_color);
  color: var(--anchor_color);
}

.cta-primay__ghost:hover {
  background: var(--anchor_color);
  color: var(--white_color);
}

@media (max-width: 576px) {

  .cta-primary,
  input.cta-primary {
    font-size: 14px;
    padding: 1.375em 3.4375em;
  }
}

/* Secondary */
.cta-secondary {
  border: solid 1.3px transparent;
  font-size: 16px;
  padding: 1.375em 1.1875em;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: var(--anchor_color);
  color: var(--white_color);
}

.cta-secondary:hover,
.card:hover .cta-secondary {
  border: solid 1.3px var(--anchor_color__dark);
  background: var(--anchor_color__light);
}

.cta-secondary:active,
.card:active .cta-secondary {
  background: var(--anchor_color__dark);
  background: var(--anchor_color__dark);
}

@media (max-width: 576px) {

  .cta-secondary,
  input.cta-secondary {
    font-size: 14px;
    padding: 0.8125em 1.875em;
  }
}
.contact-popup .form-container {
    width: 80%;
}

.contact-popup form .inputs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.contact-popup form .inputs-list li {
    width: fit-content;
}

.contact-popup form .inputs-list li:not(:last-child) {
    margin-right: 10px;
}

.contact-popup form .actions {
    text-align: -webkit-right;
    text-align: -moz-right;
    text-align: right;
}

@media (max-width: 992px) {
    .contact-popup .form-container {
        width: 100%;
    }
}
/* Global */
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-form,
.form-style {
  padding: 50px;
  background: #F8FAFD;
}

/* Title */
.hs_cos_wrapper_type_form h3 {
  text-align: center;
  padding-bottom: 20px;
}

.hs-form-field {
  margin-bottom: 1.4rem;
  position: relative;
}

/* Select */
form select {
  cursor: pointer;
  background-color: var(--white_color);
  color: var(--grey_color);
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}

/* margin-right: .35rem;
/* Labels */
label.hs-form-checkbox-display,
label.hs-form-radio-display,
label.hs-form-booleancheckbox-display {
  cursor: pointer;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: relative;
}

label.hs-form-checkbox-display::before,
label.hs-form-radio-display::before,
label.hs-form-booleancheckbox-display::before {
  -webkit-appearance: none;
  border-style: solid;
  border-width: thin;
  padding: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

form .hs-form-field>label {
  display: block;
  padding-bottom: 3px;
  font-weight: bold;
  font-size: 16px;
}

form .hs-form-field.hs_phone>label {
  left: 34%;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

.input {
  position: relative;
}


input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
select,
textarea {
  background-color: var(--white_color);
  border-top: none;
  border-left: none;
  border-right: none;
  display: inline-block;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
  }
}

input[type="radio"] {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

input[type="radio"],
input[type="checkbox"] {
  border-color: var(--primary_color);
  -webkit-appearance: none;
  border-style: solid;
  border-width: thin;
  padding: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: .35rem;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: var(--primary_color);
}

input[type="radio"]+label:before,
input[type="checkbox"]+label:before {
  border: 1px solid var(--primary_color);
}

input[type="radio"]:checked+label:before,
input[type="checkbox"]:checked+label:before {
  background: var(--primary_color);
  color: var(--white_color);
}

input[type="radio"]+label:before,
input[type="checkbox"]+label:before {
  content: "\00a0";
  display: inline-block;
  font: 16px/1em sans-serif;
  height: 16px;
  margin: 0 .3em 0 0;
  padding: 0;
  vertical-align: top;
  width: 16px;
}

input[type="radio"]:checked+label:before,
input[type="checkbox"]:checked+label:before {
  content: "\2713";
  text-align: center;
}

/* Slider */
.range-slider__range {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: var(--shadow_color);
  -webkit-appearance: none;
  width: 100%;
  outline: none;
  height: calc (15px - 5px);
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: var(--primary_color);
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.range-slider__range::-moz-range-thumb {
  background: var(--anchor_color);
  width: calc (15px * 2);
  height: calc (15px * 2);
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: var(--grey_color);
}

::-moz-placeholder {
  color: var(--grey_color);
}

:-ms-input-placeholder {
  color: var(--grey_color);
}

:-moz-placeholder {
  color: var(--grey_color);
}

::placeholder {
  color: var(--grey_color);
}

fieldset {
  max-width: 100%;
}

/* Inputs - input-list */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inputs-list>li {
  display: block;
  padding-bottom: 4px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.inputs-list input,
.inputs-list span {
  font-size: 0.875rem;
  vertical-align: middle;
}

/* Inputs - datepicker */

.fn-date-picker .pika-table thead th {
  color: var(--white_color);
}

.fn-date-picker td.is-today .pika-button {
  color: var(--white_color);
}

.fn-date-picker td .pika-button:hover {
  color: var(--white_color);
}

.hs-fieldtype-date .input .hs-dateinput:before {
  content: '\01F4C5';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover {
  border-radius: 0 !important;
}

/* Inputs - file picker */

input[type=file] {
  background-color: transparent;
  border: initial;
  box-shadow: none;
  line-height: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 11px;
  margin: 0 0 15px;
  line-height: 1.3;
}

form .hs-richtext img {
  max-width: 100% !important;
}

form .header {
  background-color: transparent;
  border: none;
}

/* Validation */


/* Validation */

.hs-form-required {
  color: var(--primary_color__dark);
}

.hs-input.invalid.error {
  border: solid 1px var(--primary_color);
}

.hs-error-msg {
  color: var(--primary_color);
  font-weight: bold;
  font-size: 12px;
}

/* GDPR */
.legal-consent-container p {
  white-space: initial;
}
.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-top: 3px;
}
.legal-consent-container .hs-form-booleancheckbox-display>span,
.legal-consent-container .hs-form-booleancheckbox-display>span p {
  font-size: 0.875rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  border: solid 2px transparent;
  height: inherit;
  font-size: 16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 1.375em 1.1875em;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

form input[type=submit]:hover,
form .hs-button:hover {
  cursor: pointer;
  font-size: 16px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 1.375em 1.1875em;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

@media (max-width: 991px) {

  /* Global */
  .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-form,
  .form-style {
    padding: 35px;
  }
}
.horizontal-menu {
  overflow: overlay;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.horizontal-menu::-webkit-scrollbar {
  visibility: hidden;
}
.horizontal-menu a {
  display: inline-block;
}
@media (max-width: 991px) {
  .horizontal-menu {
    overflow: overlay;
    -webkit-overflow-scrolling: touch;
  }
}
.img-bck_squares {
  background-image: url(https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Urbis2020/cadres.svg);
}

.hs_cos_wrapper_type_linked_image,
.hs_cos_wrapper_type_linked_image a {
  height: 100%;
  display: block;
}

.hs_cos_wrapper_type_linked_image {
  padding-left: 22px;
}

.hs_cos_wrapper_type_linked_image {
  position: relative;
}

.hs_cos_wrapper_type_linked_image::before {
  background: var(--primary_color);
  position: absolute;
  content: '';
  top: 20px;
  left: 0;
  width: 40px;
  height: 6px;
  z-index: 2;
}

.hs_cos_wrapper_type_linked_image a::before {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: var(--anchor_color);
  position: absolute;
  content: '';
  top: 35px;
  left: -22px;
  width: 40px !important;
  border-bottom: 0 !important;
  height: 40px;
  z-index: 2;
}

.hs_cos_wrapper_type_linked_image a::after {
  position: absolute;
  z-index: 3;
  height: 20px;
  width: 20px;
  top: 45px;
  left: -12px;
  content: url('https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Iconographie/Autres%20ic%C3%B4nes/click.svg');
}

.hs_cos_wrapper_type_linked_image a:hover::after,
.hs_cos_wrapper_type_linked_image a:focus::after,
.hs_cos_wrapper_type_linked_image a:active::after {
  content: url('https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Iconographie/Autres%20ic%C3%B4nes/click-hover.svg');
}
/*
.hs_cos_wrapper_type_module.widget-type-rich_text img {
width: 80%;
margin-left: 20%;
padding: 20px 0;
}
*/


/* rich text */

.hs_cos_wrapper_type_module.widget-type-rich_text img,
.rich-text-style img {
  position: relative;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20%;
  margin-right: auto;
  max-width: 80%;
  height: auto;
}

.hs_cos_wrapper_type_module.widget-type-rich_text img:before,
.rich-text-style img:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 6px;
  width: 6%;
}
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol {
    margin-left: 20px !important;
}

.hs_cos_wrapper_type_module.widget-type-rich_text ul,
.rich-text-style ul,
.hs_cos_wrapper_type_module.widget-type-rich_text ol,
.rich-text-style ol {
    margin-left: 30px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.rich-text-style ul.socials_sharing,
.hs_cos_wrapper_type_module.widget-type-rich_text ul.socials_sharing {
    margin: 0;
}

.hs_cos_wrapper_type_module.widget-type-rich_text ul li,
.rich-text-style ul li,
ul.rich-text-style li,
.hs_cos_wrapper_type_module.widget-type-rich_text ol li,
.rich-text-style ol li,
ol.rich-text-style li {
    position: relative;
    padding-left: 1.3em;
}

.hs_cos_wrapper_type_module.widget-type-rich_text ul li:not(:last-child),
.rich-text-style ul li:not(:last-child),
ul.rich-text-style li:not(:last-child),
.hs_cos_wrapper_type_module.widget-type-rich_text ol li:not(:last-child),
.rich-text-style ol li:not(:last-child),
ol.rich-text-style li:not(:last-child) {
  margin-bottom:8px;
}

.hs_cos_wrapper_type_module.widget-type-rich_text ul li:before,
.rich-text-style ul li:before,
ul.rich-text-style li:before {
    position: absolute;
    height: 5px;
    width: 5px;
    content: '';
    top: 7px;
    left: calc(1.3em / 2);
    margin: auto;
  background-color: var(--primary_color);
}

.hs_cos_wrapper_type_module.widget-type-rich_text ol li,
.rich-text-style ol li,
ol li {
    color: var(--anchor_color);
    list-style: none;
    margin-bottom: 8px;
    counter-increment: item;
    text-indent: -1.5em;
}

.hs_cos_wrapper_type_module.widget-type-rich_text ol li:before,
.rich-text-style ol li:before,
ol li:before {
    content: counter(item);
    display: inline-block;
    font-weight: 700;
    text-align: right;
    width: 1.5em;
    padding-right: .5em;
}
blockquote,
quote {
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0 10px 0;
    position: relative;
    width: 50%;
    margin: 60px 0 40px 30px;
}

blockquote p,
quote p {
    font-weight: bold;
    text-align: initial !important;
}
/*
blockquote:before,
quote:before {
    position: absolute;
    top: -35px;
    left: -15px;
    font-family: "Font Awesome 5 Free";
    content: url(https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Urbis%20Th%C3%A8me/Assets/quote-right-highlight-1.svg);
    display: block;
    font-weight: 900;
    height: 45px;
    width: 45px;
}
blockquote:after,
quote:after {
    background: var(--primary_color);
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 3px;
    width: 25%;
}
*/
blockquote {
    border-left-color: transparent;
}

@media (max-width: 1200px) {

    blockquote,
    quote {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 992px) {

    blockquote,
    quote {
        font-size: 17px;
        line-height: 24px;
        width: 80%;
    }
}

@media (max-width: 768px) {

    blockquote p,
    quote p {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 576px) {

    blockquote p,
    quote p {
        font-size: 15px;
        line-height: 20px;
    }
}
.socials_sharing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--anchor_color);
}

.social-sharing:hover {
    background-color: var(--primary_color);
}

.social-sharing:active {
    background-color: var(--primary_color__dark);
}

.socials_sharing li a {
    background: var(--anchor_color); 
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-box-shadow: 0 2px 2px var(--shadow_color);
    -moz-box-shadow: 0 2px 2px var(--shadow_color);
    -ms-box-shadow: 0 2px 2px var(--shadow_color);
    -o-box-shadow: 0 2px 2px var(--shadow_color);
    box-shadow: 0 2px 2px var(--shadow_color);
    display: block;
    position: relative;
    height: 30px;
    width: 30px;
    margin: 5px 5px 5px 0;
}

.socials_sharing li a:hover {
    background: var(--primary_color);
    transform: scale(1.1);
}

.socials_sharing li:last-child a {
    margin-right: 0;
}

.socials_sharing li a:before {
    border: 0;
}

.socials_sharing li a img {
    height: 30px;
    width: 30px;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
/* Table */

table {
  overflow-wrap: break-word;
  border-width: 1.5px;
}

/* Table Cells */

th,
td {
  padding: 0.75rem;
  border-style: solid;
  border-width: 1px;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  vertical-align: bottom;
}
.tags {
  display: flex;
  flex-flow: wrap;
}

.tags .tag {
  background: var(--grey_color);
  color: var(--white_color);
  font-size: 12px;
  font-weight: bold;
  padding: 3px 10px;
  margin: 0 3px 5px 0;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  html, body {
    position:relative;
    overflow-x:hidden;
  }
}

body {
  font-family: Lato, sans-serif;
  line-height: 1.4;
  word-break: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
span,
li,
a {
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -ms-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

h1,
h1 span,
.h1,
.h1 span {
  font-size: 20px;
  line-height: 23px;
}

h2,
h2 span,
.h2,
.h2 span {
  font-size: 19px;
  line-height: 22px;

}

h3,
h3 span,
.h3,
.h3 span {
  font-size: 18px;
  line-height: 21px;
}

h4,
h4 span,
.h4,
.h4 span {
  font-size: 17px;
  line-height: 20px;
}

h5,
h5 span,
.h5,
.h5 span {
  font-size: 15px;
  line-height: 18px;
}

h6,
.h6,
h6 span,
.h6 span {
  font-size: 14px;
  line-height: 17px;
}

p,
li,
span {
  font-size: 14px;
  line-height: 18px;
}
li > span.link {
  font-size: 14px;
}

@media (min-width: 992px) {

  h1,
  h1 span,
  .h1,
  .h1 span {
    font-size: 32px;
    line-height: 37px;
  }

  h2,
  h2 span,
  .h2,
  .h2 span {
    font-size: 28px;
    line-height: 33px;
  }

  h3,
  h3 span,
  .h3,
  .h3 span {
    font-size: 25px;
    line-height: 30px;
  }

  h4,
  h4 span,
  .h4,
  .h4 span {
    font-size: 22px;
    line-height: 26px;
  }

  h5,
  h5 span,
  .h5,
  .h5 span {
    font-size: 20px;
    line-height: 25px;
  }

  h6,
  h6 span,
  .h6,
  .h6 span{
    font-size: 18px;
    line-height: 22px;
  }

  p,
  li,
  span {
    font-size: 16px;
    line-height: 20px;
  }

}

/* Rich Text */

.rich-text-style,
.hs_cos_wrapper_type_module.widget-type-rich_text,
.hs_cos_wrapper_type_module.widget-type-header {
  padding-left: 15px;
  padding-right: 15px;
}

.rich-text-style h2,
.hs_cos_wrapper_type_module.widget-type-rich_text h2 {
  padding: 20px 0 5px;
  color: var(--primary_color);
}

.rich-text-style h3,
.hs_cos_wrapper_type_module.widget-type-rich_text h3 {
  padding: 20px 0 10px;
}

.rich-text-style h4,
.hs_cos_wrapper_type_module.widget-type-rich_text h4 {
  padding: 20px 0 5px;
  text-decoration: underline;
}

.rich-text-style h5,
.hs_cos_wrapper_type_module.widget-type-rich_text h5 {
  padding: 20px 0 5px;
  position: relative;
  padding-top: calc(3px * 2);
  margin-top: 15px;
  color: var(--primary_color);
}

.rich-text-style h5::before,
.hs_cos_wrapper_type_module.widget-type-rich_text h5:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 3px;
  width: 5%;
  background: var(--anchor_color);
}

.rich-text-style h6,
.hs_cos_wrapper_type_module.widget-type-rich_text h6 {
  padding: 20px 0 8px 30px;
}

.rich-text-style h6+*,
.hs_cos_wrapper_type_module.widget-type-rich_text h6+* {
  padding-left: 30px;
}

.rich-text-style img:before,
.hs_cos_wrapper_type_module.widget-type-rich_text img:before {
  background: var(--secondary_highlight__color);
}

.rich-text-style p,
.hs_cos_wrapper_type_module.widget-type-rich_text p {
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  .hs-cta-wrapper,
  .hs-cta-node {
    display: block;
    text-align: center;
  }
  .rich-text-style a.cta_button,
  .hs_cos_wrapper_type_module.widget-type-rich_text a.cta_button {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Horizontal rules */

hr {
  background-color: var(--primary_color);
  border: none;
  height: 1.5px;
  width: 50%;
  margin: auto;
}

/* Paragraphs */

p {
  font-size: 1rem;
  line-height: 21px;
}
p > span {
  font-size: 1rem;
}
p > span > span {
  font-size: 1rem!important;
}
strong {
  font-weight: 700;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  position: relative;
  text-decoration: none;
  color: var(--anchor_color);
}

a:hover,
a:focus {
  text-decoration: none;
}

a:hover .btn-read {
  color: var(--primary_color);
}

span.link {
  font-size: 1rem;
}
span.link > a > span{
  font-size: 1rem;
}

/* link style */
span.link > a {
  width: calc(100%);
  padding-bottom: 3px;
  background-image: linear-gradient(transparent calc(100% - 10px), var(--primary_color) 10px);
  background-repeat: no-repeat;
  background-size: 100% 140%;
  -webkit-transition: background-size .2s ease-out;
  -moz-transition: background-size .2s ease-out;
  -ms-transition: background-size .2s ease-out;
  -o-transition: background-size .2s ease-out;
  transition: background-size .2s ease-out;
}
li > span.link > a {
  background-image: linear-gradient(transparent calc(100% - 9px), var(--primary_color) 10px);
}
span.link:hover > a {
  background-size: 100% 137%;
}

/*
.rich-text-style a,
.hs_cos_wrapper_type_module.widget-type-rich_text a,
a.link-style {
display: inline-block;
padding-bottom: 2px;
}

.rich-text-style a:hover,
.hs_cos_wrapper_type_module.widget-type-rich_text a:hover,
a.link-style:hover {
color: var(--primary_color);
}

.rich-text-style a:not(.style-bouton):not(.cta_button):before,
.hs_cos_wrapper_type_module.widget-type-rich_text a:not(.style-bouton):not(.cta_button):before,
a.link-style:before {
border-bottom: solid 1px var(--primary_color);
content: '';
bottom: 0;
position: absolute;
width: 100%;
}

.rich-text-style a:not(.style-bouton):not(.cta_button):hover:before,
.hs_cos_wrapper_type_module.widget-type-rich_text a:not(.style-bouton):not(.cta_button):hover:before,
a.link-style:hover:before {
border-width: 2px;
}
*/
a:hover,
a:focus {
  outline: none;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

/* Code blocks */

code {
  vertical-align: bottom;
}


/* Subscripts and superscripts */

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Generic */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

* {
  outline: none;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}


/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* Objects */
/****************************************************************************************************/
/***************************************** SOMMARY   ************************************************/
/****************************************************************************************************/
/* Color */
/* Border */
/* Box-Shadow */
/* Cursor */
/* Display */
/* Image */
/* Font Size / Style / Weight */
/* Height */
/* Width */
/* Transition / Keyframes */
/* Margin */
/* Padding */
/* Position */
/* Text Align / Decoration / Transform */
/* Z-index */
/* Opacity */
/* Overflow */
/* Line Height */
/* Visibility */

/*****************************************/
/* Color    */
/*****************************************/
/* transparent */
.bck-transparent {
  background-color: transparent;
  background: transparent;
}

/* primary color */
.color-primary {
  color: var(--primary_color);
}
.color-primary_hard {
  color: var(--primary_color) !important;
}
.color-primary__dark {
  color: var(--primary_color__dark);
}

.color-primary__light {
  color: var(--primary_color__light);
}

.bck-color_primary {
  background-color: var(--primary_color);
}

.bck-color_primary__dark {
  background-color: var(--primary_color__dark);
}

.bck-color_primary__light {
  background-color: var(--primary_color__light);
}

.border-primary_color {
  border-color: var(--primary_color);
}

.img-filter_primary__color:before {
  background: var(--primary_color);
}

.icon-primary_color {
  fill: var(--primary_color);
}

/* anchor color */
.color-anchor {
  color: var(--anchor_color);
}

.color-anchor__dark {
  color: var(--anchor_color__dark);
}

.color-anchor__light {
  color: var(--anchor_color__light);
}

.bck-color_anchor {
  background-color: var(--anchor_color);
}

.bck-color_anchor__dark {
  background-color: var(--anchor_color__dark);
}

.bck-color_anchor__light {
  background-color: var(--anchor_color__light);
}

.border-anchor_color {
  border-color: var(--anchor_color);
}

.img-filter_anchor__color:before {
  background: var(--anchor_color);
}

.img-filter_anchor__dark___color:before {
  background: var(--anchor_color);
}

.icon-anchor_color {
  fill: var(--anchor_color);
}

.icon-anchor_color__dark {
  fill: var(--anchor_color__dark);
}

/* primary highlight color */
.color-primary_highlight {
  color: var(--primary_highlight__color);
}

.color-primary_highlight__dark {
  color: var(--primary_highlight__color__dark);
}

.color-primary_highlight__light {
  color: var(--primary_highlight__color);
}

.bck-color_primary_highlight {
  background-color: var(--primary_highlight__color);
}

.bck-color_primary_highlight__dark {
  background-color: var(--primary_highlight__color__dark);
}

.bck-color_primary_highlight__light {
  background-color: var(--primary_highlight__color__light);
}

.border-primary_highlight__color {
  border-color: var(--primary_highlight__color);
}

.img-filter_primary_highlight__color:before {
  background: var(--primary_highlight__color);
}

.icon-primary_highlight__color {
  fill: var(--primary_highlight__color);
}

/* secondary highlight */
.color-secondary_highlight {
  color: var(--secondary_highlight__color);
}

.color-secondary_highlight__dark {
  color: var(--secondary_highlight__color__dark);
}

.color-secondary_highlight__light {
  color: var(--secondary_highlight__color__light);
}

.bck-color_secondary_highlight {
  background-color: var(--secondary_highlight__color);
}

.bck-color_secondary_highlight__dark {
  background-color: var(--secondary_highlight__color__dark);
}

.bck-color_secondary_highlight__light {
  background-color: var(--secondary_highlight__color__light);
}

.border-secondary_highlight__color {
  border-color: var(--secondary_highlight__color);
}

.img-filter_secondary_highlight__color:before {
  background: var(--secondary_highlight__color);
}

.icon-secondary_highlight__color {
  fill: var(--secondary_highlight__color);
}

/* white color */
.color-white {
  color: var(--white_color);
}
.color-white_hard {
  color: var(--white_color) !important;
}

.bck-color_white {
  background-color: var(--white_color);
}

.border-white_color {
  border-color: var(--white_color);
}

.img-filter_white__color:before {
  background: var(--white_color);
}

.icon-white_color {
  fill: var(--white_color);
}

/* black color */
.color-black {
  color: var(--black_color);
}

.bck-color_black {
  background-color: var(--black_color);
}

.border-black_color {
  border-color: var(--black_color);
}

.img-filter_black__color:before {
  background: var(--black_color);
}

.icon-black_color {
  fill: var(--black_color);
}

/* grey color */
.color-grey {
  color: var(--grey_color);
}

.bck-grey_color {
  background-color: var(--grey_color);
}

.border-grey_color {
  border-color: var(--grey_color);
}

.img-filter_grey__color:before {
  background: var(--grey_color);
}

.icon-grey_color {
  fill: var(--grey_color);
}

/* soft grey color */
.color-soft_grey {
  color: var(--soft_grey__color);
}

.bck-soft_grey__color {
  background-color: var(--soft_grey__color);
}

.border-soft_grey__color {
  border-color: var(--soft_grey__color);
}

.img-filter_soft__grey__color:before {
  background: var(--soft_grey__color);
}

.icon-soft_grey__color {
  fill: var(--soft_grey__color);
}

/* blue grey color */
.color-blue_grey {
  color: var(--blue_grey__color);
}

.bck-blue_grey__color {
  background-color: var(--blue_grey__color);
}

.border-blue_grey__color {
  border-color: var(--blue_grey__color);
}

.img-filter_blue__grey__color:before {
  background: var(--blue_grey__color);
}

.icon-blue_grey__color {
  fill: var(--blue_grey__color);
}

/* mega menu grey color */
.color-menu_grey {
  color: var(--mega_menu_grey_color);
}

.bck-menu_grey__color {
  background-color: var(--mega_menu_grey_color);
}

.border-menu_grey__color {
  border-color: var(--mega_menu_grey_color);
}

.img-filter_menu__grey__color:before {
  background: var(--mega_menu_grey_color);
}

.icon-menu_grey__color {
  fill: var(--mega_menu_grey_color);
}

/* shadow color */
.color-shadow {
  color: var(--shadow_color);
}

.bck-shadow {
  background-color: var(--shadow_color);
}

.border-shadow_color {
  border-color: var(--shadow_color);
}

.img-filter_shadow__color:before {
  background: var(--shadow_color);
}

/* shadow color */
.color-shadow_hover {
  color: var(--shadow_hover__color);
}

.bck-shadow_hover {
  background-color: var(--shadow_hover__color);
}

.border-shadow_hover__color {
  border-color: var(--shadow_hover__color);
}

.img-filter_shadow_hover__color:before {
  background: var(--shadow_hover__color);
}

/*****************************************/
/* Border    */
/*****************************************/
/* style */
.border-solid {
  border-style: solid;
}

.border-hidden {
  border-style: hidden;
}

/* width */
.border-medium {
  border-width: medium;
}
.border-2px {
  border-width: 2px;
}
.border-thin {
  border-width: thin;
}

/* radius */
.border-radius-5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.border-radius-6 {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.border-radius-10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.border-radius-30 {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
  }

.border-rounded {
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  border-radius: 150px;
}

/*****************************************/
/* Box-Shadow    */
/*****************************************/
.box {
  -webkit-box-shadow: 0 3px 6px var(--shadow_color);
  -moz-box-shadow: 0 3px 6px var(--shadow_color);
  -ms-box-shadow: 0 3px 6px var(--shadow_color);
  -o-box-shadow: 0 3px 6px var(--shadow_color);
  box-shadow: 0 3px 6px var(--shadow_color);
}

.box-hover:hover {
  -webkit-box-shadow: 0 6px 12px var(--shadow_color);
  -moz-box-shadow: 0 6px 12px var(--shadow_color);
  -ms-box-shadow: 0 6px 12px var(--shadow_color);
  -o-box-shadow: 0 6px 12px var(--shadow_color);
  box-shadow: 0 6px 12px var(--shadow_color);
}

/*****************************************/
/* Cursor    */
/*****************************************/
.pointer {
  cursor: pointer;
}

/*****************************************/
/* Display    */
/*****************************************/
.d-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.d-flex-hard {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-block-hard {
  display: block !important;
}

.d-none {
  display: none;
}

.d-none-hard {
  display: none !important;
}

.d-table-hard {
  display: table-row !important;
}
.space-normal {
  white-space: normal;
}
/*****************************************/
/* Image    */
/*****************************************/
/* img */
.img-obj_contain {
  object-fit: contain;
  object-position: center;
}

.img-obj_cover {
  object-fit: cover;
  object-position: center;
}

/* bck */
.img-bck_contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.img-bck_cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* size */
.img-bck_small {
  min-height: 180px;
}

.img-bck_medium {
  min-height: 200px;
}

.img-bck_big {
  min-height: 220px;
}

/* filter */
.img-filter {
  position: relative;
}

.img-filter:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*****************************************/
/* Font Size / Style / Weight */
/*****************************************/
/* size */
.fz-5 {
  font-size: 5px;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
	font-size: 11px;
  }

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-18 {
  font-size: 18px;
}

.fz-20 {
  font-size: 20px;
}

.fz-25 {
  font-size: 25px;
}

.fz-30 {
  font-size: 30px;
}

.fz-32 {
  font-size: 32px;
}

/* mobile resize */
@media (max-width: 991px) {
  .resize-10 {
    font-size: 10px;
  }
  .resize-11 {
    font-size: 11px;
  }
  .resize-12 {
    font-size: 12px;
  }
  .resize-13 {
    font-size: 13px;
  }
  .resize-14 {
    font-size: 14px;
  }
  .resize-15 {
    font-size: 15px;
  }
  .resize-16 {
    font-size: 16px;
  }
  .resize-17 {
    font-size: 17px;
  }
  .resize-18 {
    font-size: 18px;
  }
  .resize-19 {
    font-size: 19px;
  }
  .resize-20 {
    font-size: 20px;
  }
}

/* weight */
.fw-bold {
  font-weight: bold;
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-normal {
  font-weight: normal;
}

.fs-italic {
  font-style: italic;
}
/*****************************************/
/* Height  */
/*****************************************/
.h-auto {
  height: auto;
}

.h-fit {
  height: fit-content;
}

.h-initial {
  height: initial;
}

.h-min {
  height: min-content;
}

.h-max {
  height: max-content;
}

.h-0 {
  height: 0;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

/* pixel */
.h-1px {
  height: 1px;
}
.h-5px {
  height: 5px;
}

.h-10px {
  height: 10px;
}

.h-15px {
  height: 15px;
}

.h-20px {
  height: 20px;
}

.h-25px {
  height: 25px;
}

.h-30px {
  height: 30px;
}

.h-35px {
  height: 35px;
}

.h-40px {
  height: 40px;
}

.h-50px {
  height: 50px;
}

.h-100px {
  height: 100px;
}

.h-150px {
  height: 150px;
}

.h-175px {
  height: 175px;
}

.h-200px {
  height: 200px;
}

.h-250px {
  height: 250px;
}

.h-300px {
  height: 300px;
}

.h-400px {
  height: 400px;
}

.h-500px {
  height: 500px;
}

/* VH */
.mh-100vh {
  max-height: 100vh;
}

/*****************************************/
/* Width    */
/*****************************************/
.w-auto {
  width: auto;
}

.w-fit {
  width: fit-content;
}

.w-initial {
  width: initial;
}

.w-min {
  width: min-content;
}

.w-max {
  width: max-content;
}

.w-inherit {
	width: inherit;
  }

.w-available {
  width: -webkit-fill-available !important;
}

.w-0 {
  width: 0;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-33 {
  width: 33%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-100 {
  width: 100%;
}
.mw-100 {
  max-width: 100%;
}

/* pixel */
.w-5px {
  width: 5px;
}

.w-10px {
  width: 10px;
}

.w-15px {
  width: 15px;
}

.w-20px {
  width: 20px;
}

.w-25px {
  width: 25px;
}

.w-30px {
  width: 30px;
}

.w-35px {
  width: 35px;
}

.w-40px {
  width: 40px;
}

.w-50px {
  width: 50px;
}

.w-100px {
  width: 100px;
}

.w-150px {
  width: 150px;
}

.w-200px {
  width: 200px;
}

.w-300px {
  width: 300px;
}

.w-500px {
  width: 500px;
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: 100%;
  }
}

/*****************************************/
/* Transition / Keyframes   */
/*****************************************/
/* Transition */
.transition {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Transition SVG */
.transition-svg path {
  -webkit-transition: fill 0.2s ease-out;
  -moz-transition: fill 0.2s ease-out;
  -ms-transition: fill 0.2s ease-out;
  -o-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}

/* TranslateY */
.translateY {
  -webkit-animation: translateY 2s linear infinite alternate;
  animation: translateY 2s linear infinite alternate;
}

@keyframes translateY {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* Smooth Scroll */
.smooth-scroll {
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.6s;
  animation-name: fade;
  animation-duration: 0.6s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/*****************************************/
/* Linear-Gradient    */
/*****************************************/
.gradient,
.gradient-before::before {
  background: var(--primary_highlight__color);
  background: -o-linear-gradient(
    90deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -ms-linear-gradient(
    90deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: linear-gradient(
    90deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
}

.gradient-180,
.gradient-before-180::before {
  background: var(--primary_highlight__color);
  background: -o-linear-gradient(
    180deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -ms-linear-gradient(
    180deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -moz-linear-gradient(
    180deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
  background: linear-gradient(
    180deg,
    var(--primary_highlight__color) 0%,
    var(--secondary_highlight__color) 100%
  );
}

/*****************************************/
/* Margin    */
/*****************************************/
/* margin */
.m-auto {
  margin: auto;
}

.m-initial {
  margin: initial;
}

.m-0 {
  margin: 0;
}

.m-0-hard {
  margin: 0 !important;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

/* margin top */
.mt-auto {
  margin-top: auto;
}

.mt-initial {
  margin-top: initial;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}

.mt-330-- {
  margin-top: -330px;
}

/* margin bottom */
.mb-auto {
  margin-bottom: auto;
}

.mb-initial {
  margin-bottom: initial;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

/* margin left */
.ml-auto {
  margin-left: auto;
}

.ml-initial {
  margin-left: initial;
}

.ml-0 {
  margin-left: 0;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-50 {
  margin-left: 50px;
}

/* margin right */
.mr-auto {
  margin-right: auto;
}

.mr-initial {
  margin-right: initial;
}

.mr-0 {
  margin-right: 0;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-50 {
  margin-right: 50px;
}

/*****************************************/
/* Padding    */
/*****************************************/
/* padding */
.no-col-pad {
	padding-left: 0!important;
	padding-right: 0!important;
}

.p-auto {
  padding: auto;
}

.p-initial {
  padding: initial;
}

.p-0 {
  padding: 0;
}

.p-0-hard {
  padding: 0 !important;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-80 {
  padding: 80px;
}

/* padding top */
.pt-auto {
  padding-top: auto;
}

.pt-initial {
  padding-top: initial;
}

.pt-0 {
  padding-top: 0;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

/* padding bottom */
.pb-auto {
  padding-bottom: auto;
}

.pb-initial {
  padding-bottom: initial;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* padding left */
.pl-auto {
  padding-left: auto;
}

.pl-initial {
  padding-left: initial;
}

.pl-0 {
  padding-left: 0;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-60 {
  padding-left: 60px;
}

.pl-75 {
  padding-left: 75px;
}

/* padding right */
.pr-auto {
  padding-right: auto;
}

.pr-initial {
  padding-right: initial;
}

.pr-0 {
  padding-right: 0;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
	padding-right: 50px;
  }

.pr-150 {
  padding-right: 150px;
}

/*****************************************/
/* Position    */
/*****************************************/
.p-under-header {
  position: fixed;
  /* top: set in js*/
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-initial {
  position: initial;
}

.p-inherit {
  position: inherit;
}

.p-relative {
  position: relative;
}

.p-static {
  position: static;
}

.p-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.top-0 {
  top: 0;
}

.top-5 {
  top: 5px;
}

.top-10 {
  top: 10px;
}

.top-10-- {
  top: -10px;
}

.top-15 {
  top: 15px;
}

.top-15-- {
  top: -15px;
}

.top-20 {
  top: 20px;
}

.top-20-- {
  top: -20px;
}

.top-30 {
  top: 30px;
}

.top-40-- {
  top: -40px;
}

.top-50 {
  top: 50px;
}

.top-150 {
  top: 150px;
}

.right-0 {
  right: 0;
}

.right-5 {
  right: 5px;
}

.right-10 {
  right: 10px;
}

.right-15 {
  right: 15px;
}

.right-15-- {
  right: -15px;
}

.right-20-- {
  right: -20px;
}

.right-25-- {
  right: -25px;
}

.right-40-- {
  right: -40px;
}

.bottom-0 {
  bottom: 0;
}

.bottom-5 {
  bottom: 5px;
}

.bottom-10 {
  bottom: 10px;
}

.left-0 {
  left: 0;
}

.left-5 {
  left: 5px;
}

.left-5-- {
  left: -5px;
}

.left-10 {
  left: 10px;
}

.left-20 {
  left: 20px;
}

.left-20-- {
  left: -20px;
}

.left-30 {
  left: 30px;
}

.left-30-- {
  left: -30px;
}

.left-45 {
  left: 45px;
}

.left-45-- {
  left: -45px;
}

/*****************************************/
/* Text    */
/*****************************************/
/* align */
.txt-center {
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: center;
}

.txt-left {
  text-align: -webkit-left;
  text-align: -moz-left;
  text-align: left;
}

.txt-right {
  text-align: -webkit-right;
  text-align: -moz-right;
  text-align: right;
}

.txt-start {
  text-align: start;
}

.txt-end {
  text-align: end;
}

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

.txt-justify {
  text-align: justify;
}

/* transform */
.txt-lowercase {
  text-transform: lowercase;
}

.txt-capitalize {
  text-transform: capitalize;
}

.txt-uppercase {
  text-transform: uppercase;
}

.txt-underline-hard {
  text-decoration: underline !important;
}

/*****************************************/
/* Z-index    */
/*****************************************/
.z-last {
  z-index: -999;
}

.z-first {
  z-index: 999;
}

.z-popup {
  z-index: 999999999;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-1-- {
  z-index: -1;
}

.z-2 {
  z-index: 2;
}

.z-2-- {
  z-index: -2;
}

.z-3 {
  z-index: 3;
}

.z-3-- {
  z-index: -3;
}

.z-4 {
  z-index: 4;
}

.z-4-- {
  z-index: -4;
}

.z-5 {
  z-index: 5;
}

.z-5-- {
  z-index: -5;
}

.z-6 {
  z-index: 6;
}

.z-6-- {
  z-index: -6;
}

.z-7 {
  z-index: 7;
}

.z-7-- {
  z-index: -7;
}

.z-8 {
  z-index: 8;
}

.z-8-- {
  z-index: -8;
}

.z-9 {
  z-index: 9;
}

.z-9-- {
  z-index: -9;
}

.z-10 {
  z-index: 10;
}

.z-10-- {
  z-index: -10;
}

/*****************************************/
/* Opacity    */
/*****************************************/
.o-initial,
.img-filter_initial:before {
  opacity: initial;
}

.transparent,
.img-filter_0:before {
  opacity: 0;
}

.o-1,
.img-filter_1:before {
  opacity: 0.1;
}

.o-2,
.img-filter_2:before {
  opacity: 0.2;
}

.o-3,
.img-filter_3:before {
  opacity: 0.3;
}

.o-4,
.img-filter_4:before {
  opacity: 0.4;
}

.o-5,
.img-filter_5:before {
  opacity: 0.5;
}

.o-6,
.img-filter_6:before {
  opacity: 0.6;
}

.o-7,
.img-filter_7:before {
  opacity: 0.7;
}

.o-8,
.img-filter_8:before {
  opacity: 0.8;
}

.o-9,
.img-filter_9:before {
  opacity: 0.9;
}

.opaque,
.img-filter_10:before {
  opacity: 1;
}

/*****************************************/
/* Overflow    */
/*****************************************/
.overflow-y-auto {
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}
/*****************************************/
/* Line Height    */
/*****************************************/

.lh-initial {
  line-height: initial;
}

.lh-12 {
  line-height: 1.2;
}

.lh-20px {
  line-height: 20px;
}

.lh-30px {
  line-height: 30px;
}

/*****************************************/
/* Word Break    */
/*****************************************/
.word-keep-all {
  word-break: keep-all;
}

/*****************************************/
/* Visibility    */
/*****************************************/
.hidden {
  visibility: hidden;
}
/*!
* Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin:0;
  padding:0;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) {
  .container-table-lots { /*:has(.optionner)*/
    max-width: 1300px!important;
  }
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  
  margin:0;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-small {
  padding-right: 5px !important;
  padding-left: 5px !important;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1:focus, .col-2:focus, .col-3:focus, .col-4:focus, .col-5:focus, .col-6:focus, .col-7:focus, .col-8:focus, .col-9:focus, .col-10:focus, .col-11:focus, .col-12:focus, .col:focus,
.col-auto:focus, .col-sm-1:focus, .col-sm-2:focus, .col-sm-3:focus, .col-sm-4:focus, .col-sm-5:focus, .col-sm-6:focus, .col-sm-7:focus, .col-sm-8:focus, .col-sm-9:focus, .col-sm-10:focus, .col-sm-11:focus, .col-sm-12:focus, .col-sm:focus,
.col-sm-auto:focus, .col-md-1:focus, .col-md-2:focus, .col-md-3:focus, .col-md-4:focus, .col-md-5:focus, .col-md-6:focus, .col-md-7:focus, .col-md-8:focus, .col-md-9:focus, .col-md-10:focus, .col-md-11:focus, .col-md-12:focus, .col-md:focus,
.col-md-auto:focus, .col-lg-1:focus, .col-lg-2:focus, .col-lg-3:focus, .col-lg-4:focus, .col-lg-5:focus, .col-lg-6:focus, .col-lg-7:focus, .col-lg-8:focus, .col-lg-9:focus, .col-lg-10:focus, .col-lg-11:focus, .col-lg-12:focus, .col-lg:focus,
.col-lg-auto:focus, .col-xl-1:focus, .col-xl-2:focus, .col-xl-3:focus, .col-xl-4:focus, .col-xl-5:focus, .col-xl-6:focus, .col-xl-7:focus, .col-xl-8:focus, .col-xl-9:focus, .col-xl-10:focus, .col-xl-11:focus, .col-xl-12:focus, .col-xl:focus,
.col-xl-auto:focus {
  outline: none;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

@media print {
  .d-print-none {
    display: none ;
  }
  .d-print-inline {
    display: inline ;
  }
  .d-print-inline-block {
    display: inline-block ;
  }
  .d-print-block {
    display: block ;
  }
  .d-print-table {
    display: table ;
  }
  .d-print-table-row {
    display: table-row ;
  }
  .d-print-table-cell {
    display: table-cell ;
  }
  .d-print-flex {
    display: -ms-flexbox ;
    display: flex ;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox ;
    display: inline-flex ;
  }
}

.flex-row {
  -ms-flex-direction: row ;
  flex-direction: row ;
}

.flex-column {
  -ms-flex-direction: column ;
  flex-direction: column ;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse ;
  flex-direction: row-reverse ;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse ;
  flex-direction: column-reverse ;
}

.flex-wrap {
  -ms-flex-wrap: wrap ;
  flex-wrap: wrap ;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap ;
  flex-wrap: nowrap ;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse ;
  flex-wrap: wrap-reverse ;
}

.flex-fill {
  -ms-flex: 1 1 auto ;
  flex: 1 1 auto ;
}

.flex-grow-0 {
  -ms-flex-positive: 0 ;
  flex-grow: 0 ;
}

.flex-grow-1 {
  -ms-flex-positive: 1 ;
  flex-grow: 1 ;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 ;
  flex-shrink: 0 ;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 ;
  flex-shrink: 1 ;
}

.justify-content-start {
  -ms-flex-pack: start ;
  justify-content: flex-start ;
}

.justify-content-end {
  -ms-flex-pack: end ;
  justify-content: flex-end ;
}

.justify-content-center {
  -ms-flex-pack: center ;
  justify-content: center ;
}

.justify-content-between {
  -ms-flex-pack: justify ;
  justify-content: space-between ;
}

.justify-content-around {
  -ms-flex-pack: distribute ;
  justify-content: space-around ;
}

.align-items-start {
  -ms-flex-align: start ;
  align-items: flex-start ;
}

.align-items-end {
  -ms-flex-align: end ;
  align-items: flex-end ;
}

.align-items-center {
  -ms-flex-align: center ;
  align-items: center ;
}

.align-items-baseline {
  -ms-flex-align: baseline ;
  align-items: baseline ;
}

.align-items-stretch {
  -ms-flex-align: stretch ;
  align-items: stretch ;
}

.align-content-start {
  -ms-flex-line-pack: start ;
  align-content: flex-start ;
}

.align-content-end {
  -ms-flex-line-pack: end ;
  align-content: flex-end ;
}

.align-content-center {
  -ms-flex-line-pack: center ;
  align-content: center ;
}

.align-content-between {
  -ms-flex-line-pack: justify ;
  align-content: space-between ;
}

.align-content-around {
  -ms-flex-line-pack: distribute ;
  align-content: space-around ;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch ;
  align-content: stretch ;
}

.align-self-auto {
  -ms-flex-item-align: auto ;
  align-self: auto ;
}

.align-self-start {
  -ms-flex-item-align: start ;
  align-self: flex-start ;
}

.align-self-end {
  -ms-flex-item-align: end ;
  align-self: flex-end ;
}

.align-self-center {
  -ms-flex-item-align: center ;
  align-self: center ;
}

.align-self-baseline {
  -ms-flex-item-align: baseline ;
  align-self: baseline ;
}

.align-self-stretch {
  -ms-flex-item-align: stretch ;
  align-self: stretch ;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row ;
    flex-direction: row ;
  }
  .flex-sm-column {
    -ms-flex-direction: column ;
    flex-direction: column ;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse ;
    flex-direction: row-reverse ;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse ;
    flex-direction: column-reverse ;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap ;
    flex-wrap: wrap ;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap ;
    flex-wrap: nowrap ;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse ;
    flex-wrap: wrap-reverse ;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto ;
    flex: 1 1 auto ;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 ;
    flex-grow: 0 ;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 ;
    flex-grow: 1 ;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 ;
    flex-shrink: 0 ;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 ;
    flex-shrink: 1 ;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start ;
    justify-content: flex-start ;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end ;
    justify-content: flex-end ;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center ;
    justify-content: center ;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify ;
    justify-content: space-between ;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute ;
    justify-content: space-around ;
  }
  .align-items-sm-start {
    -ms-flex-align: start ;
    align-items: flex-start ;
  }
  .align-items-sm-end {
    -ms-flex-align: end ;
    align-items: flex-end ;
  }
  .align-items-sm-center {
    -ms-flex-align: center ;
    align-items: center ;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline ;
    align-items: baseline ;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch ;
    align-items: stretch ;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start ;
    align-content: flex-start ;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end ;
    align-content: flex-end ;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center ;
    align-content: center ;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify ;
    align-content: space-between ;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute ;
    align-content: space-around ;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch ;
    align-content: stretch ;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto ;
    align-self: auto ;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start ;
    align-self: flex-start ;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end ;
    align-self: flex-end ;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center ;
    align-self: center ;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline ;
    align-self: baseline ;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch ;
    align-self: stretch ;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row ;
    flex-direction: row ;
  }
  .flex-md-column {
    -ms-flex-direction: column ;
    flex-direction: column ;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse ;
    flex-direction: row-reverse ;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse ;
    flex-direction: column-reverse ;
  }
    -ms-flex-wrap: wrap ;
    flex-wrap: wrap ;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap ;
    flex-wrap: nowrap ;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse ;
    flex-wrap: wrap-reverse ;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto ;
    flex: 1 1 auto ;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 ;
    flex-grow: 0 ;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 ;
    flex-grow: 1 ;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 ;
    flex-shrink: 0 ;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 ;
    flex-shrink: 1 ;
  }
  .justify-content-md-start {
    -ms-flex-pack: start ;
    justify-content: flex-start ;
  }
  .justify-content-md-end {
    -ms-flex-pack: end ;
    justify-content: flex-end ;
  }
  .justify-content-md-center {
    -ms-flex-pack: center ;
    justify-content: center ;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify ;
    justify-content: space-between ;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute ;
    justify-content: space-around ;
  }
  .align-items-md-start {
    -ms-flex-align: start ;
    align-items: flex-start ;
  }
  .align-items-md-end {
    -ms-flex-align: end ;
    align-items: flex-end ;
  }
  .align-items-md-center {
    -ms-flex-align: center ;
    align-items: center ;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline ;
    align-items: baseline ;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch ;
    align-items: stretch ;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start ;
    align-content: flex-start ;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end ;
    align-content: flex-end ;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center ;
    align-content: center ;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify ;
    align-content: space-between ;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute ;
    align-content: space-around ;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch ;
    align-content: stretch ;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto ;
    align-self: auto ;
  }
  .align-self-md-start {
    -ms-flex-item-align: start ;
    align-self: flex-start ;
  }
  .align-self-md-end {
    -ms-flex-item-align: end ;
    align-self: flex-end ;
  }
  .align-self-md-center {
    -ms-flex-item-align: center ;
    align-self: center ;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline ;
    align-self: baseline ;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch ;
    align-self: stretch ;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row ;
    flex-direction: row ;
  }
  .flex-lg-column {
    -ms-flex-direction: column ;
    flex-direction: column ;
  }
  .flex-lg-row-reverse {
    -ms-flex-flow: row-reverse ;
    flex-flow: row-reverse ;
  }
  .flex-lg-row-reverse-flow {
    -ms-flex-flow: row-reverse ;
    flex-flow: row-reverse ;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse ;
    flex-direction: column-reverse ;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap ;
    flex-wrap: wrap ;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap ;
    flex-wrap: nowrap ;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse ;
    flex-wrap: wrap-reverse ;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto ;
    flex: 1 1 auto ;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 ;
    flex-grow: 0 ;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 ;
    flex-grow: 1 ;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 ;
    flex-shrink: 0 ;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 ;
    flex-shrink: 1 ;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start ;
    justify-content: flex-start ;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end ;
    justify-content: flex-end ;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center ;
    justify-content: center ;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify ;
    justify-content: space-between ;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute ;
    justify-content: space-around ;
  }
  .align-items-lg-start {
    -ms-flex-align: start ;
    align-items: flex-start ;
  }
  .align-items-lg-end {
    -ms-flex-align: end ;
    align-items: flex-end ;
  }
  .align-items-lg-center {
    -ms-flex-align: center ;
    align-items: center ;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline ;
    align-items: baseline ;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch ;
    align-items: stretch ;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start ;
    align-content: flex-start ;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end ;
    align-content: flex-end ;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center ;
    align-content: center ;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify ;
    align-content: space-between ;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute ;
    align-content: space-around ;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch ;
    align-content: stretch ;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto ;
    align-self: auto ;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start ;
    align-self: flex-start ;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end ;
    align-self: flex-end ;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center ;
    align-self: center ;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline ;
    align-self: baseline ;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch ;
    align-self: stretch ;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row ;
    flex-direction: row ;
  }
  .flex-xl-column {
    -ms-flex-direction: column ;
    flex-direction: column ;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse ;
    flex-direction: row-reverse ;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse ;
    flex-direction: column-reverse ;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap ;
    flex-wrap: wrap ;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap ;
    flex-wrap: nowrap ;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse ;
    flex-wrap: wrap-reverse ;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto ;
    flex: 1 1 auto ;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 ;
    flex-grow: 0 ;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 ;
    flex-grow: 1 ;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 ;
    flex-shrink: 0 ;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 ;
    flex-shrink: 1 ;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start ;
    justify-content: flex-start ;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end ;
    justify-content: flex-end ;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center ;
    justify-content: center ;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify ;
    justify-content: space-between ;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute ;
    justify-content: space-around ;
  }
  .align-items-xl-start {
    -ms-flex-align: start ;
    align-items: flex-start ;
  }
  .align-items-xl-end {
    -ms-flex-align: end ;
    align-items: flex-end ;
  }
  .align-items-xl-center {
    -ms-flex-align: center ;
    align-items: center ;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline ;
    align-items: baseline ;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch ;
    align-items: stretch ;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start ;
    align-content: flex-start ;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end ;
    align-content: flex-end ;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center ;
    align-content: center ;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify ;
    align-content: space-between ;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute ;
    align-content: space-around ;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch ;
    align-content: stretch ;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto ;
    align-self: auto ;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start ;
    align-self: flex-start ;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end ;
    align-self: flex-end ;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center ;
    align-self: center ;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline ;
    align-self: baseline ;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch ;
    align-self: stretch ;
  }
}

/*# sourceMappingURL=bootstrap-grid.css.map */
/* Modules natifs container */
/*
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-form,
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-rich_text,
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-cta,
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_linked_image,
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_header {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_linked_image {
  margin-left: 20px;
  margin-right: 20px;
}
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_header {
  display: block;
}

.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module a.hs-button {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
  width: fit-content;
}

.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module .description-progress-bar__composant {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
*/

.content-wrapper {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

/* Le padding des sections est fix dans le design system
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 20px;
}
*/

.dnd-section {
  padding-top: 45px;
  padding-bottom: 45px;
}

@media (max-width: 1200px) {
  .dnd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .dnd-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media (max-width: 576px) {
  .dnd-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.dnd-section>.row-fluid {
  margin: 0 auto;
  max-width: 1200px;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
/* Scroll bar */

/* Body Wrapper */

.body-wrapper {
    margin-top: 110px;
}

@media (min-width: 992px) {
    .body-wrapper {
        margin-top: 95px;
    }

}

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before,
.row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before,
.container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before,
    .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 28px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before,
    .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 28px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Responsible Visibility */

.layout-phone {
    display: block;
}

.layout-phone-hard {
    display: block !important;
}

.layout-desktop {
    display: none;
}

.layout-desktop-hard {
    display: none !important;
}

@media (min-width: 992px) {

    .layout-phone {
        display: none;
    }

    .layout-phone-hard {
        display: none !important;
    }

    .layout-desktop {
        display: block;
    }

    .layout-desktop-hard {
        display: block !important;
    }

}

/* Templates */
/* filter */

section.blog-filter .horizontal-menu a {
  margin-right: 10px;
  margin-bottom: 10px;
}

section.blog-filter .horizontal-menu a:hover {
  border-color: var(--primary_color);
}

section.blog-filter .horizontal-menu a:active,
section.blog-filter .horizontal-menu a.active {
  color: var(--white_color);
  background: var(--anchor_color);
  border-color: var(--anchor_color__dark);
}

@media (max-width: 991px) {
  section.blog-filter .horizontal-menu a {
    width: fit-content;
  }

  section.blog-filter .horizontal-menu:not(:last-child) a {
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

@media (min-width: 992px) {

  section.blog-filter .horizontal-menu {
    white-space: normal;
    flex-wrap: wrap;
  }

}

/* CTA */

.blog-list-cta {
  background-color: var(--anchor_color);
  padding: 85px;
  height: 100%;
}

.blog-list-cta h3 {
  padding-bottom: 15px;
  color: var(--white_color);
}

/* Blog List */

@media (max-width: 991px) {

  .blog-list-wrapper h2 {
    text-align: center;
  }

  .blog-list-wrapper .container:last-child,
  .blog-list-wrapper .container:last-child .col-cta {
    padding: 0;
  }

}

/* Blog pagination */

.blog-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Lato, sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  text-align: center;
}

.blog-pagination__link {
  color: var(--anchor_color);
  border: 2px solid transparent;
  border-radius: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin: 0 0.5rem;
  padding: 0.25rem 0.4rem;
  text-decoration: none;
}

.blog-pagination__link--active {
  font-weight: bold;
  border: 2px solid var(--primary_color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}

.blog-pagination__link--active:after,
.blog-pagination__prev-link:after,
.blog-pagination__next-link:after {
  background-color: var(--anchor_color);
}

.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid var(--primary_color);
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.blog-pagination__prev-link {
  text-align: right;
  margin-left: 0;
}

.blog-pagination__next-link {
  text-align: left;
  margin-right: 0;
}

.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  border: solid 2px var(--anchor_color);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  padding: 5px;
}

.blog-pagination__last-link,
.blog-pagination__first-link {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.blog-pagination__last-link svg path,
.blog-pagination__first-link svg path {
  fill: none;
  stroke: var(--grey_color);
}

.blog-pagination__first-link svg {
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled,
.blog-pagination__last-link--disabled,
.blog-pagination__first-link--disabled {
  cursor: default;
  pointer-events: none;
}

.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  border: solid 2px var(--grey_color);
}

.blog-pagination__prev-link--disabled svg path,
.blog-pagination__next-link--disabled svg path {
  fill: var(--grey_color);
}

.blog-pagination__last-link--disabled svg,
.blog-pagination__first-link--disabled svg {
  border: solid 2px var(--blue_grey__color);
}

.blog-pagination__last-link--disabled svg path,
.blog-pagination__first-link--disabled svg path {
  fill: none;
  stroke: var(--blue_grey__color);
}

@media (max-width: 991px) {
  .blog-pagination__link {
    margin: 0;
  }
}

/* Header Banner */

section.blog-post-header .container-content span.bar {
  background: var(--primary_highlight__color);
}

section.blog-post-header .container-content .read-timer svg path {
  fill: var(--secondary_highlight__color);
}

/* Blog post */

section.blog-post-header {
  background-color: var(--blue_grey__color);
}

.blog-post img {
  width: 100%;
  max-width:100%;
  margin:10px 0;
}

/* Blog Post Header */

section.blog-post-header {
  padding: 0;
}

section.blog-post-header .blog-post-header_col {
  padding: 0;
  margin: 0;
}

section.blog-post-header .container-breadcrumbs {
  padding: 0;
}

section.blog-post-header .container-content .-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
}

section.blog-post-header .container-content .tags {
  padding-top: 40px;
}

section.blog-post-header .container-content h1 {
  padding: 5px 0;
}

section.blog-post-header .container-content .post-content {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

section.blog-post-header .container-content .author-name,
section.blog-post-header .container-content .post-timestamp {
  font-weight: bold;
  padding-left: 5px;
}

section.blog-post-header .container-content span.bar {
  margin: 0 10px;
  height: 2px;
  width: 10px;
}

section.blog-post-header .container-content .read-timer {
  display: flex;
  align-items: center;
  font-size: 12px;
  padding-top: 20px;
  padding-bottom: 60px;
}

section.blog-post-header .container-content .read-timer svg {
  margin-right: 5px;
}

@media (max-width: 991px) {

  section.blog-post-header section,
  section.blog-post-header .container-content .tags {
    padding: 0;
  }

  section.blog-post-header .row {
    flex-flow: column-reverse;
  }

  section.blog-post-header .blog-post-header_col {
    min-height: 200px;
  }

  section.blog-post-header .container-content .-heading {
    flex-flow: column-reverse;
  }

  section.blog-post-header .container-content .post-content {
    padding: 10px 0;
    font-size: 12px;
  }

  section.blog-post-header .container-content .read-timer {
    padding-bottom: 20px;
  }
}

/* CTA blog */

.blog-post-cta {
  padding: 30px 25px;
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: var(--primary_color);
  -webkit-box-shadow: 0 3px 6px var(--shadow_color);
  -moz-box-shadow: 0 3px 6px var(--shadow_color);
  -ms-box-shadow: 0 3px 6px var(--shadow_color);
  -o-box-shadow: 0 3px 6px var(--shadow_color);
  box-shadow: 0 3px 6px var(--shadow_color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.blog-post-cta h6,
.blog-post-cta p {
  color: var(--white_color);
  padding: 0;
}

.blog-post-cta svg path {
  fill: var(--white_color);
}

@media (max-width: 991px) {
  .blog-post-cta {
    justify-content: center;
    text-align: center;
  }

  .blog-post-cta p {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* CTA Sticky */

#hs_cos_wrapper_blog-post-cta-sticky {
  position:-webkit-sticky; 
  position:sticky; 
  top:150px;
}

#hs_cos_wrapper_blog-post-cta-sticky > div {

}

/* Resume */

.blog-post-resume h2,
.blog-post-resume h3,
.blog-post-resume h4,
.blog-post-resume h5,
.blog-post-resume h6 {
  color: var(--anchor_color);
}

.blog-post-resume h2::before,
.blog-post-resume h3::before,
.blog-post-resume h4::before,
.blog-post-resume h5::before,
.blog-post-resume h6::before {
  background-color: var(--primary_color);
}

/* Related post */

section.related_blog_posts {
  background-color: var(--blue_grey__color);
}
.body-container--ressources .page-ressources-filters div.btn-category {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;    
  padding-left: 25px;
  padding-right: 25px;
}
.body-container--ressources .page-ressources-filters div.btn-category label {
  position: relative;
  z-index: 0;
  color: var(--anchor_color);
}
.body-container--ressources .page-ressources-filters div.btn-category input[type="checkbox"] {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin-right: 0;
  background: transparent;
  border-color: var(--anchor_color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.body-container--ressources .page-ressources-filters div.btn-category:not(:last-child) {
  margin-right: 10px;
}

/* Focus & Active*/
.body-container--ressources .page-ressources-filters div.btn-category.checked input[type="checkbox"] {
  background: var(--anchor_color);
  border-color: var(--anchor_color);
}
.body-container--ressources .page-ressources-filters div.btn-category.checked label {
  color: var(--white_color);
  z-index: 2;
}

/* Hover */
@media (hover: hover) {
  .body-container--ressources .page-ressources-filters div.btn-category:hover:not(.checked) input[type="checkbox"] {
    border-color: var(--primary_color);
  }
}

/* Media Queries */
@media screen and (min-width: 992px) {
  .body-container--ressources .page-ressources-filters .horizontal-menu {
    padding-left: 15px;
  }
}

.body-container--ressources .page-ressources-listing .card-blog {
  min-height: 100px;
}
/* Error pages */

.error-page {
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.error-page:before {
  color: #F3F6F9;
  content: attr(data-error);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

.error-page__heading {
  margin-bottom: 1rem;
}

/* System pages */

.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 3rem 1.4rem;
}

.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}

.systems-page form input {
  max-width: 100%;
}

#email-prefs-form .header {
  background-color: transparent;
}

/* Subscription Preferences */
.systems-page-subscription-preferences {
	padding: 7rem 1.4rem;
}
.systems-page-subscription-preferences .page-header  {
	margin-bottom: 30px;
}
.systems-page-subscription-preferences .page-header h1,
.systems-page-backup-unsuscribe .page-header h1,
.systems-page-suscription-confirmation .page-header h2 {
	margin-bottom: 30px;
}
.systems-page-subscription-preferences #email-prefs-form .item-inner {
    padding-bottom: 30px;
}
.systems-page-subscription-preferences #email-prefs-form .item-inner p {
    margin-left: 23px;
}
.systems-page-subscription-preferences #submitbutton {
	margin-top: 30px;
}
#email-prefs-form .header {
    margin-bottom: 15px;
}

.systems-page-backup-unsuscribe,
.systems-page-suscription-confirmation {
	padding: 12rem 1.4rem;
}
.systems-page-backup-unsuscribe .backup-unsubscribe input[type=email] {
    margin-bottom: 30px;
}

.systems-page .success {
	margin: 3.4rem 0;
}

/* Search pages */

.hs-search-field__bar {
  position: relative;
}

.hs-search-field__suggestions {
  background-color: #FFF;
  max-width: 360px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
}

.hs-search-results {
  margin-top: 1.4rem;
}

ul.hs-search-results__listing li {
  margin-bottom: 1.4rem;
}

.hs-search-results__title {
  color: #494A52;
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}

.hs-search-results__description {
  padding-top: 0.7rem;
}

.hs-search-highlight {
  font-weight: bold;
}

.hs-search-results__pagination a {
  color: #0270E0;
}

/* Password prompt */

.password-prompt input[type=password] {
  display: block;
  height: auto !important;
  margin-bottom: 1.4rem;
}

/* Backup unsubscribe */

.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Tool */


















/***************************************************************************/
/****************************   1. Variables   *****************************/
/***************************************************************************/

/* 1a. Containers */




/* 1b. Colors */


















:root {
  /* theme */
  --primary_color: #E75428;
  --primary_color__dark: #B23712;
  --primary_color__light: #E55532;
  --anchor_color: #00384F;
  --anchor_color__dark: #022D3E;
  --anchor_color__light: #13485D;
  --primary_highlight__color: #1DB8BA;
  --secondary_highlight__color: #51B584;
  /* system */
  --white_color: #FFFFFF;
  --black_color: #000000;
  --grey_color: #76798B;
  --soft_grey__color: #F7F6F5;
  --blue_grey__color: #F8FAFD;
  --mega_menu_grey_color: #00000029;
  --shadow_color: #0000001A;
  --shadow_hover__color: #00000026;
}

/* 1c. Typography */













/* 1d. Buttons */


















/* 1e. Forms */













/* 1f. Tables */











/* 1g. Site header */




header .hs-menu-wrapper>ul li.cta-mobile {
  -webkit-box-shadow: 0 3px 12px #00000029; -moz-box-shadow: 0 3px 12px #00000029; box-shadow: 0 3px 12px #00000029;
}
header .mobile-layout { 
  border-bottom-color: #00000029; 
}
header .mobile-layout-submenu .breadcrumbs { 
  -webkit-box-shadow: 0 3px 6px #00000029; -moz-box-shadow: 0 3px 6px #00000029; box-shadow: 0 3px 6px #00000029; 
}
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 {
  background: 

  
  
    
  


  rgba(255, 255, 255, 1)

;
}
header .hs-menu-wrapper>ul li.hs-menu-depth-1>ul li.hs-menu-depth-2 ul li {
  background: 

  
  
    
  


  rgba(255, 255, 255, 1)

; 
}

@media screen and (min-width: 992px) {
  /* Header */
  header { 
    -webkit-box-shadow: 0 3px 6px #00000029; -moz-box-shadow: 0 3px 6px #00000029; box-shadow: 0 3px 6px #00000029;
  }
  header .mega-menu-row { 
    background: 

  
  
    
  


  rgba(255, 255, 255, 1)

; -webkit-box-shadow: 0 3px 6px ht: 5px; ; -moz-box-shadow: 0 3px 6px #00000029; box-shadow: 0 3px 6px #00000029;
  }
  header .mega-menu-row a.list-title { 
    color: #00384F; 
  }
  header .mega-menu-row ul:not(:first-child) li a::before {
    background-color: #00000029; 
  }
}

/* 1h. Site footer */



/***************************************************************************/
/****************************   2. Typography   ****************************/
/***************************************************************************/

html {
  font-size: 16px;
}

body {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #00384F;
  width: 100%;
  max-width: 100%;
}

/* Paragraphs */

p {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Headings */

h1,
h1 span,
.h1,
.h1 span{
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

h2,
h2 span,
.h2,
.h2 span{
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

h3,
h3 span,
.h3,
.h3 span {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

h4,
h4 span {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

h5,
h5 span {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

h6,
h6 span,
.h6,
.h6 span {
  font-family: Raleway, sans-serif; font-style: normal; font-weight: 700; text-decoration: none;
  color: #00384F;
  font-size: ;
}

/***************************************************************************/
/****************************   3. Buttons   *******************************/
/***************************************************************************/

.hs-button {
  background-color: 

  
  
    
  


  rgba(231, 84, 40, 1)

;
  border: 2px solid #E75428;
  border-radius: 6px;
  color: #FFFFFF;
  padding: .875em 1.1875em;
}

.hs-button:hover,
.hs-button:focus {
  background-color: 

  
  
    
  


  rgba(231, 84, 40, 1)

;
  border: 2px solid #B23712;
  color: #FFFFFF;
}

.hs-button:active {
  background-color: 

  
  
    
  


  rgba(178, 55, 18, 1)

;
}

/* Secondary & ghost */
.hs-button.btn-secondary {
  background-color: #00384F;
  border: 2px solid #00384F;
  border-radius: ;
}
.hs-button.btn-secondary:hover,
.hs-button.btn-secondary:focus {
  background-color: #13485D;
  border: 2px solid #022D3E;
}

.hs-button.btn-secondary:active{
  background-color: #022D3E;
}

.hs-button.btn-secondary_ghost {
  border-radius: ;
}

/***************************************************************************/
/****************************   4. Forms   *********************************/
/***************************************************************************/

/* Title */
form h3,
.hs_cos_wrapper.form-title {
  color: #000000;
}

/* Labels */
form .hs-form-field>label,
label.hs-form-checkbox-display, 
label.hs-form-radio-display, 
label.hs-form-booleancheckbox-display {
  color: #000000;
}

/* Help text - legends */

form legend {
  color: #000000;
}

/* Inputs */

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
textarea {
  border-bottom: 1px solid #E75428;
  color: #000000;
}

select { 
  border-bottom: 1px solid #E75428;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
textarea:focus {
  border-bottom: solid 2px #E75428;
}

select:focus { 
  border-bottom: solid 2px #E75428;
  color: #000000;
}


/* Inputs - datepicker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #000000;
}

.fn-date-picker td.is-selected .pika-button {
  background: #000000;
}

.fn-date-picker td .pika-button:hover {
  background-color:#000000 !important;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: #E75428;
  color: #FFFFFF;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background-color: #E75428;
  color: #FFFFFF;
  border: solid 2px #B23712;
  -webkit-box-shadow: 0 3px 6px #00000026;
  -moz-box-shadow: 0 3px 6px #00000026;
  box-shadow: 0 3px 6px #00000026;
}

form input[type=submit]:focus,
form .hs-button:focus,
form input[type=submit]:active,
form .hs-button:active {
  background-color: #B23712;
}

/***************************************************************************/
/****************************   6. Tables   ********************************/
/***************************************************************************/

table {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1)

;
  border-color: #00384F;
}

table tr:first-child td {
  background-color: 

  
  
    
  


  rgba(0, 56, 79, 1)

;
  color: #FFFFFF;
}

table tr:first-child td:not(:last-child) {
  border-right-color: #FFFFFF ;
}

table tr:first-child td {
  border-bottom-color: #00384F ;
}

th,
td {
  border-color: 

  
  
    
  


  rgba(247, 246, 245, 1)

;
  color: #00384F;
}

thead th,
thead td {
  background-color: 

  
  
    
  


  rgba(0, 56, 79, 1)

;
  border-bottom-color: #00384F;
  color: #FFFFFF;
}

tfoot td {
  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1)

;
  color: #00384F;
}

tbody + tbody {
  border-top-color: #00384F;
}

/*
@media (max-width:992px) {
  div[data-hs-responsive-table="true"] { overflow:auto; }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar-track{ border-radius: 10px; background-color:#F7F6F5; }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar{ height: 12px; border-radius: 10px; background-color:#F7F6F5; }
  div[data-hs-responsive-table="true"]::-webkit-scrollbar-thumb{ border-radius: 10px; background-color:#E75428; }
  table tr td { min-width:150px!important; }
}
*/

@media screen and (max-width:992px) {
	table tr th,
	table tr td {
	  max-width: 300px!important;
	}
  }

  [data-hs-responsive-table="true"] {
	overflow: auto;
	padding-bottom: 30px;
	transition: all .3s ease-out;
  }
  
  [data-hs-responsive-table="true"]::-webkit-scrollbar-track {
	border-radius: 4px;
	height: 2px;
	background: linear-gradient(to bottom, #fff 0%, #fff, #76798B 50%, #fff, #fff 100%);
  }
  
  [data-hs-responsive-table="true"]::-webkit-scrollbar {
	height: 8px;
	border-radius: 4px;
	background-color: #00384F;
  }
  
  [data-hs-responsive-table="true"]::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: #E75428;
  }

/***************************************************************************/
/****************************   7. Site Header   ***************************/
/***************************************************************************/

/***************************************************************************/
/***************************   8. Site footer   ****************************/
/***************************************************************************/

.footer {
  background-color: 

  
  
    
  


  rgba(248, 250, 253, 1)

;
}

/* Footer Content */

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6
.footer p,
.footer a,
.footer div,
.footer span {
  color: #00384F;
}


/***************************************************************************/
/*****************************  9. Modules   *******************************/
/***************************************************************************/

/*****************************************/
/* Poster And Slick    */
/*****************************************/
section.poster-testimonial .poster-testimonial_poster {
  border-top: 11px solid;
}

section.poster-testimonial .poster-testimonial_poster .poster-testimonial_poster__list {
  border-bottom: solid .5px var(--grey_color);
}

section.poster-testimonial .poster-testimonial_poster:before,
section.poster-testimonial .card-slick p:before {
  content: '';
  position: absolute;
  left: 0;
}

section.poster-testimonial .poster-testimonial_poster:before {
  width: 100%;
  height: 11px;
  top: -11px;
}

section.poster-testimonial .card-slick p:before {
  height: 5px;
  width: 10px;
  top: calc(50% - 5px/2);
  bottom: 0;
}

section.poster-testimonial .card-slick .img_container:after {
  position: absolute;
  content: url('https://6466416.fs1.hubspotusercontent-na1.net/hubfs/6466416/Assets%20-%20Urbis2020/cadres.svg');
  top: 118px;
  left: 250px;
  z-index: -1;
}

section.poster-testimonial .card-slick .img-bck_cover {
  height: 284px;
  width: 284px;
}

section.poster-testimonial .poster-testimonial_poster h3:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 3px;
  left: -15px;
}

section.poster-testimonial .poster-testimonial_poster .poster-testimonial_poster__list .list_content>div {
  height: 50px;
  min-width: 70px;
  max-width: 100px;
}

section.poster-testimonial .poster-testimonial_poster .cta_container a,
section.poster-testimonial .poster-testimonial_poster .cta_container a:hover {
  border-width: 2px;
}

/* Slick */
section.poster-testimonial .card-slick p,
section.poster-testimonial .card-slick span {
  padding-left: 20px;
}

section.poster-testimonial .slick-prev,
section.poster-testimonial .slick-next {
  display: none !important;
}

@media (min-width: 992px) {
  section.poster-testimonial .poster-testimonial_poster {
    padding: 45px 60px;
    margin-bottom: 0;
  }
}

/*****************************************/
/* Last Articles    */
/*****************************************/
section.blog-last-articles .horizontal-menu {
  white-space: normal;
  flex-wrap: nowrap;
}

section.blog-last-articles .card-blog > div:first-child {
  width: 102px;
  height: 102px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 400px) {
  section.blog-last-articles .horizontal-menu {
    justify-content:center;
  }
}

@media (min-width: 992px) {

  section.blog-last-articles .card-blog > div:first-child { 
    width: 140px; 
    height: 140px; 
    margin-top: 15px; 
    margin-bottom: 15px; 
  }

}

/*****************************************/
/* Help Me    */
/*****************************************/
@media (min-width: 992px) {

  section.help-me .img-bck_cover {
    height: 150px;
    margin-right: 0;
  }

  section.help-me .ctas-container {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  section.help-me .cta-container:not(:last-child) {
    margin-right: 15px;
  }

}

/*****************************************/
/* Description Progress Bar - Composant  */ 
/*****************************************/
div.description-progress-bar__composant:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 7px;
  top: -14px;
  left: 0;
}

@media (min-width: 992px) {
  div.description-progress-bar__composant {
    margin-bottom: 0;
  }
}

/*****************************************/
/* Number rounded    */
/*****************************************/
.description-progress-circle__composant .progress {
  text-align: center;
  margin: 20px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.description-progress-circle__composant .progress-circle {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.description-progress-circle__composant .progress-circle-back,
.description-progress-circle__composant .progress-circle-prog {
  cx: 50%;
  cy: 50%;
  r: 28%;
}

.description-progress-circle__composant .progress-circle-back {
  stroke: var(--blue_grey__color);
  fill: none;
  stroke-width: 10px;
}

.description-progress-circle__composant .progress-circle-prog {
  stroke: var(--secondary_highlight__color);
  fill: none;
  stroke-width: 10px;
  stroke-dasharray: 0 999;
  stroke-dashoffset: 0px;
  transition: stroke-dasharray .7s linear 0s;
}

.description-progress-circle__composant .progress-text {
  position: absolute;
  top: 60px;
}

.description-progress-circle__composant .progress-text p {
  font-size: 12px;
}

.description-progress-circle__composant span {
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: center;
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}


/*****************************************/
/* Opération - Hero Banner + Price and Plan    */
/*****************************************/

section.operation-hero-banner .slick-dots li button,
section.operation-price-and-plan .slick-dots li button {
  border: solid 1px var(--white_color);
}

section.operation-hero-banner .slick-dots li.active button,
section.operation-price-and-plan .slick-dots li.slick-active button {
  border: solid 1px var(--primary_color);
}

section.operation-hero-banner .slider-nav .slick-list.draggable,
section.operation-price-and-plan .slider-nav .slick-list.draggable {
  padding: 0 !important;
  width: 80%;
}

section.operation-hero-banner img.slider-img-main,
section.operation-price-and-plan img.slider-img-main {
  max-height: 600px;
}

section.operation-hero-banner img.slider-img-dots,
section.operation-price-and-plan img.slider-img-dots {
  height: 100px;
  width: 170px !important;
}

section.operation-hero-banner img.slider-img-dots.slick-current,
section.operation-price-and-plan img.slider-img-dots.slick-current {
  border-bottom: solid 6px var(--primary_color);
}

/*****************************************/
/* Opération - Hero Banner    */
/*****************************************/

@media (min-width:992px) {
  section.operation-hero-banner .content-mobile {
    flex-flow: column;
  }

  section.operation-hero-banner .content-mobile p {
    font-size: initial;
    flex-flow: row;
    width: 100%;
  }

  section.operation-hero-banner .content-mobile-item span {
    margin-left: 5px;
  }

}

@media (max-width:991px) {
  section.operation-hero-banner {
    padding: 0;
    background-image: none !important;
  }

  section.operation-hero-banner::before {
    display: none;
  }

  section.operation-hero-banner img.img-featured {
    max-height: 320px;
  }

  section.operation-hero-banner .container-mobile {
    padding: 0;
  }

}

/*****************************************/
/* Opération - Navigation    */ 
/*****************************************/
@media (max-width: 991px) {
  section.operation-navigation a.cta_button {
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  section.operation-navigation a:not(.cta_button) {
    padding-top: 7px;
  }
}

section.operation-navigation a.cta_button {
  margin-top: 10px;
  margin-bottom: 10px;
}

section.operation-navigation a:not(.cta_button) {
  border-top: solid 8px transparent;
  align-items: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.operation-navigation a:not(.cta_button).active {
  border-top: solid 8px var(--primary_color);
}

section.operation-navigation .cta-container a {
  padding-top: 10px;
  padding-bottom: 10px;
}

section.operation-navigation .cta-container a p {
  font-size: 13px;
}

section.operation-navigation .cta-container img {
  display: none;
}

section.operation-navigation .container-fixed.p-fixed {
  margin-top: 0;
}

@media (min-width: 992px) {

  section.operation-navigation a:hover:not(.cta_button) {
    color: var(--primary_color);
  }

  section.operation-navigation a:hover:not(.cta_button) {
    text-decoration: underline;
  }

  section.operation-navigation .container-fixed {
    margin-top: 0;
  }

  section.operation-navigation .horizontal-menu {
    margin-top: 0;
  }

  section.operation-navigation .horizontal-menu a {
    margin-right: 0;
    margin-left: 0;
  }

}

/*****************************************/
/* Opération - Price and Plan    */
/*****************************************/
section.operation-price-and-plan a.btn-video:hover {
  background: var(--primary_color);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

section.operation-price-and-plan img.slider-img-main {
  max-height: 600px;
}

section.operation-price-and-plan object.iframe-container > iframe,
section.operation-hero-banner object.iframe-container > iframe {
  width: 100%;
  height: auto;
  min-height: 400px;
}

section.operation-price-and-plan object.iframe-container,
section.operation-price-and-plan object.iframe-container iframe,
section.operation-price-and-plan object.iframe-container html,
section.operation-price-and-plan object.iframe-container html iframe,
section.operation-hero-banner object.iframe-container,
section.operation-hero-banner object.iframe-container iframe,
section.operation-hero-banner object.iframe-container html,
section.operation-hero-banner object.iframe-container html iframe {
  height: 100%;
  width: 100%;
}

section.operation-price-and-plan object.iframe-container-modal,
section.operation-hero-banner object.iframe-container-modal {
  min-height: 65vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width:991px) {
  section.operation-price-and-plan .container-custom,
  section.operation-price-and-plan .col-custom {
    padding: 0;
  }

  section.operation-price-and-plan .col-resize {
    padding-right: 30px;
    padding-left: 30px;
  }

}

@media (min-width:992px) {
  section.operation-price-and-plan .right-content {
    padding-top: 0;
  }
  section.operation-price-and-plan .right-content .resize-14 {
    font-size: 14px;
  }
  section.operation-price-and-plan .right-content .resize-32 {
    font-size: 32px;
  }

}

/*****************************************/
/* Opération - Description    */
/*****************************************/
@media (max-width: 991px) {
  section.operation-project-description .img-right {
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }

}

@media (min-width: 992px) {
  section.operation-project-description h2 {
    padding-bottom: 30px;
  }

  section.operation-project-description h3 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  section.operation-project-description .img-left {
    text-align: -webkit-right;
    text-align: -moz-right;
    text-align: right;
  }

}

/*****************************************/
/* Opération - Stage of Projet Filter    */ 
/*****************************************/
section.operation-stage-of-project__filter .horizontal-menu a {
  flex: none;
}

@media (max-width:991px) {
  section.operation-stage-of-project__filter .mobile-full-width {
    padding-left: 0;
    padding-right: 0;
  }
  section.operation-stage-of-project__filter .container-resize {
    padding-left: 30px;
    padding-right: 30px;
  }

}

@media (min-width:992px) {
  section.operation-stage-of-project__filter .row {
    flex-flow: row-reverse;
    flex-wrap: wrap;
  }

  section.operation-stage-of-project__filter h2 {
    margin-top: 0;
  }

  section.operation-stage-of-project__filter .horizontal-menu {
    padding-left: 0;
    justify-content: flex-start;
  }

}

/*****************************************/
/* Opération - Stage of Projet Data    */ 
/*****************************************/
section.operation-stage-of-project_data .disposotif-tag {
  position: absolute;
  width: 100%;
  top: 0;
}
section.operation-stage-of-project_data .disposotif-tag span {
  color: var(--white_color);
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.col-annexe-data > .flex-column { max-width:100%; }
.col-annexe-data .annexe-container span { width:auto!important; white-space:normal; }

@media (max-width:991px) {
  section.operation-stage-of-project_data .filter-row {
    width: 80vw;
    align-items: baseline;
  }

  section.operation-stage-of-project_data .mobile-full-width {
    padding-left: 0;
    padding-right: 0;
  }
  section.operation-stage-of-project_data .container-resize {
    padding-left: 30px;
    padding-right: 30px;
  }

  section.operation-stage-of-project_data .flex {
    display: -webkit-box;
  }

  section.operation-stage-of-project_data .align {
    text-align: left;
  }

  section.operation-stage-of-project_data .left {
    justify-content: flex-start;
  }

  section.operation-stage-of-project_data .resize {
    font-size: 12px;
  }

  section.operation-stage-of-project_data .resize-small {
    font-size: 11px;
  }

  section.operation-stage-of-project_data .max {
    width: max-content;
  }

  section.operation-stage-of-project_data .margin-top {
    margin-top: 20px;
  }

}

@media (min-width:992px) {

  section.operation-stage-of-project_data .filter-row .annexe-container {
    align-items: center;
    flex-flow: column;
  }

  section.operation-stage-of-project_data .filter-row .annexe-container > p {
    margin-right: 10px;
  }

  section.operation-stage-of-project_data .horizontal-menu {
    display: block;
  }

  section.operation-stage-of-project_data h3 {
    padding-bottom: 15px;
  }

  section.operation-stage-of-project_data .filter-wrapper {
    margin-top: 0;
  }

  section.operation-stage-of-project_data .filter-container {
    padding-left: 0;
    padding-right: 0;
  }

  section.operation-stage-of-project_data .filter-container .row {
    padding-top: 20px;
  }

  section.operation-stage-of-project_data .bold-mobile {
    font-weight: initial;
  }

  section.operation-stage-of-project_data .disposotif-tag {
    height: 100%;
    left: -19px;
    top: 0;
    font-size: 14px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }

  section.operation-stage-of-project_data .disposotif-tag span {
    padding-left: 5px;
    padding-right: 5px;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
  }
}

/*****************************************/
/* Opération - Card    */ 
/*****************************************/
section.card-operation .card-operation_live .cta-container a {
  line-height: 1.6;
  padding: 22px 19px;
}

section.card-operation .img-obj_cover {
  min-height: 230px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

@media (min-width: 992px) {
  section.card-operation h2 {
    padding-bottom: 30px;
  }
  section.card-operation .card-operation_live__col {
    margin-bottom: 0;
  }
}

/*****************************************/
/* Modal    */
/*****************************************/
html.contact-popup_opened,
html.pinel-popup_opened,
html.header-contact-popup_opened,
html.operation-navigation-contact-popup_opened,
html.plan-popup_opened,
html.video-popup_opened,
html.diaporama-popup_opened,
html.pp-diaporama-popup_opened,
html.exterior-popup_opened,
html.interior-popup_opened,
html.diaporama-popup_opened .diaporama-popup,
html.pp-diaporama-popup_opened .pp-diaporama-popup,
html.video-popup_opened .video-popup,
html.exterior-popup_opened .exterior-popup,
html.interior-popup_opened .interior-popup {
  overflow: hidden;
}

html.pinel-popup_opened .pinel-popup,
html.header-contact-popup_opened .header-contact-popup,
html.plan-popup_opened .plan-popup,
html.operation-navigation-contact-popup_opened .operation-navigation-contact-popup,
html.diaporama-popup_opened .diaporama-popup,
html.pp-diaporama-popup_opened .pp-diaporama-popup,
html.video-popup_opened .video-popup,
html.exterior-popup_opened .exterior-popup,
html.interior-popup_opened .interior-popup {
  display: block;
  z-index: 1000;
  overflow-x: hidden;
}
html.plan-popup_opened .plan-popup form .inputs-list,
html.pinel-popup_opened .pinel-popup form .inputs-list,
html.header-contact-popup_opened .header-contact-popup form .inputs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html.contact-popup_opened .contact-popup,
html.pinel-popup_opened .pinel-popup,
html.header-contact-popup_opened .header-contact-popup {
  z-index: 99999999999999999999999;
}

.contact-popup,
.pinel-popup,
.header-contact-popup,
.operation-navigation-contact-popup,
.plan-popup,
.diaporama-popup,
.pp-diaporama-popup,
.video-popup,
.exterior-popup ,
.interior-popup {
  background: rgba(0, 56, 79, .75);
}

.diaporama-popup .slick-prev, .diaporama-popup .slick-next,
.pp-diaporama-popup .slick-prev, .pp-diaporama-popup .slick-next,
.exterior-popup .slick-prev, .exterior-popup .slick-next,
.interior-popup .slick-prev, .interior-popup .slick-next {
  border: solid 2px var(--white_color);
}

.diaporama-popup .slick-prev:hover, .diaporama-popup .slick-next:hover,
.pp-diaporama-popup .slick-prev:hover, .pp-diaporama-popup .slick-next:hover,
.exterior-popup .slick-prev:hover, .exterior-popup .slick-next:hover,
.interior-popup .slick-prev:hover, .interior-popup .slick-next:hover {
  border: solid 2px var(--primary_color);
}

.diaporama-popup .slick-prev svg path, .diaporama-popup .slick-next svg path,
.pp-diaporama-popup .slick-prev svg path, .pp-diaporama-popup .slick-next svg path,
.exterior-popup .slick-prev svg path, .exterior-popup .slick-next svg path,
.interior-popup .slick-prev svg path, .interior-popup .slick-next svg path {
  fill: var(--white_color);
}

.slock-dot-img {
  background: transparent;
  height: 200px;
  width: 200px;
  border: none;
}

/* Overflow */
@media screen and (max-width: 991px) {
  .exterior-popup .overlay {
    overflow-x: overlay;
    height: 100%;
  }
  .plan-popup_closer {
    top: -40px;
  }
}

/*****************************************/
/* Pillar Content    */ /* Mobile First / Atomic Design en cours ici */
/*****************************************/
section.pillar-content .navigation-horizontal a:after {
  position: absolute;
  content: '';
  top: -7px;
  left: 0;
  height: 12px;
  width: 12px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

section.pillar-content .navigation-horizontal a.actived,
section.pillar-content .navigation-horizontal a:hover {
  font-weight: bold;
}

section.pillar-content .navigation-horizontal a:hover:after,
section.pillar-content .navigation-horizontal a.actived:after {
  top: -10px;
  height: 18px;
  width: 18px;
}

section.pillar-content .navigation-horizontal a:last-child {
  border-color: transparent;
}

@media (max-width: 992px) {

  section.pillar-content .navigation-horizontal {
    width: 60%;
    margin: auto;
    padding: 0;
  }

  section.pillar-content .navigation-horizontal a {
    font-size: 12px;
    border-top: none;
    border-left: solid 1px var(--grey_color);
    margin: 0;
    padding: 0 0 20px 15px;
  }

  section.pillar-content .navigation-horizontal a:after {
    top: 0;
    left: -7px;
  }

  section.pillar-content .navigation-horizontal a.actived:after {
    top: 0;
    left: -10px;
  }

}

/* Navigation Vertical */
section.pillar-content .navigation-vertical li a:after {
  position: absolute;
  content: '';
  top: 0;
  left: -20px;
  height: 10px;
  width: 10px;
}

section.pillar-content .navigation-vertical li a.actived {
  font-weight: bold;
}

section.pillar-content .navigation-vertical li a.actived:after {
  left: -25px;
  padding:8px;
  font-size: 12px;
  height: 18px;
  width: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

section.pillar-content .navigation-vertical li:nth-last-child(2),
section.pillar-content .navigation-vertical li:last-child,
section.pillar-content .navigation-vertical ul.socials_sharing li {
  border-width: 0;
  background: var(--white_color);
}

section.pillar-content .navigation-vertical ul.socials_sharing li a:after {
  display: none;
}

@media (max-width: 992px) {

  section.pillar-content .navigation-vertical {
    display: none;
  }
}

/*****************************************/
/* Form   */
/*****************************************/
section.section-form {
  padding-left: 45px;
  padding-right: 45px;
}
section.section-form .row {
  padding-top: 40px;
  padding-left: 70px;
  padding-right: 60px;
  padding-bottom: 50px;
}
section.section-form form .actions {
  text-align: -webkit-right;
  text-align: -moz-right;
  text-align: right;
}

section.section-form form h3 {
  text-align: -webkit-left;
  text-align: -moz-left;
  text-align: left;
}

@media (max-width:991px) {
  section.section-form {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.section-form .row {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.section-form h1,
  section.section-form h2 {
    font-size: 19px;
  }
  section.section-form img {
    width: 35px;
  }
  section.section-form input[type="submit"] {
    width: 100%;
  }
}

/*****************************************/
/* Hero Banner LP   */
/*****************************************/
section.hero-banner_lp .form-margin-responsive {
  margin-top: -330px;
}

section.hero-banner_lp form input[type="submit"] {
  width: 100%;
  font-size: 16px;
  padding: 1.375em 1.1875em;
}


@media (max-width: 991px) {
  section.hero-banner_lp .form-margin-responsive {
    margin-top: 0;
  }

  section.hero-banner_lp .content {
    padding-bottom: 25px;
  }

}

/*****************************************/
/* Hero Banner Pillar   */
/*****************************************/
section.hero-banner_pillar .hero-banner_pillar__top-block {
  padding-right: 40px;
  padding-left: 80px;
}

section.hero-banner_pillar .hero-banner_pillar__bottom-block {
  padding-right: 150px;
  padding-left: 80px;
}

@media (max-width: 991px) {

  section.hero-banner_pillar {
    display: inline-block;
  }

  section.hero-banner_pillar .hero-banner_img {
    height: 180px;
    margin-bottom: -80px;
  }

  section.hero-banner_pillar .hero-banner_pillar__top-block {
    padding-right: 40px;
    padding-left: 40px;
  }

  section.hero-banner_pillar .hero-banner_pillar__top-block h1 {
    margin-top: 100px;
    margin-bottom: 30px;
  }

  section.hero-banner_pillar .hero-banner_pillar__bottom-block {
    padding-right: 40px;
    padding-left: 40px;
    margin-bottom: 40px;
  }
}

/*****************************************/
/* Hero Banner   */
/*****************************************/
section.hero-banner {
  margin-bottom: 400px;
}

section.hero-banner div.search_bar {
  margin-bottom: -400px;
}

@media (min-width: 1140px) {
  section.hero-banner {
    margin-bottom: 0;
  }

  section.hero-banner .titles {
    margin-top: 100px;
  }

  section.hero-banner div.search_bar {
    margin-bottom: 0;
  }
}

/*
section.hero-banner .container {
max-width: 100%;
}

section.hero-banner .hero-banner_img {
height: 500px;
}

@media (max-width: 1140px) {
section.hero-banner {
padding-bottom: 0;
padding-top: 30px;
}

section.hero-banner .hero-banner_title-block {
width: 100%;
padding-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}

section.hero-banner .hero-banner_img {
height: 230px;
}
}
*/

/*****************************************/
/* Image Description   */
/*****************************************/
section.image-description .image-description_content:before,
section.image-description .image-description_line::before {
  content: '';
  position: absolute;
  left: -20%;
  width: 40%;
  top: 10px;
  height: 6px;
}

section.image-description .image-description_img {
  min-height: 450px;
}

@media (max-width: 991px) {
  section.image-description .image-description_img {
    min-height: 170px;
  }

  section.image-description .image-description_content {
    padding: 0;
  }

  section.image-description .image-description_content:before {
    display: none;
  }

  section.image-description p {
    margin-top: 0;
    padding: 0;
    width: 50%;
    margin-left: auto;
  }
}

/*****************************************/
/* Last Residence   */
/*****************************************/
section.last-residence .horizontal-menu {
  white-space: normal;
}
@media (min-width: 991px) { 
  section.last-residence div.card-residence-col {
    margin-bottom: 20px;
  }
  section.last-residence .horizontal-menu {
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
/*****************************************/
/* Image Text   */
/*****************************************/
section.image-text img {
  height: 370px;
}

section.image-text .cta_button {
  width: fit-content;
}

@media (max-width: 991px) {
  section.image-text img {
    height: auto;
    width: 100%;
  }
}

/*****************************************/
/* Pillar CTA   */
/*****************************************/
section.pillar-cta .row {
  align-items: center;
}

section.pillar-cta img {
  margin: 15px 0;
  height: auto;
  width: 100%;
}

section.pillar-cta h2,
section.pillar-cta p {
  padding-bottom: 14px;
}

section.pillar-cta .cta_container {
  margin-top: 14px;
  width: fit-content;
}

section.pillar-cta .pillar-cta_border-top {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

@media (max-width: 991px) {

  section.pillar-cta h2,
  section.pillar-cta p {
    padding-bottom: 0;
  }

  section.pillar-cta .row:first-child {
    justify-content: center;
  }

  section.pillar-cta img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  section.pillar-cta .cta_container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

/*****************************************/
/* Search Bar   */
/*****************************************/
div.search_bar form input[type="radio"],
div.search_bar form input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

div.search_bar form input[type="submit"] {
  margin-top: 0;
  height: auto;
  padding: 14px 19px;
  width: 100%;
}

div.search_bar form .cell.budget input {
  border-top: solid 1px var(--soft_grey__color);
  border-left: solid 1px var(--soft_grey__color);
  border-right: solid 1px var(--soft_grey__color);
  height: 24px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

/* slider */
/*
div.search_bar form .range_slider {
width: 100%;
}

div.search_bar form .range-slider__range:hover {
opacity: 1;
}

div.search_bar form .range-slider__value {
font-weight: bold;
}
*/
/* slider */

@media (min-width: 1140px) { 

  div.search_bar form { 
    -webkit-box-shadow: 0 3px 6px var(--shadow_color);
    -moz-box-shadow: 0 3px 6px var(--shadow_color);
    -ms-box-shadow: 0 3px 6px var(--shadow_color);
    -o-box-shadow: 0 3px 6px var(--shadow_color);
    box-shadow: 0 3px 6px var(--shadow_color);
    border: solid 0.5px var(--grey_color);
    flex-flow: row;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  div.search_bar form .cell {
    padding: 0 1em;
    border: none;
    margin-bottom: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
  }

  div.search_bar form .cell:last-child {
    padding-right: 10px;
  }

  div.search_bar form .cell:nth-child(1),
  div.search_bar form .cell:nth-child(2),
  div.search_bar form .cell:nth-child(3) { 
    border-right: solid 1px var(--grey_color);
  }

  div.search_bar form .cell .cell_type_wrapper {
    margin-left: 21px;
    justify-content: end;
  }

}

/*****************************************/
/* Search Result   */
/*****************************************/
section.search_result .row {
  justify-content: center;
}

section.search_result h4 {
  padding-bottom: 20px;
}

section.search_result h4 span {
  font-weight: 700;
}

section.search_result .card-container {
  margin-bottom: 20px;
}

@media (max-width: 991px) {

  section.search_result .card-container {
    margin-bottom: 0;
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (min-width: 992px) {
  section.search_result .container {
    max-width: 1240px !important;
  }
}