body {
  background-color: var(--bs-white);
}

a {
  color: #B98E85;
}

a:hover {
  color: #640811;
}

body textarea:focus,
body textarea.form-control:focus,
body select:focus,
body select.form-control:focus,
body input.form-control:focus,
body input[type=text]:focus,
body input[type=password]:focus,
body input[type=email]:focus,
body input[type=number]:focus,
body [type=text].form-control:focus,
body [type=password].form-control:focus,
body [type=email].form-control:focus,
body [type=tel].form-control:focus,
body [contenteditable].form-control:focus {
  box-shadow: inset 0 0 5px #ddd !important;
}

body .hidden {
  display: none;
}

body .alert {
  padding: 12px 14px;
  border-radius: 8px;
}

body .alert button {
  background-color: transparent;
  border: 0;
}

body .alert a {
  background-color: #BDAA8D;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: var(--bs-white);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 25px;
  margin-right: 15px;
}

body .alert .col img {
  margin-right: 15px;
}

body .alert .col span {
  font-size: 15px;
  line-height: normal;
  color: --bs-dark;
  font-weight: 400;
}

body .alert .col span strong {
  color: #BDAA8D;
}

body header .container .row {
  padding-top: 15px;
  padding-bottom: 15px;
}

body header .container .row ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

body header .container .row ul li {
  list-style: none;
  padding-left: 0;
  display: inline-block;
}

body header .container .row .col-9 ul {
  display: flex;
  gap: 105px;
}

.img-table {
  width:80px;
  object-fit: contain;
  border: 1px solid var(--bs-brand-secondary);
}

body header .container .row .col-9 ul li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bs-dark);
  line-height: 28px;
}

body header .container .row .col-3 ul {
  display: flex;
  gap: 25px;
}

body header li.has-submenu .sub_menu {
  display: none;
  position: absolute;
  background: #f1ede7;
  padding: 14px;
  transition: display 1s ease;
}

body header li.has-submenu:hover a {
  font-weight: bold !important;
  color: var(--bs-brand-primary) !important;
}

body header li.has-submenu:hover .sub_menu {
  display: block !important;
  width: 250px;
}

body header li.has-submenu {
  width: 125px;
}

body header li.has-submenu .sub_menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
}

body header li.has-submenu .sub_menu ul li:hover a {
  font-weight: bold !important;
  color: var(--bs-brand-primary) !important;
}

body header li.has-submenu .sub_menu ul li a {
  font-weight: 400 !important;
  text-transform: none !important;
  color: var(--bs-dark) !important;
}

body header input.searchInput {
  position: absolute;
  right: 35px;
  top: 1px;
  width: 150px;
  border-radius: 6px;
  padding: 5px 12px;
  border: 1px solid #DEE2E6;
  color: #ADB5BD;
  outline: none;
}

body header .search {
  position: relative;
  display: none;
}

body header .search.open {
  display: block;
}

#results {
  position: absolute;
  left: -157px;
  width: 290px;
  height: 250px;
  top: 45px;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #bdaa8d;
  overflow-y: scroll;
  display: none;
}

#results ul {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

#results::-webkit-scrollbar {
  width: 5px;
}

/* Track */
#results::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
#results::-webkit-scrollbar-thumb {
  background: #640811;
}

body footer {
  background-color: var(--bs-brand-primary);
  padding: 0;
  padding-top: 44px;
}

body footer .container h4 {
  font-size: 36px;
  color: var(--bs-brand-secondary);
  line-height: normal;
  font-weight: 700;
}

body footer .container p {
  font-size: 16px;
  color: #E3DBD0;
  line-height: normal;
  font-weight: 400;
}

body footer .container form textarea,
body footer .container form input {
  height: 48px;
  border: none;
}

body footer .container form textarea::placeholder,
body footer .container form input::placeholder {
  color: var(--bs-brand-primary);
  opacity: 1;
  /* Firefox */
}

body footer .container form textarea::-ms-input-placeholder,
body footer .container form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: var(--bs-brand-primary);
}

