.container-fluid {
  padding: 0px;
  margin: 0px;
}

.padding-20 {
  padding: 20px;
}
.padding-v20 {
  padding: 20px 0px;
}
.padding-h20 {
  padding: 0px 20px;
}

.margin-20 {
  margin: 20px;
}
.margin-v20 {
  margin: 20px 0px;
}

.space-between {
  display: flex;
  justify-content: space-between;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.center-flex,
.flex-center {
  align-items: center;
}
.grid-2 {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.text-center {
  text-align: center;
  align-content: center;
}

.bg-grey {
  background-color: #DCDDE0;
}
.bg-grey-white {
  background-color: #EFEFEF;
}
.bg-grey-secondary {
  background-color: #F2F2F2;
}
.bg-black {
  background-color: black;
}
.bg-black-secondary {
  background-color: rgb(25, 25, 26);
}
.bg-blue{
  background-color: #025D7E
}

.headbar {
  padding: 5px;
  border-bottom: 2px solid #00ADEE;
  background-color: rgb(2, 93, 126);
  color: #fff;
  top: 0px;
  width: 100%;
  z-index: 90;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
}
.brand h4 {
  color: #696868;
  border-left: 1px solid #696868;
  padding: 10px 15px;
  margin: 10px 15px;
}
.brand h4 > strong {
  color: #00ADEE;
}
.brand .anapi {
  display: none;
  padding: 0px 10px;
  font-weight: bolder;
  position: relative;
  top: 5px;
}

/* BODY */
.body {
  min-height: 400px;
}

/* PRE-FOOTER */
.pre-footer {
  padding: 20px 0px;
  color: black;
  background-color: #F2F2F2;
  display: grid;
  grid-template-columns: 3fr 1fr;
}
.nav-footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
}
.nav-footer > li {
  margin-bottom: 20px;
}
.nav-footer > li > a {
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 5px;
  
  text-transform: uppercase;
  font-weight: bolder;
  color: black;
  text-decoration: none;
}
.nav-footer > li > a::after {
  content: '';
  display: block;
  width: 50px;
  border-bottom: 5px solid #00ADEE;
}
.nav-footer .menu-footer {
  display: inline-block;
  font-weight: bolder;
  color: black;
  text-decoration: none;
}
ul.nav-footer ul a {
  color: rgb(97, 96, 96);
  /* font-size: 10pt; */
}
ul.nav-footer ul ul {
  border-left: 3px solid #ccc;
  padding: 5px;
}
.liens-utiles {
  padding: 10px;
  margin: 0px 10px;
  background-color: #FFF;
  border-radius: 10px;
}

.store > a {
  display: block;
  margin-bottom: 5px;
}
.store > a > img {
  height: 40px;
  border-radius: 5px;
}

/* FOOTER */
.footer {
  padding: 20px 0px;
  color: #F2F2F2;
}
.footer .logo {
  width: 276px;
  margin-bottom: 17px;
}
.footer .social-icons a {
  color: white;
  text-decoration: none;
}
.footer .social-icons > a:hover {
  color: #00ADEE;
}
.footer-bottom {
  border-top: 1px solid #DCDDE0;
  color: #DCDDE0;
  padding: 20px 0px;
}
.footer-list > a,
.footer-list > span {
  display: inline-block;
  margin-bottom: 10px;
}
.footer-list > a > i,
.footer-list > span > i {
  margin-right: 6px;
}
.footer .brand {
  margin-bottom: 20px;
  color: #DCDDE0;
}
.footer .brand h4 {
  border-left: 1px solid transparent;
  color: #DCDDE0;
  padding: 10px 5px;
  margin: 10px 5px;
}
.footer .brand img {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}

.faq-button {
  background-color: #FFBE03;
  color: #333;
  padding: 5px;
}

.border-up-down-blue {
  border-top: 2px solid #1DA1F2;
  border-bottom: 2px solid #1DA1F2;
}
.newsletter {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background: transparent url(../images/static/boxletter.png) left center no-repeat;
}
.newsletter > .infotext,
.newsletter > .inputbox {
  display: flex;
  width: 1fr;
}
.newsletter > .news-icon {
  font-size: 2.7em;
  margin-right: 20px;
  color: #fff;
  rotate: -15deg;
  transform:rotate(-15deg);
    -ms-transform:rotate(-15deg); /* IE 9 */
    -moz-transform:rotate(-15deg); /* Firefox */
    -webkit-transform:rotate(-15deg); /* Safari and Chrome */
    -o-transform:rotate(-15deg);
}
.newsletter > .infotext > div > h4 {
  text-transform: uppercase;
  border-bottom: 1px solid #333;
  margin-bottom: 2px;
  padding-bottom: 3px;
}
.newsletter > .inputbox {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #333;
}
.newsletter > .inputbox ul li label {
  display: block;
  margin: 0;
}
.newsletter > .inputbox ul li input {
  display: block;
  margin: 0;
  font-size: 1.2em;
  color: rgb(2, 97, 131);
  padding-left: 5px;
  width: 300px;
  border-radius: 2px;
  border: none;
  outline: none;
  margin-bottom: 5px;
  border: 1px solid rgb(2, 97, 131);
}

.envelope {
	padding: 1em;
	border: 8px solid transparent;
	border-image: 16 repeating-linear-gradient(-45deg, red 0, red 1em, transparent 0, transparent 2em,
	              #58a 0, #58a 3em, transparent 0, transparent 4em);
}

.section {
  border-bottom: 1px double #F2F2F2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.title-bordered {
  color: #333;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  position: relative;
  margin: 20px 0 20px;
}
.title-bordered::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 3px;
  background: #00ADEE;
  left: 0;
  right: 0;
  bottom: -10px;
}
.section-title {
  font-weight: bold;
  color: #333;
  margin-top: 0px;
  padding: 0px;
}
.section-title::after {
  content: '';
  display: block;
  width: 100px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 5px solid #00ADEE;
}
.section-header-block {
  display: flex;
  justify-content: space-between;
}
.section-header-block > small {
  display: flex;
  align-items: center;
}


.recherche {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 5px 0px;
}
.recherche .input-search {
  width: 250px;
  border: 1px solid #ccc;
  margin-right: 5px;
  padding-left: 10px;
  border-radius: 15px;
}

.page {
  display: flex;
  flex-direction: row;
}

.actualites {
  display: grid;
  grid-template-areas: 
    "a a b c";
}
.actualites > .a {
  padding-right: 20px;
  grid-area: a;
}
.actualites > .b {
  padding-right: 20px;
  grid-area: b;
}
.actualites > .c {
  grid-area: c;
}

.actualites > .article {
  display: flex;
  flex-direction: column;
}

.actualites > .article img {
  width: 100%;
}

body#article .content,
body#rubrique .content {
  width: 100%;
  padding-right: 20px;
  padding-bottom: 10px;
}
body#article .aside,
body#rubrique .aside {
  width: 400px;
  padding: 20px;
  border-left: 2px solid #F2F2F2;
}
body#article .aside .menu > ul > li > a,
body#rubrique .aside .menu > ul > li > a {
  display: block;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding: 10px 0px;
}

