@charset "UTF-8";

/* Info */
.info {
  position: absolute;
  top: 140px;
  left: 30%;
  width: 40%;
  z-index: 100;
}

/* Menu Desktop */
.logo_desktop {
  position: absolute;
  left: 4vw;
  top: 36px;
  width: 280px;
  z-index: 10;
}

.logo_desktop, .logo_desktop:after {
  margin-bottom: -130px;
}

.logo_mobile {
  position: absolute;
  top: 0px;
  text-align: center;
  width: 100%;
  padding: 15px;
  z-index: 10;
}

#logo {
  width: 260px;
  box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  -moz-box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  -webkit-box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  border-radius: 25px;
}

#logo-mobile {
  width: 100%;
  box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  -moz-box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  -webkit-box-shadow: 4px 4px 7px 4px rgba(119, 119, 119, 0.15);
  border-radius: 25px;
}

.nav_banner {
  padding-top: 100px;
  padding-bottom: 10px;
}

.item_menu_desktop {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--mediumblue);
  font-weight: 600;
  padding-left: 30px;
}

.item_menu_desktop:hover {
  color: var(--darkblue);
  text-decoration: none;
}

.picto_menu_desktop {
  height: 22px;
  margin-right: 10px;
  margin-top: -5px;
}

/* Menu Mobile */
.mobile_nav {
  /*background-color: var(--mediumblue);*/
  /*border-top: solid 1px white;*/
  width: 100%;
  height: 80px;
  line-height: 80px;
  margin: auto 0;
  padding: 5px 20px;
  position: fixed;
  left: 0;
  top: calc(100% - 80px);
  z-index: 100;
}

.item_menu_mobile {
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
}

.item_menu_mobile:hover {
  color: var(--darkblue);
}

.dropdown-menu {
  text-transform: uppercase !important;
  font-size: 18px !important;
  background-color: rgba(0, 131, 195, 0.8) !important;
  transform: translate3d(0px, -288px, 0px) !important;
  text-align: center !important;
  width: 100%;
}

.dropdown-item {
  font-weight: 600 !important;
  color: white !important;
  padding: 0 50px !important;
  line-height: 40px !important;
}

.dropdown-item:hover {
  background-color: rgba(12, 82, 117, 0.8) !important;
}

/* Colors */
:root {
  --darkblue: #0C5275;
  --mediumblue: #0083C3;
  --lightgrey: #f4f4f4;
  --darkgrey: #7A7A7A;
  --darkred: #CC1427;
}

/* Typographie */
body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

h5 {
  color: var(--darkgrey) !important;
}

#impressum {
  color: var(--mediumblue) !important;
}

#impressum:hover {
  color: var(--darkblue) !important;
  text-decoration: none !important;
}

.bold {
  font-weight: 800;
}

.mediumblue {
  color: var(--mediumblue);
}

.darkblue {
  color: var(--darkblue);
}

.white {
  color: white;
}

.titre {
  font-size: 24px;
  text-transform: uppercase;
}

.e-tec {
  font-size: 1.3em;
  line-height: 1.5em;
  color: var(--darkblue);
  font-weight: 700;
}

.e-tec:hover {
  color: var(--mediumblue);
}

.cap {
  text-transform: uppercase;
}

/* éléments */
/* Top Call to Action */
.top_cta {
  background-color: var(--mediumblue);
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 25px;
  position: fixed;
  width: 530px;
  border-bottom-left-radius: 25px;
  top: 0;
  left: calc(100% - 530px);
  z-index: 20;
}

#white_link {
  color: white;
  text-decoration: none;
}

#white_link:hover {
  color: var(--darkblue);
}