body footer .container form textarea:active,
body footer .container form textarea:hover,
body footer .container form input:active,
body footer .container form input:hover {
  outline-color: transparent !important;
  box-shadow: none !important;
}

body footer .container form button {
  font-size: 16px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 700;
  background-color: var(--bs-brand-secondary);
  border: none;
  border-radius: 50px;
}

body footer .container form button:active,
body footer .container form button:hover {
  outline-color: transparent !important;
  box-shadow: none !important;
  border: none;
  background-color: var(--bs-brand-secondary) !important;
  border: var(--bs-brand-secondary) !important;
}

body footer .container .col form input {
  width: 40%;
}

body footer .container ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  gap: 35px;
}

body footer .container ul li {
  list-style: none;
  padding-left: 0;
  display: inline-block;
}

body footer .container ul li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  color: #E3DBD0;
  line-height: 28px;
}

body footer .container ul li span {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  font-style: italic;
  color: #E3DBD0;
  line-height: 28px;
}

body footer .container .partner p {
  font-size: 14px;
  font-weight: 400;
  /*text-transform: capitalize;*/
  text-decoration: none;
  color: #E3DBD0;
  line-height: 28px;
}

body footer .container .partner .logo {
  /*background-color: var(--bs-white);*/
  height: 85px;
  padding: 10px;
}

body footer .container .partner .logo img {
  width: 175px;
  /*-webkit-filter: brightness(0) invert(1); 
  filter: brightness(0) invert(1);*/
}

body .py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

body .hero h1 {
  font-size: 120px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 500;
}

body .hero p {
  font-size: 32px;
  color: var(--bs-brand-secondary);
  line-height: normal;
  font-weight: 500;
}

body .intro-box .col-md-12 {
  background-color: var(--bs-brand-primary);
  padding: 10px;
}

body .intro-box .col-md-12 .header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body .intro-box .col-md-12 .header button {
  background-color: transparent;
  border: none;
}

body .intro-box .col-md-12 .header button img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(21%) saturate(182%) hue-rotate(3deg) brightness(112%) contrast(89%);
}

