@charset "UTF-8";
/**
 * Loading first in the style.scss & classic-editor.scss
 */
/**
 * General - https://wordpress.org/documentation/article/css/
 */
/* Magina Custom */
.bg-grey-aaa {
  background-color: #f9f9f9;
}

.block-grey {
  background-color: #f9f9f9;
  border-radius: 15px;
}

.text-gold {
  color: #cb9e43;
}

:root {
  --swiper-navigation-color: #fff;
}

/* Header */
#header {
  background-color: #fff;
}

.mega-menu {
  width: 100% !important;
  background-color: #fff;
  top: 85px !important;
  left: -3px !important;
}
.mega-menu h5 {
  color: #69c979;
  font-family: "Poppins", sans-serif;
  font-size: 1.2vw;
}
.mega-menu h5 a {
  color: #69c979;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  text-decoration: none;
}
.mega-menu ul {
  padding-left: 0 !important;
}
.mega-menu li {
  list-style: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #69c979 !important;
}

a.btn-flag {
  margin-top: 18px !important;
}

@media screen and (max-width: 1024px) {
  li.toplevel-menu {
    text-align: center !important;
  }
  .link-menu {
    padding-bottom: 5px !important;
  }
}
.link-menu {
  color: #000814;
  margin-top: 25px;
  padding-bottom: 30px;
  display: inline-block;
}
.link-menu:hover, .link-menu:focus {
  color: #69c979;
}

.link-submenu {
  text-decoration: none !important;
  color: #69c979;
  margin-top: 10px;
  padding-bottom: 5px;
  display: inline-block;
}
.link-submenu:hover, .link-submenu:focus {
  color: #69c979;
  font-weight: 700;
}