.main-slider {
  max-height: 550px;
  border: 1px solid #F2F2F2;
}
.main-slider .slide {
  display: block;
  max-height: 550px;
  overflow: hidden;
}
.main-slider > .slide > img {
  width: 100%;
  z-index: 10;
}
.main-slider > .slide > h3 {
  display: block;
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: black;
  color: white;
  padding: 20px;
  opacity: 0.9;
  z-index: 20;
}

.contact {
  padding: 0px 10px;
}
.contact ul li label {
  display: block;
  margin: 0;
}
.contact ul li input[type=text] {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.contact .previsu {
  box-shadow: 1px 1px 5px #ccc;
  padding: 20px;
  padding: 1em;
	border: 10px solid transparent;
  border-image:
    10 repeating-linear-gradient(-45deg, red 0, red 1em, transparent 0, transparent 2em,
	  #58a 0, #58a 3em, transparent 0, transparent 4em);
}
.contact .previsu legend {
  display: none;
}

.contact-social-icons > a {
  text-decoration: none;
  color: #025D7E;
}

.secteurs .article {
  margin: 5px;
  padding: 5px;
  border: 1px solid #DCDDE0;
}
.secteurs .article a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
.secteurs .article a img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.secteurs .article a:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* why invest */
.why-invest-carte img {
  border-radius: 10px;
}
.why-invest-details {
  padding: 0px;
}
.why-invest-details ul li > a {
  color: #333;
  text-decoration: none;
  display: block;
  padding:10px;
  border-left: 5px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.why-invest-details ul li > a:hover {
  border-left: 5px solid #00ADEE;
  background-color: #DCDDE0;
}
/* end why invest */


/* climat des affaires */
.article-type-1 {
  display: block;
  text-decoration: none !important;
}
.article-type-1 > img {
  width: 100%;
  border-radius: 5px;
}
.article-type-1 > h5 {
  padding:0px;
}
.link-image {
  padding: 5px;
  border-radius: 5px;
}
.link-image:hover {
  background-color: #F2F2F2;
}
/* end climat des affaires */


/* did you know */
.know-it ul.list {
  list-style: circle;
  padding: 10px;
  padding-left: 20px;
}
.know-it ul.list > li {
  border-bottom: 1px dashed #ccc;
  margin: 5px 0px;
  padding: 5px 0px;
}
.know-it-section {
  padding: 30px;
}
.know-it-section img {
  border-radius: 5px;
  box-shadow: 1px 1px 5px #666666;
}
.video-responsive{
  overflow:hidden;
  padding-bottom:56.25%;
  position:relative;
  height:0;
}
.video-responsive iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

.folio {
  display: flex;
  width: 100%;
  flex-direction: column;
  border: 1px solid #DCDDE0;
  position: relative;
}
.folio > .folio-title {
  padding: 10px;
  background-color: black;
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.folio > .folio-title-2 {
  padding: 10px;
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.folio:hover > .folio-title {
  opacity: 0.9;
}
.folio > .folio-title > img {
  height: 200px;
}
.folio > .folio-title > small {
  color: #ccc;
}
.folio > .folio-title > h4 {
  color: white;
  opacity: 1;
}
.folio > .folio-title > h3 {
  color: red;
  opacity: 1;
}
.leading-card {
  width: 600px;
  max-height: 500px;
  overflow: auto;
  display: flex;
  background-color: white;
}
.leading-card .picture {
  width: 200px;
  padding: 10px;
  border: 1px solid #ccc;
}
.leading-card .picture > img {
  width: 180px;
}
.leading-card .description {
  padding: 10px;
}

.texte img {
  padding: 5px;
  margin: 10px;
  border: 1px solid #DCDDE0;
}

.documento {
  display: flex;
  width: 100%;
  border: 1px solid #DCDDE0;
  position: relative;
  padding: 10px;
  margin: 10px 0px;
  text-decoration: none !important;
  color: #333;
}
.documento:hover,
.documento:hover a {
  background-color: #025D7E;
  color: white;
}
.documento > .documento-title {
  padding-left: 10px;
}

.gallerie {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.gallerie a > img,
.portfolio a > img {
  padding: 5px;
  width: 100%;
  border: 1px solid #ccc;
}

.map {
  width: 100%;
  padding-top: 20px;
}
.map iframe {
  width: 100%;
}

.social-network-header {
  display: block;
  padding: 10px;
}
.social-network-header.facebook {
  background-color: #4267B2;
  color: white;
}
.social-network-header.twitter {
  background-color: #1DA1F2;
  color: white;
}
.social-network-header.youtube {
  background-color: #FF0000;
  color: white;
}

.youtube-card {
  background-color: #FF0000;
  color: white;
  text-align: center;
  height: 300px;
}
.youtube-card > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.youtube-card > a > .icon {
  display: block;
  font-size: 5em;
}

.social-max-height-scroll {
  max-height: 500px;
  overflow: auto;
}

.news-section {
  display: flex;
}
.news-section > .main {
  width: 60%;
  display: flex;
}
.news-section > .others {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
}
.news-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
  border: 5px solid transparent;
}
.news-card:hover h4,
.news-card:hover h5 {
  color: #00ADEE;
}
.news-card img {
  object-fit: cover;
  border: 1px solid #DCDDE0;
}
.news-card.main-cover img {
  height: 490px;
}
.news-card.mini-cover {
  width: 50%;
  height: 250px;
}
.news-card.mini-cover img {
  height: 100%;
}
.news-card .news-title {
  padding: 10px;
  background: url(../images/shadow.png) repeat-x bottom;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  color: white;
}
.news-card .news-title-2 {
  padding: 10px;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  color: white;
}
.news-title small,
.news-title-2 small {
  background-color: red;
  padding: 3px;
}
.news-title .minimal,
.news-title-2 .minimal {
  display: inline-block;
  background-color: #4267B2;
  padding: 5px;
}
.news-card:hover .minimal {
  background-color: rgb(14, 53, 133);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  padding: 10px;
  background-color: #696868;
  border-radius: 50%;
}

.map-section {
  display: grid;
  grid-template-areas:
    'a b c';
}
.map-section .why-invest-details {
  grid-area: a;
}
.map-section .drc-map {
  grid-area: b;
  width: 95%;
}
.map-section .legend {
  grid-area: c;
}

.footer-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}

@media screen and (max-width:881px) {
  .news-section {
    display: flex;
    flex-direction: column;
  }
  .news-section .main {
    width: 100%;
  }
  .news-section .others {
    width: 100%;
  }
  .map-section {
    display: grid;
    grid-template-areas:
      'a c'
      'b b';
  }
}

@media screen and (max-width:700px) {
  .page {
    flex-direction: column;
  }
  body#article .aside,
  body#rubrique .aside {
    padding: 10px;
    border-left: none;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-5 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr
  }
  .pre-footer {
    grid-template-columns: 2fr 1fr;
  }
  .nav-footer {
    grid-template-columns: 1fr 1fr;
  }
  .actualites {
    grid-template-areas: 
      "a a a a"
      "b b c c";
  }
  .actualites .article img {
    width: 100%;
  }
  .newsletter {
    flex-direction: column;
  }
  .newsletter > .inputbox {
    padding-left: 0px;
    margin-left: 0px;
    border-left: none;
    text-align: center;
  }
  .newsletter > .inputbox input {
    text-align: center;
  }
  .footer-details {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width:640px) {
  .brand > h4 > p {
    display: none;
  }
  .map-section {
    display: grid;
    grid-template-areas:
      'a'
      'b'
      'c';
  }
}

@media screen and (max-width:550px) {
  .pre-footer {
    display: none;
  }
}

@media screen and (max-width:480px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }
  .nav-footer {
    grid-template-columns: 1fr;
  }
  .brand h4 {
    display: none;
  }
  .brand .anapi {
    display: block;
  }
}