body .intro-box .col-md-12 .body .col-7 h2 {
  font-size: 32px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .intro-box .col-md-12 .body .col-7 p,
body .intro-box .col-md-12 .body .col-7 a {
  font-size: 21px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 400;
  line-height: 36px;
}

body .intro-box .col-md-12 .body .col-7 a {
  text-decoration: underline;
}

body .intro-box .col-md-12 .body .video {
  background-image: url("/assets/img/sheltervideo_s.gif");
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

body .intro-box .col-md-12 .footer h2 {
  font-size: 32px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .intro-box .col-md-12 .footer p,
body .intro-box .col-md-12 .footer a {
  font-size: 21px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 400;
  line-height: 36px;
}

body .intro-box .col-md-12 .footer a {
  text-decoration: underline;
}

body .intro-box .col-md-12 .footer .icons-wrapper {
  padding-bottom: 15px;
}

body .intro-box .col-md-12 .footer .icons-wrapper .icon {
  background-color: var(--bs-brand-secondary);
  margin: 20px;
  text-align: center;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

body .intro-box .col-md-12 .footer .icons-wrapper .icon h3 {
  font-size: 40px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

body .intro-box .col-md-12 .footer .icons-wrapper .icon h4 {
  font-size: 21px;
  color: var(--bs-brand-primary);
  line-height: 36px;
  font-weight: 400;
}

body .intro-box .col-md-12 .footer .icons-wrapper .icon .element {
  background-color: var(--bs-brand-primary);
  width: 98px;
  min-height: 98px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: -49px;
}

body .editions {
  background-color: var(--bs-brand-primary);
  padding: 10px;
}

.editions .badge-overlay,
.thematic .badge-overlay {
  position: absolute;
  left: 0%;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
  -webkit-transition: width 1s ease, height 1s ease;
  -moz-transition: width 1s ease, height 1s ease;
  -o-transition: width 1s ease, height 1s ease;
  transition: width 0.4s ease, height 0.4s ease;
}

.editions .top-left,
.thematic .top-left {
  position: absolute;
  top: 0;
  left: 0;
  color: #640811;
  font-size: 20px;
  text-transform: uppercase;
  -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
  -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
  transform: translateX(-30%) translateY(0%) rotate(-45deg);
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}

.editions .badge,
.thematic .badge {
  background: #BDAA8D;
}

.editions .badge::before,
.editions .badge::after,
.thematic .badge::before,
.thematic .badge::after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 -4px;
  width: 100%;
  height: 100%;
  background: inherit;
  min-width: 55px;
}

.editions .badge::before,
.thematic .badge::before {
  right: 100%;
}

.editions .badge::after,
.thematic .badge::after {
  left: 100%;
}

body .editions h2 {
  font-size: 40px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .editions p {
  font-size: 16px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 300;
  line-height: 36px;
}

body .editions p.muted {
  color: #B98E85;
  margin-bottom: 0;
}

body .editions .edition {
  width: 95%;
  /*height: 100%;*/
  background-size: cover;
  background-position: center center;
  background-color: var(--bs-white);
  position: relative;
}

body .editions .edition img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body .editions .edition .overlay {
  background-color: rgba(189, 170, 141, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  transition: 0.5s;
  padding: 15px;
  position: absolute;
  top: 0px;
}

body .editions .edition .overlay h6 {
  margin-bottom: 0;
  font-size: 24px;
  color: var(--bs-white);
  font-weight: 700;
  text-align: center;
}

body .editions .edition .overlay:hover {
  opacity: 1;
}

body .editions .edition.minimal {
  /*height: 238px;*/
  width: 23%;
}

body .editions .edition.minimal .overlay h6 {
  font-size: 16px;
}

.projects .col-6 img {
  width: 100%;
}

body .projects {
  padding: 10px;
}

body .projects h2 {
  font-size: 40px;
  color: var(--bs-dark-primary);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .projects h5 {
  font-size: 20px;
  color: #9A5E55;
  line-height: normal;
  font-weight: 700;
  text-transform: capitalize;
}

body .projects p {
  font-size: 16px;
  color: var(--bs-dark);
  line-height: normal;
  font-weight: 300;
  line-height: 36px;
}

body .projects p.muted {
  color: #B98E85;
  margin-bottom: 0;
}

body .projects .edition {
  width: 355px;
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-color: var(--bs-white);
}

body .projects .edition .overlay {
  background-color: rgba(189, 170, 141, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 15px;
  cursor: pointer;
  transition: 0.5s;
}

body .projects .edition .overlay h6 {
  margin-bottom: 0;
  font-size: 24px;
  color: var(--bs-white);
  font-weight: 700;
}

body .projects .edition .overlay:hover {
  opacity: 1;
}

body .projects .edition.minimal {
  height: 240px;
  width: 170px;
}

body .projects .edition.minimal .overlay h6 {
  font-size: 16px;
}

body .editions .edition.minimal,body .thematic .edition.minimal {
  aspect-ratio: 1/1.414 !important;
}

body .editions .edition, body .thematic .edition{
  aspect-ratio: 1/1.444 !important;
}

body .thematic {
  background-color: #978B82;
  padding: 10px;
}

body .thematic h2 {
  font-size: 40px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .thematic p {
  font-size: 16px;
  color: var(--bs-white);
  line-height: normal;
  font-weight: 300;
  line-height: 36px;
}

body .thematic p.muted {
  color: #B98E85;
  margin-bottom: 0;
}

.thematic a,
.editions a {
  text-decoration: none;
}

body .thematic .edition {
  width: 95%;
  /*height: 100%;*/
  background-size: cover;
  background-position: center center;
  background-color: var(--bs-white);
  position: relative;
  aspect-ratio: 1/1.414;
}

body .thematic .edition img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
}

body .thematic .edition .overlay {
  background-color: rgba(189, 170, 141, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 15px;
  cursor: pointer;
  transition: 0.5s;
  position: absolute;
  top: 0px;
}

body .thematic .edition .overlay h6 {
  margin-bottom: 0;
  font-size: 24px;
  color: var(--bs-white);
  font-weight: 700;
  text-align: center;
}

body .thematic .edition .overlay:hover {
  opacity: 1;
}

body .thematic .edition.minimal {
  /*height: 238px;*/
  width: 23%;
  aspect-ratio: 1/1.414;
}

body .thematic .edition.minimal .overlay h6 {
  font-size: 16px;
}

body .case-study {
  padding: 10px;
}

body .case-study h2 {
  font-size: 40px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .case-study p {
  font-size: 16px;
  color: var(--bs-dark);
  line-height: normal;
  font-weight: 300;
  line-height: 36px;
}

body .case-study p.muted {
  color: #B98E85;
  margin-bottom: 0;
}

.form-control {
  padding: 0.75rem;
}

#vmap {
  width: 100%;
  height: 712px;
}

.case-study .heatmap span#ligne {
  border-left: 1px solid #343a40;
  transform: rotate(10deg);
  margin: 0 10px;
}

body .case-study .heatmap {
  margin-top: -200px;
  margin-left: 0;
  background: white !important;
  z-index: 1;
  position: relative;
  padding: 10px;
}

body .case-study .heatmap h6 {
  font-size: 14px;
  color: var(--bs-dark);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

body .case-study .heatmap p {
  font-size: 12px;
  color: var(--bs-dark);
  line-height: normal;
  font-weight: 400;
  margin-bottom: 5px;
}

body .case-study .heatmap p.muted {
  color: #CABAA3;
  margin-top: 10px;
}

body .case-study .heatmap .colors {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body .case-study .heatmap .colors span {
  width: 30px;
  height: 12px;
  background-color: gray;
}

body .case-study .heatmap .colors span:nth-child(1) {
  background-color: #D49636;
}

body .case-study .heatmap .colors span:nth-child(2) {
  background-color: #DEAF67;
}

body .case-study .heatmap .colors span:nth-child(3) {
  background-color: #E6C593;
}

body .case-study .heatmap .colors span:nth-child(4) {
  background-color: #F0DCBD;
}

body .case-study .filters label {
  font-size: 18px;
  color: var(--bs-brand-primary);
  line-height: normal;
  font-weight: 700;
  line-height: 25px;
}

body .case-study .filters input,
body .case-study .filters select {
  height: 45px !important;
  border: 1px solid #DEE2E6;
  color: #ADB5BD;
  font-size: 16px;
  font-weight: 300;
  border-radius: 6px;
}

body .case-study .filters input::placeholder,
body .case-study .filters select::placeholder {
  color: #ADB5BD;
  opacity: 1;
  /* Firefox */
}

body .case-study .filters input::-ms-input-placeholder,
body .case-study .filters select::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #ADB5BD;
}

body .case-study .filters input[type=checkbox] {
  height: 100% !important;
}

body .case-study .filters .input-group-text {
  font-size: 13px;
  background-color: transparent;
  border: 1px solid #DEE2E6;
  color: #ADB5BD;
  line-height: 13px;
  font-weight: 300;
  border-left: none !important;
  width: 145px;
  white-space: normal !important;
  text-align: left;
}

body .case-study #filter-table_wrapper thead tr {
  padding: 10px 0;
  border-top: 1px solid var(--bs-brand-primary);
  border-bottom: 1px solid var(--bs-brand-primary);
  border-color: var(--bs-brand-primary) !important;
}

body .case-study #filter-table_wrapper thead tr th {
  padding: 20px 10px;
}

body .case-study #filter-table_wrapper thead tr th .dt-column-title {
  color: var(--bs-dark);
  font-size: 16px;
}

body .case-study #filter-table_wrapper thead tr th .dt-column-title span {
  font-size: 20px;
  color: var(--bs-brand-primary);
}

body .case-study #filter-table_wrapper tbody tr {
  padding: 10px 0;
  border-top: 1px solid var(--bs-brand-primary);
  border-bottom: 1px solid var(--bs-brand-primary);
  border-color: var(--bs-brand-primary) !important;
}

body .case-study #filter-table_wrapper tbody tr td {
  padding: 5px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-dark);
}

body .case-study #filter-table_wrapper tbody tr td span {
  color: var(--bs-brand-primary);
  font-weight: 700;
  cursor: pointer;
}

body .case-study #filter-table_wrapper tbody tr td img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

body .case-study #filter-table_wrapper tbody tr td img.icon {
  width: 16px;
  height: 16px;
}