.active {
  color: #69c979 !important;
  font-weight: 700;
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.form-control-dark {
  color: #000814;
  background-color: var(--bs-dark);
  border-color: var(--bs-gray);
}

.form-control-dark:focus {
  color: #000814;
  background-color: var(--bs-dark);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.text-small {
  font-size: 85%;
}

.dropdown-toggle {
  outline: 0;
}

@media screen and (min-width: 1024px) {
  .navbar-expand-lg .navbar-collapse {
    height: 74px;
  }
}
.navbar-toggler[aria-expanded=false] > .close {
  display: none !important;
}

.navbar-toggler[aria-expanded=false] > .open {
  display: inline !important;
}

.navbar-toggler[aria-expanded=true] > .close {
  display: inline !important;
}

.navbar-toggler[aria-expanded=true] > .open {
  display: none !important;
}

body {
  font-family: "Roboto", sans-serif;
  color: #000814;
  font-size: 11pt;
  background-color: #ffffff;
}

h1 {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #69c979;
}

.black-h1 {
  color: #000814 !important;
}

.blue-h1 {
  color: #1f437d !important;
}

.gold-h1 {
  color: #cb9e43 !important;
}

.teccbot-color {
  color: #0071bc;
}

h2 {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #69c979;
}
h2 .white-title {
  color: #f9f9f9 !important;
}

h3 {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #69c979;
}

h4 {
  font-family: "Poppins-Bold", sans-serif;
  font-size: 22px;
}

h5 {
  font-family: "Poppins", sans-serif;
  color: #69c979;
}

.section-bg-light {
  background-color: #f9f9f9;
}

.section-bg-blue {
  background-color: #091b5a;
}

.bg-accent {
  background-color: #69c979;
}

.img-section {
  width: 100%;
  height: auto;
}

.list-teccweb {
  font-family: "Poppins-Bold", sans-serif;
}
.list-teccweb svg {
  color: #69c979;
  margin-left: 10px;
  margin-right: 20px;
}
.list-teccweb li {
  margin-top: 10px;
  margin-bottom: 10px;
}

a {
  color: #69c979;
  text-decoration: none;
}
a:hover {
  color: #69c979;
  text-decoration: none;
}

/* ANIMATIONS */
@media (min-width: 768px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.bg-fix {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .bg-fix {
    min-height: 350px;
  }
}
/* FIX BG IMAGES */
.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1024px) {
  .bg-image {
    min-height: 350px;
  }
}
/* News Selector */
.btn-inverted {
  color: #69c979;
  font-size: 20px;
  text-align: center;
  background: #fff;
}
.btn-inverted:hover {
  background: #69c979;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-inverted-blue {
  color: #091b5a;
  font-size: 20px;
  text-align: center;
  background: #fff;
}
.btn-inverted-blue:hover {
  background: #091b5a;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-accent {
  color: #fff;
  font-size: 20px;
  text-align: center;
  background: #69c979;
}
.btn-accent:hover {
  background: #fff;
  color: #69c979;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-teccbot {
  color: #fff;
  font-size: 20px;
  text-align: center;
  background: #0071bc;
}
.btn-teccbot:hover {
  background: #fff;
  color: #0071bc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.button-cta {
  text-decoration: none;
  display: inline-block;
  color: #091b5a;
  font-size: 12pt;
  padding: 10px;
  border: 1px solid #091b5a;
  border-radius: 5px;
  text-align: center;
}

.button-cta-white {
  text-decoration: none;
  display: inline-block;
  color: #f9f9f9;
  font-size: 12pt;
  padding: 10px;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
  text-align: center;
}

/* Heroes */
/* HOME HEROES */
/* DESKTOP */
@media screen and (min-width: 992px) {
  .hero-teccweb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 800px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccbot {
    background: url("../img/teccbot/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 800px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccweb-small {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 420px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccweb-overlay {
    background: rgb(105, 201, 121);
    background: linear-gradient(90deg, rgba(105, 201, 121, 0.9472382703) 0%, rgba(76, 216, 97, 0.8491990546) 28%, rgba(0, 255, 34, 0.0396752451) 61%);
  }
  .hero-teccweb-overlay-mini {
    background: rgb(105, 201, 121);
    background: linear-gradient(90deg, rgba(105, 201, 121, 0.9472382703) 0%, rgba(76, 216, 97, 0.8491990546) 28%, rgba(0, 255, 34, 0.0396752451) 61%);
  }
  .hero-teccweb-overlay-2 {
    background: rgb(2, 113, 189);
    background: linear-gradient(90deg, rgb(2, 113, 189) 0%, rgb(2, 113, 189) 20%, rgba(0, 212, 255, 0) 100%);
  }
  .hero-teccweb-overlay-3 {
    background: rgb(31, 67, 125);
    background: linear-gradient(90deg, rgb(31, 67, 125) 0%, rgb(31, 67, 125) 20%, rgba(0, 212, 255, 0) 100%);
  }
  .full-w-gradient {
    background: rgb(90, 217, 111);
    background: linear-gradient(90deg, rgb(90, 217, 111) 0%, rgb(67, 190, 88) 55%, rgb(65, 181, 85) 97%);
  }
  .card-teccweb {
    background: rgb(90, 217, 111);
    background: linear-gradient(90deg, rgb(90, 217, 111) 0%, rgb(67, 190, 88) 55%, rgb(65, 181, 85) 97%);
  }
  .teccweb-white {
    position: relative;
    bottom: -3px;
  }
  .team-biography {
    height: auto;
    min-height: 703px;
    position: relative;
  }
  .hero-teccbot-overlay {
    background: rgb(0, 113, 188);
    background: linear-gradient(90deg, rgb(0, 113, 188) 0%, rgba(10, 129, 208, 0.8996192227) 28%, rgba(0, 255, 34, 0.0396752451) 61%);
  }
  .hero-logo {
    position: relative;
    top: 25%;
    left: 10%;
  }
  .hero-title {
    font-family: "Poppins-Bold", sans-serif;
    font-size: 40px;
    line-height: 56px;
    position: relative;
    color: #fff;
    font-weight: 900;
    top: 30%;
    left: 10%;
  }
  .hero-text {
    width: 40%;
    left: 10%;
    position: relative;
    top: 30%;
    z-index: 7;
    color: #fff;
  }
  .hero-ecs {
    width: 30%;
    left: 10%;
    position: relative;
    top: 20%;
    z-index: 7;
  }
  .hero-inside-wrapper {
    position: absolute;
    width: auto;
    bottom: 0;
    right: 0;
  }
  .hero-img {
    height: 40vw;
  }
  .text-transparent-stroke {
    font-family: "Poppins", sans-serif;
    -webkit-text-stroke: 2px white;
    -webkit-text-fill-color: transparent !important;
  }
}
/* MOBILE */
@media screen and (max-width: 992px) {
  .hero-teccweb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
    height: 800px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccbot {
    background: url("../img/teccbot/hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
    height: 800px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccweb-small {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 480px;
    overflow: hidden;
    position: relative;
    z-index: 9;
  }
  .hero-teccweb-overlay {
    background: rgb(105, 201, 121);
    background: linear-gradient(to top, rgba(105, 201, 121, 0.9472382703) 0%, rgba(76, 216, 97, 0.8491990546) 28%, rgba(0, 255, 34, 0.0396752451) 61%);
  }
  .hero-teccweb-overlay-mini {
    background: rgb(105, 201, 121);
    background: linear-gradient(90deg, rgb(105, 201, 121) 0%, rgba(76, 216, 97, 0.8) 55%, rgba(76, 216, 97, 0.5) 100%);
  }
  .hero-teccweb-overlay-2 {
    background: rgb(2, 113, 189);
    background: linear-gradient(to top, rgb(2, 113, 189) 0%, rgb(2, 113, 189) 20%, rgba(0, 212, 255, 0) 100%);
  }
  .hero-teccweb-overlay-3 {
    background: rgb(31, 67, 125);
    background: linear-gradient(to top, rgb(31, 67, 125) 0%, rgb(31, 67, 125) 20%, rgba(0, 212, 255, 0) 100%);
  }
  .full-w-gradient {
    background: rgb(90, 217, 111);
    background: linear-gradient(90deg, rgb(90, 217, 111) 0%, rgb(67, 190, 88) 55%, rgb(65, 181, 85) 97%);
  }
  .card-teccweb {
    background: rgb(90, 217, 111);
    background: linear-gradient(90deg, rgb(90, 217, 111) 0%, rgb(67, 190, 88) 55%, rgb(65, 181, 85) 97%);
  }
  .teccweb-white {
    position: relative;
    bottom: -3px;
  }
  .team-biography {
    height: auto;
    min-height: 703px;
    position: relative;
  }
  .hero-teccbot-overlay {
    background: rgb(0, 113, 188);
    background: linear-gradient(to top, rgb(0, 113, 188) 10%, rgba(10, 129, 208, 0.8996192227) 28%, rgba(0, 113, 188, 0.3) 63%);
  }
  .hero-logo {
    position: relative;
    top: 10%;
    left: 10%;
  }
  .hero-logo img {
    width: 250px;
  }
  .hero-title {
    font-family: "Poppins-Bold", sans-serif;
    font-size: 40px;
    line-height: 56px;
    position: relative;
    color: #fff;
    font-weight: 900;
    width: 320px;
    top: 33%;
    left: 10%;
  }
  .hero-text {
    width: 80%;
    left: 10%;
    position: relative;
    top: 30%;
    z-index: 7;
    color: #fff;
  }
  .hero-ecs {
    width: 65%;
    left: 10%;
    position: relative;
    top: 25%;
    z-index: 7;
  }
  .hero-inside-wrapper {
    position: absolute;
    width: auto;
    bottom: 0;
    right: 0;
  }
  .hero-img {
    height: 40vw;
  }
  .text-transparent-stroke {
    font-family: "Poppins", sans-serif;
    -webkit-text-stroke: 2px white;
    -webkit-text-fill-color: transparent !important;
  }
}
/* COMMON HEROES */
.hero-gradient {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(9, 27, 90));
}

.text-full {
  color: white !important;
}

.hero-titre {
  padding-top: 190px;
  height: 450px;
  text-align: center;
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/bg_news.png");
  background-size: cover;
}
.hero-titre h1 {
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  color: #f9f9f9;
}
.hero-titre.hero-cabinet {
  padding-top: 40px !important;
  height: 300px !important;
}
.hero-titre img {
  width: 300px;
  height: auto;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.hero-titre p {
  color: #f9f9f9;
}

/* SPECIFIC BACKGROUNDS */
.hero-bg-aaa {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/BG.jpg") !important;
}

.hero-bg-strategie-management {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/strategie-management.png") !important;
}

.hero-bg-poles-expertises {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/expertises/poles-expertises/1.png") !important;
}

.hero-bg-dsi {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/dsi.png") !important;
}

.hero-bg-pole-finance {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/finance.png") !important;
}

.hero-bg-gestion-carriere {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/gestion-carriere.png") !important;
}

.hero-bg-talents {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/talents/index.png") !important;
}

.hero-bg-high-tech {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/high-tech.png") !important;
}

.hero-bg-juridique {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/juridique.png") !important;
}

.hero-bg-marketing-communication {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/marketing-communication.png") !important;
}

.hero-bg-marketing-digital {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/marketing-digital.png") !important;
}

.hero-bg-recrutement-rh {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/recrutement-rh.png") !important;
}

.hero-bg-gouvernance {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors/invest-gouvernance-large.png") !important;
}

.hero-bg-strategie-developpement {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/strategie-developpement.png") !important;
}

.hero-bg-transfo-industrielle {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/transfo-industrielle.png") !important;
}

.hero-bg-calendrier {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors/invest-calendrier-large.png") !important;
}

.hero-bg-esg {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors/invest-esg-large.png") !important;
}

.hero-bg-finance {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors/invest-finance-large.png") !important;
}

.hero-bg-ag {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors/invest-ag-large.png") !important;
}

.hero-bg-implantations {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/implantations.png") !important;
}

.hero-bg-cooptation {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/cooptation.png") !important;
}

.hero-bg-fonctions-partenaires {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/hero-titles/fonctions-partenaires.png") !important;
}

.hero-bg-contact {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/contact.png") !important;
}

.hero-bg-news-index {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/news-index.png") !important;
}

.hero-bg-investors {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/backgrounds/investors_bg.png") !important;
  background-position: center;
  background-size: cover;
}

.hero-bg-default {
  background-image: linear-gradient(to top, rgba(9, 27, 90, 0.65), rgba(9, 27, 90, 0)), url("../img/bg_news.png") !important;
}

/* Hero titles */
/* News Cards */
.news-wrapper {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: 245px;
  border-radius: 7px;
}

.sticky-wrapper {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: 400px;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 21px 4px rgba(9, 27, 90, 0.35);
  box-shadow: 0 0 21px 4px rgba(9, 27, 90, 0.35);
}

.news-overlay {
  height: 275px;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(90, 217, 111, 0.354) 10%, rgba(67, 190, 88, 0.274) 55%, rgb(67, 190, 88) 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.sticky-overlay {
  height: 400px;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(90, 217, 111, 0.354) 10%, rgba(67, 190, 88, 0.274) 55%, rgb(67, 190, 88) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.sticky-overlay .sticky-date {
  color: #f9f9f9 !important;
  font-size: 14px;
}
.sticky-overlay h3 {
  color: #f9f9f9 !important;
  font-size: 26px;
}

.news-overlay h3 {
  color: #f9f9f9 !important;
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 26px;
}

.news-category {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #cb9e43;
}

.news-date {
  text-align: right;
  font-size: 11px;
  text-transform: uppercase;
}

/* NEWS PAGE */
.see-also-news {
  border-top: 1px solid #091b5a;
  border-bottom: 1px solid #091b5a;
  text-align: center;
  text-transform: uppercase;
}

/* VIDEO BLOCK */
.video-over {
  position: relative;
  z-index: 2;
}

.video-under {
  font-size: 74px;
  position: relative;
  top: -40px;
  left: 45px;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

/* Bootstrap Custom */
.icon-list {
  padding-left: 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}

.icon-list li::before {
  display: block;
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5rem;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z'/%3E%3C/svg%3E") no-repeat center center/100% auto;
}

/* BLOCK INTERNAL MENU */
.internal-menu-block {
  background-color: white;
}
.internal-menu-block a {
  text-decoration: none !important;
  color: #091b5a;
}
.internal-menu-block img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* CABINETS */
.cabinets-logos img {
  width: 100%;
}

.cabinets-letters-filter {
  margin-left: auto;
  margin-right: auto;
}
.cabinets-letters-filter a {
  color: #091b5a;
  text-decoration: none;
}
.cabinets-letters-filter a:hover {
  color: #cb9e43;
}

.cabinet-box {
  display: block;
  padding: 15px;
}
.cabinet-box:hover {
  background-color: #091b5a;
}
.cabinet-box:hover img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.link-filter {
  color: #091b5a;
  margin-top: 25px;
  padding-bottom: 5px;
  display: inline-block;
}
.link-filter:hover {
  border-bottom: 1px solid #cb9e43;
  color: #091b5a;
}

.filter-active {
  color: #091b5a;
  border-bottom: 1px solid #cb9e43 !important;
}

/* ZONE INVESTISSEURS */
#investors-menu {
  /* POLES */
}
#investors-menu .col {
  height: 250px;
  color: #f9f9f9;
  font-family: "Poppins", "sans-serif";
  font-size: 22px;
}
#investors-menu .pole-menu {
  height: 250px;
  color: #f9f9f9;
  font-family: "Poppins", "sans-serif";
  font-size: 22px;
}
#investors-menu .expertise-menu {
  height: 170px;
  color: #f9f9f9;
  font-family: "Poppins", "sans-serif";
  font-size: 22px;
}
#investors-menu .pole-menu-small {
  height: 125px;
  color: #f9f9f9;
  font-family: "Poppins", "sans-serif";
  font-size: 22px;
}
#investors-menu .investors-menu-overlay {
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(9, 27, 90));
  text-align: center;
  align-items: center;
  display: grid;
}
#investors-menu .investors-menu-overlay a {
  color: #f9f9f9;
  text-decoration: none;
}
#investors-menu #pole-digital {
  background-image: url("../img/backgrounds/hero-titles/marketing-digital.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-it {
  background-image: url("../img/backgrounds/hero-titles/high-tech.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-recrutement {
  background-image: url("../img/backgrounds/hero-titles/recrutement-rh.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-transfo-industrielle {
  background-image: url("../img/backgrounds/hero-titles/transfo-industrielle.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-strategie-management {
  background-image: url("../img/backgrounds/hero-titles/strategie-management.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-strategie-developpement {
  background-image: url("../img/backgrounds/hero-titles/strategie-developpement.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-marketing {
  background-image: url("../img/backgrounds/hero-titles/marketing-communication.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-finance {
  background-image: url("../img/backgrounds/hero-titles/finance.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-dsi {
  background-image: url("../img/backgrounds/hero-titles/dsi.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #pole-juridique {
  background-image: url("../img/backgrounds/hero-titles/juridique.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #invest-esg {
  background-image: url("../img/backgrounds/investors/invest-esg.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #invest-ag {
  background-image: url("../img/backgrounds/investors/invest-ag.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #invest-calendrier {
  background-image: url("../img/backgrounds/investors/invest-calendrier.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #invest-finance {
  background-image: url("../img/backgrounds/investors/invest-finance.png");
  background-size: cover;
  background-position: center;
}
#investors-menu #invest-gouvernance {
  background-image: url("../img/backgrounds/investors/invest-gouvernance.png");
  background-size: cover;
  background-position: center;
}

.calendrier-card {
  width: 100%;
  background-color: white;
  border-radius: 7px;
}
.calendrier-card:hover {
  -webkit-box-shadow: 0 0 21px 4px rgba(9, 27, 90, 0.15);
  box-shadow: 0 0 21px 4px rgba(9, 27, 90, 0.15);
}
.calendrier-card .calendrier-card-date {
  background-color: #091b5a;
  color: #f9f9f9;
  font-size: 1.2vw;
  line-height: 1.3vw;
}
.calendrier-card .calendrier-card-date .small-year {
  font-size: 0.8vw;
}
.calendrier-card .calendrier-card-titre {
  font-family: "Poppins", sans-serif;
  display: grid;
  align-items: center;
  font-size: 1.2vw;
}
.calendrier-card .calendrier-card-add {
  display: grid;
  align-items: center;
}
.calendrier-card .calendrier-add {
  font-size: 1vw;
}

#investors-kpi {
  background-color: #091b5a;
}
#investors-kpi p {
  color: #cb9e43;
  font-size: 1vw;
}

.investor-document-date {
  font-family: "Montserrat", "Open Sans";
  font-size: 0.8vw;
  color: #cb9e43;
}

.investor-document-size {
  font-size: 0.7vw;
}

.esg-card {
  height: 350px;
}

#esg-declaration {
  background-image: url("../img/backgrounds/investors/esg-declaration.png");
}

#esg-charte {
  background-image: url("../img/backgrounds/investors/esg-charte.png");
}

#esg-code {
  background-image: url("../img/backgrounds/investors/esg-code.png");
}

#esg-ethique {
  background-image: url("../img/backgrounds/investors/esg-etique.png");
}

.esg-gradient {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(9, 27, 90));
  display: grid;
  align-items: end;
}

.esg-card-overlay {
  color: #f9f9f9;
}

/* BLOC OFFRES */
.bloc-offres {
  position: relative;
  height: 200px;
}

.bloc-offres-photo {
  position: absolute;
  height: 300px;
  z-index: 5;
  top: -100px;
}

.bloc-offres-cta {
  position: relative;
  z-index: 6;
  width: auto;
  height: 109px;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(9, 27, 90));
}

/* BOOK REPORTS */
@media screen and (min-width: 1024px) {
  .book-report {
    height: 250px;
    margin-top: 100px;
    background: rgb(44, 72, 150);
    background: linear-gradient(353deg, rgb(44, 72, 150) 0%, rgb(35, 55, 111) 43%, rgb(51, 70, 126) 43%, rgb(65, 87, 149) 100%);
  }
  .book-report-book {
    position: relative;
    top: -85px;
    left: 40px;
    z-index: 1;
    width: 500px;
  }
  .book-report-infos {
    z-index: 99;
  }
  .book-report-cta {
    padding: 30px;
  }
  .book-report-cta .button-cta-white {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .book-report {
    height: 500px;
    margin-top: 100px;
    background: rgb(44, 72, 150);
    background: linear-gradient(353deg, rgb(44, 72, 150) 0%, rgb(35, 55, 111) 43%, rgb(51, 70, 126) 43%, rgb(65, 87, 149) 100%);
  }
  .book-report-book {
    z-index: 1;
    position: relative;
    top: 227px;
    left: 10px;
    width: 400px;
  }
  .book-report-infos {
    z-index: 99;
  }
  .book-report-cta {
    padding: 30px;
  }
  .book-report-cta .button-cta-white {
    margin-bottom: 20px;
  }
}
.container-aaa {
  background: url("/img/home/alanallman.png") center no-repeat;
  background-size: cover;
}

.bg-aaa {
  background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-block {
  border: 2px #cb9e43 solid;
  border-radius: 5px;
}
.testimonial-block .testimonial-name {
  font-size: 20px;
  line-height: 20px;
  font-family: "Montserrat", "Open Sans";
  font-weight: 800;
  text-align: right;
  margin-top: 30px;
}
.testimonial-block .testimonial-title {
  text-align: right;
  margin-top: 10px;
}
.testimonial-block .testimonial-quote {
  text-align: left;
}
.testimonial-block .left-quote {
  font-size: 4vw;
  position: relative;
  top: -110px;
  background-color: white;
  padding: 10px;
}
.testimonial-block .right-quote {
  font-size: 4vw;
  position: relative;
  top: 120px;
  left: 500px;
  background-color: white;
  padding: 10px;
}

#footer {
  background-color: #000814;
  color: #fff;
  position: absolute;
}

#footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

#footer ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
#footer ul li a {
  text-decoration: none;
  color: #fff;
}
#footer ul li a:hover {
  color: #69c979;
}
#footer ul li .link-menu {
  color: #fff;
  font-family: "Poppins", "Open Sans", sans-serif;
}

@media only screen and (min-width: 1024px) {
  .footer-copyright {
    color: #fff;
    border-top: #fff solid 1px;
    margin-left: 80px;
    margin-right: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-copyright {
    color: #fff;
    border-top: #fff solid 1px;
    margin-left: 15%;
    font-size: 13px;
    padding-top: 20px;
    margin-right: 15%;
  }
}
.footer-aaa {
  position: absolute;
  top: 110px;
  left: -15px;
}

.footer-title {
  color: #69c979;
  font-family: "Poppins-Bold", "Open Sans", sans-serif;
}