.bgimg-presentation {
  background-image: url("../images/entree_2000x800.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

.bgimg-prestations {
  background-image: url("../images/securite.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

.bgimg-references {
  background-image: url("../images/references.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

.bgimg-jobs {
  background-image: url("../images/jobs.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

.bgimg-title {
  font-size: 1.5em;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: white;
  padding: 80% 0;
}

.intro_slideshow {
  margin-top: calc(60vh - 260px);
  margin-left: 4vw;
  padding: 25px;
  width: 600px;
  background-color: rgba(12, 82, 117, 0.8);
  color: white;
  font-weight: 600;
  border-radius: 5px;
  height: 200px;
  z-index: 10;
}

.contenu {
  margin-top: 100px;
}

.center {
  text-align: center;
  margin: 100px 0 30px 0;
}

/* Button */
.btn-primary {
  background-color: var(--mediumblue) !important;
  border-color: var(--mediumblue) !important;
}

.btn-primary:hover {
  background-color: var(--darkblue) !important;
  border-color: var(--darkblue) !important;
}

.btn-primary:active {
  background-color: var(--darkblue) !important;
  border-color: var(--darkblue) !important;
}

/* Fonds */
.bkg_darkblue {
  background-color: var(--darkblue);
  padding: 60px 0 30px 0;
  margin-top: 100px;
}

.bkg_mediumblue {
  background-color: var(--mediumblue);
  color: white;
  padding: 60px 0 30px 0;
  margin-top: -6px;
}

.bkg_white {
  background-color: white;
  color: var(--darkblue);
  padding: 25px;
}

.bkg_lightgrey {
  background-color: var(--lightgrey);
  padding: 50px 25px;
}

/* Portraits */
#portrait {
  width: 100%;
  height: 350px;
  margin-bottom: 50px;
}

/* Logos Partenaires */
.partner_center {
  text-align: center;
}

#partner {
  padding: 1rem !important;
  margin-top: 50px;
}

@media screen and (min-width: 576px) {
  #partner {
    padding: 1rem !important;
  }
}
/* Accordion */
.accordion, .accordion2, .accordion3, .accordion4, .accordion5, .accordion6 {
  color: var(--mediumblue);
  font-weight: 600;
  margin: 20px 0;
  background-color: white;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
}

.form1:after, .accordion:after, .accordion2:after, .accordion3:after, .accordion4:after, .accordion5:after, .accordion6:after {
  content: "En savoir plus";
}
.form1.active:after, .accordion.active:after, .accordion2.active:after, .accordion3.active:after, .accordion4.active:after, .accordion5.active:after, .accordion6.active:after {
  content: "Fermer";
}

.panel {
  display: none;
  background-color: white;
  overflow: hidden;
}

/* mediaqueries */
.mobile {
  display: block;
}

.desktop {
  display: none;
}

@media screen and (min-width: 1125px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}
@media screen and (min-width: 1870px) {
  .logo_desktop {
    left: 24vw;
  }
}
@media screen and (min-width: 414px) {
  #logo-mobile {
    width: 280px;
  }
}
@media screen and (max-width: 1125px) {
  .contenu {
    margin-top: 50vh;
  }

  .bgimg-presentation {
    height: 100vh;
  }

  .bgimg-prestations {
    height: 100vh;
  }

  .bgimg-references {
    height: 100vh;
  }

  .bgimg-jobs {
    height: 100vh;
  }
}
@media screen and (max-width: 782px) {
  #portrait {
    height:auto;
  }
  .info {
    width: 100%;
    left: 0;
    top: 0;
  }
}

/* Scrolldown Mobile */
a:hover {
  text-decoration: none;
}

.scrolldown {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10%;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 10;
}

.scrolldown-container {
  position: relative;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
/* Special Effects */
.jumbotron:hover {
  border-radius: 1rem !important;
}

.card:hover {
  border-radius: 1rem !important;
}

.card-img-top:hover {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

#rotate:hover {
  transform: rotate(45deg);
}

/* Partenaires */

.flexbox-partenaires {
display:flex;
flex-wrap: wrap;
width:100%;
padding-right: 50px;
justify-content: space-between;
align-items: center;
margin-bottom: 50px;
}
.flexbox-partenaires > div {
width:fit-content;
}

/* e-tec */
.container-e-tec {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 78%; /* 4:3 Aspect Ratio */
  }
  
  .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  }