body .case-study #filter-table_wrapper .dropdown-content {
  display: none;
}

body .case-study #filter-table_wrapper .dropdown-content td {
  padding: 10px 20px;
  background-color: #f9f9f9;
}

body .case-study table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
body .case-study table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
body .case-study table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
body .case-study table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
  color: var(--bs-brand-primary) !important;
}

body .case-study table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before {
  opacity: 1 !important;
}

body .case-study .ui-slider {
  font-size: 0.6em;
  width: calc(100% - 2.4em);
  height: 5px;
  margin-left: 1.2em;
  /*Slider-range darker*/
}

body .case-study .ui-slider .ui-slider-handle {
  background-color: var(--bs-brand-primary);
  background-blend-mode: multiply;
  font-size: 1em;
  margin-top: -1px;
  border-radius: 10px;
  border-color: var(--bs-brand-primary);
}

body .case-study .ui-slider .ui-slider-handle:focus-visible {
  border-color: #978B82;
}

body .case-study .ui-slider .ui-slider-range {
  background-color: var(--bs-brand-primary);
  background-blend-mode: multiply;
  height: 5px;
}

body .case-study .slide-range-values {
  margin-top: 10px;
}

body .case-study .slide-range-values span {
  font-size: 14px;
  color: var(--bs-brand-primary);
  font-weight: 300;
}

body #video iframe {
  width: 100%;
  height: 70vh;
  border-radius: 20px;
}

body #video .modal-content {
  border-radius: 20px;
  border: none;
  background-color: transparent;
}

body .modal .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: #640811 url(/assets/icons/close.svg) center/1em auto no-repeat;
  color: white;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  opacity: 1;
  outline: none;
}

body #table .dt-hasChild .dt-control::before {
  transform: rotate(90deg) !important;
}

.btn-menu {
  display: none;
}

button#clear_filters {
  background-color: #59070f;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: var(--bs-white);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 25px;
  margin-right: 15px;
  border: 2px solid #59070f;
}

@media (min-width: 1300px) {
  body .editions .edition.minimal,body .thematic .edition.minimal {
    /*height: 275px !important;*/
  }
  body .editions .edition, body .thematic .edition{
    aspect-ratio: 1/1.465 !important;
  }
}

@media (max-width: 1024px) {
  body .editions .edition, body .thematic .edition{
    aspect-ratio: 1/1.414 !important;
  }
}

@media (min-width: 576px) {
  body .modal-dialog {
    max-width: 70%;
  }
}

@media (min-width: 768px) {
  body .editions .edition, body .thematic .edition {
    height: 100%;
  }
  body .thematic .edition.minimal, body .editions .edition.minimal {
    height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  body .hero h1 {
    font-size: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .d-flex.align-items-center.flex-wrap.gap-3 {
    gap: 0.5rem !important;
  }
  
  .container-md,
  .container-sm,
  .container {
    max-width: 95%;
  }

  header .col-9 {
    width: 60%;
    position: relative;
  }

  header .col-3 {
    width: 40%;
  }

  .btn-menu {
    display: block;
  }

  .btn-menu .menu_close {
    display: none;
  }

  header .container .row .col-9 ul.menu {
    position: absolute;
    flex-direction: column;
    gap: 12px !important;
    background-color: white;
    z-index: 9999;
    width: 330px;
    padding: 20px;
    top: 45px;
    left: 13px;
    border: 1px solid gray;
    display: none;
  }

  header .container .row .col-9 ul.menu.open {
    display: flex;
  }

  body header li.has-submenu .sub_menu {
    position: relative;
  }

  body .hero h1 {
    font-size: 80px;
  }

  body .hero p {
    font-size: 20px;
  }

  body .thematic .edition.minimal,
  body .editions .edition.minimal {
    /*height: 155px;*/
    width: 23.6% !important;
  }

  .editions .top-left, .thematic .top-left{
    font-size: 14px;
    transform: translateX(-41%) translateY(-43%) rotate(-45deg);
  }

  body .intro-box .col-md-12 .body .col-7 h2 {
    font-size: 26px;
  }

  body .intro-box .col-md-12 .body .col-7 p,
  body .intro-box .col-md-12 .body .col-7 a {
    font-size: 16px;
    line-height: normal;
  }

  #intro-box .container {
    padding: 0px;
  }

  #intro-box .col-12 {
    width: 95%;
  }

  #intro-box .footer .col {
    width: 25%;
    margin: 8px;
  }

  #vmap {
    height: 500px;
  }

  body .case-study .container-fluid .col-3 {
    width: 50%;
  }

  body .case-study .heatmap {
    margin-top: -100px;
    margin-left: 3%;
  }
}

@media(max-width: 767px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-6,
  .col-7,
  .col-8,
  .col-9 {
    width: 100%;
  }

  header .col-9 {
    width: 60%;
    position: relative;
  }

  header .col-3 {
    width: 40%;
  }

  body .case-study h2 {
    font-size: 30px;
  }

  .btn-menu {
    display: block;
  }

  .btn-menu .menu_close {
    display: none;
  }

  header .container .row .col-9 ul.menu {
    position: absolute;
    flex-direction: column;
    gap: 12px !important;
    background-color: white;
    z-index: 9999;
    width: 330px;
    padding: 20px;
    top: 45px;
    left: 13px;
    border: 1px solid gray;
    display: none;
  }

  header .container .row .col-9 ul.menu.open {
    display: flex;
  }

  body header li.has-submenu .sub_menu {
    position: relative;
  }

  body .hero h1 {
    font-size: 30px;
  }

  body .case-study p {
    line-height: 25px;
  }

  body .hero p {
    font-size: 16px;
  }

  body .intro-box .col-md-12 .body .col-7 h2 {
    font-size: 20px;
  }

  body .intro-box .col-md-12 .body .col-7 p,
  body .intro-box .col-md-12 .body .col-7 a {
    font-size: 14px;
    line-height: 26px;
  }

  body .intro-box .col-md-12 .body .video {
    height: 300px;
  }

  div#intro-box .footer {
    margin-top: 50px;
  }

  body .intro-box .col-md-12 .footer .icons-wrapper .icon {
    margin: 30px 6px;
  }

  body .case-study .heatmap {
    margin-left: 3%;
    margin-top: 0px;
  }

  body .editions h2,
  body .thematic h2,
  body .projects h2 {
    font-size: 25px;
  }

  body .editions p,
  body .thematic p,
  body .projects p {
    font-size: 16px;
    line-height: 25px;
  }

  body .editions .edition,
  body .thematic .edition {
    width: 90%;
    /*height: 610px !important;*/
    margin: 0 auto 20px auto;
    aspect-ratio: 1/1.414;
  }

  body .editions .edition.minimal,
  body .thematic .edition.minimal {
    width: 47%;
    /*height: 340px !important;*/
  }

  #vmap {
    height: 350px;
  }

  body #table td a {
    font-size: 14px;
  }

  body .case-study .filters .input-group-text {
    font-size: 14px;
    border: 0px;
    width: 100%;
    height: 25px;
    margin-top: 10px;
  }

  input#keyword {
    border: 1px solid #DEE2E6;
    border-radius: 6px;
  }

  body footer .container .col form input {
    width: 100%;
  }

  body footer .container .partner .logo img {
    width: 140px;
  }

  #submissions .col-4 {
    justify-content: center !important;
  }
}

@media (max-width: 400px) {
  body .editions .edition, body .thematic .edition{
    /*height: 470px !important;*/
  }
  body .editions .edition.minimal,body .thematic .edition.minimal {
    /*height: 230px !important;*/
  }
}