@import url("https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sulphur+Point:wght@300;400;700&display=swap");
@import url("https://fonts.cdnfonts.com/css/berlin-sans-fb-demi");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translate(-10rem);
  }
  80% {
    transform: translate(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translate(20rem);
  }
  80% {
    transform: translate(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInLCA {
  0% {
    transform: translateY(6rem);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes AmineSlogan {
  0% {
    opacity: 1;
    transform: translateY(3rem);
    color: #000;
  }
  100% {
    color: #00b050;
    opacity: 1;
    transform: translate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "Sulphur Point", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  zoom: 1;
}

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

section {
  margin-top: 25px;
  margin-bottom: 25px;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  padding-bottom: 6rem;
}

.heading-primary-main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.heading-primary-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInRight 5s ease-in-out;
}

.heading-primary-pageone {
  display: block;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 2rem;
  animation-name: moveInLeft;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
}

.slogan-heading {
  display: block;
  color: #000;
  margin-top: 20vh;
  font-size: 4rem;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #AE323F, #C53A49);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.slogan__paragraphe {
  display: block;
  color: #000;
  margin-top: 2rem;
  font-size: 1.8rem;
}

h1 {
  width: 90%;
  margin: auto;
  font-size: 3rem;
  color: #333;
  margin: auto;
  font-family: "Berlin Sans FB Demi", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  padding-right: 50px;
  background-color: rgba(255, 255, 255, 0.6);
}

h2 {
  width: 90%;
  margin: auto;
  background: linear-gradient(135deg, transparent 5%, #00b050, transparent 95%);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 300;
  padding: 10px;
  font-family: "Berlin Sans FB Demi", sans-serif;
  margin-bottom: 15px;
}

h3 {
  width: 100%;
  margin: auto;
  background: linear-gradient(135deg, #0D1821, transparent 95%);
  color: #00b050;
  text-align: left !important;
  font-size: 2rem;
  font-weight: 300;
  padding: 10px;
  font-family: "Belanosima", sans-serif;
  text-transform: capitalize;
}

@media screen and (max-width: 991px) {
  h2 {
    width: 100%;
  }
}
p {
  font-size: 1em;
  font-weight: 400;
}

.u-center-text {
  text-align: center;
}

.u-margin-bottom-small {
  margin-bottom: 2rem;
}

.u-margin-bottom-mediun {
  margin-bottom: 4rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-top-mediun {
  margin-top: 4rem;
}

.u-margin-top-big {
  margin-top: 8rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--blue {
  background-color: #0D1821;
  color: #fff;
}
.btn--blue::after {
  background-color: #0D1821;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #00b050;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #00b050;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #00b050;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.contact {
  position: relative;
  padding: 50px 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-size: cover;
}

.contact .contact_content {
  max-width: 800px;
  text-align: center;
}

.contact .contact_content h3 {
  font-size: 36px;
  font-weight: 500;
  color: #000;
}

.contact .contact_content .box p {
  font-weight: 300;
  color: #000;
}

.contact_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contact_container .contact_info {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.contact_container .contact_info .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contact_container .contact_info .box .icon_contact {
  min-width: 60px;
  height: 60px;
  background: #00b050;
  color: #0D1821;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.contact_container .contact_info .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #000;
  flex-direction: column;
  font-weight: 300;
}

.contact_container .contact_info .box .text h3 {
  font-size: 22px;
  font-weight: 500;
  color: #00b050;
  padding: 0;
  margin: 0;
  padding-bottom: 5px;
}

.contact_container .contact_info .box .text p {
  color: #000;
  font-size: 16px;
}

.contact_form {
  width: 40%;
  padding: 40px;
  background: #fff;
}

.contact_form h2 {
  font-size: 30px;
  color: #00b050;
  font-weight: 500;
}

.contact_form .inputbox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact_form .inputbox input,
.contact_form .inputbox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #00b050;
  outline: none;
  resize: none;
}

.contact_form .inputbox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
}

.contact_form .inputbox input:focus ~ span,
.contact_form .inputbox input:valid ~ span,
.contact_form .inputbox textarea:focus ~ span,
.contact_form .inputbox textarea:valid ~ span {
  color: #00b050;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact_form .inputbox input[type=submit] {
  width: 100%;
  background: #00b050;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .contact {
    padding: 20px;
  }
  .contact_container {
    flex-direction: column;
  }
  .contact_container .contact_info,
  .contact_container .contact_form {
    margin-bottom: 40px;
    width: 100%;
  }
  .contact_content {
    width: 100%;
  }
  .contact_container .contact_info .box .text p {
    font-size: 12px;
  }
}
.section-actus {
  width: 100vw;
  height: auto;
  background: white;
  overflow: hidden;
}

.section-actus h2 {
  text-align: center;
  font-size: 4rem;
  display: block;
  padding-bottom: 50px;
  padding-top: 10px;
}

.cardsActus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cardActus {
  position: relative;
  width: 250px;
  height: 350px;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 18px;
  background: white;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.9);
  border: 1px solid #0e3959;
}

.cardActus .ImgBoxActus {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.cardActus .ImgBoxActus img {
  border-radius: 15px 15px 0 0;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.cardActus-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.cardActus-text .date {
  color: #eeb509;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.cardActus-text p {
  color: grey;
  font-size: 15px;
  font-weight: 300;
  padding: 5px 10px;
}

.cardActus-text h2 {
  margin: 0px;
  padding: 5px 10px;
  font-size: 18px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: transparent;
  color: #00b050;
}

.cardActus-categorie {
  text-align: center;
  background: #00b050;
  color: white !important;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 0 0 15px 15px;
}

.cardActus-categorie h2 {
  padding: 0;
  font-size: 18px;
  color: white !important;
  background: transparent;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 450px) {
  .section-actus {
    height: auto;
  }
  .cardsActus {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 10px;
  }
  .cardActus {
    margin-bottom: 15px;
  }
  .section-actus h2 {
    text-align: center;
    font-size: 2rem;
  }
}
.icon {
  display: block !important;
  position: absolute;
  z-index: 1000;
  top: 10px; /* Ajustez la position verticale selon vos besoins */
  right: 10px; /* Ajustez la position horizontale selon vos besoins */
}

.icon i {
  font-size: 30px;
  color: #C53A49;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.icon i:hover {
  color: #AE323F;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.actus_page p {
  width: 80%;
  margin: auto;
  padding: 25px;
  font-size: 1.4em;
  text-align: center;
}

.cards_service {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.cards_service h3 {
  padding-left: 20px;
}

@media only screen and (max-width: 1000px) {
  .cards_service {
    flex-direction: column;
    height: auto;
  }
}
.carte {
  cursor: pointer;
  width: 340px;
  height: 480px;
  position: relative;
  margin-bottom: 20px;
}

.devant, .derriere {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  position: absolute;
  transition: transform 0.6s linear;
  background-color: rgba(0, 0, 0, 0.2);
}

.devant img {
  height: 100%;
  width: 100%;
  opacity: 90%;
}

.devant h3 {
  width: 100%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0D1821;
  background: linear-gradient(135deg, #0D1821, transparent 170%);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.entreprisetitre {
  color: #00b050 !important;
}

.entreprisetexte {
  color: #fff !important;
}

.enbas {
  top: 90% !important;
}

.devant p {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #0D1821;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.devant {
  transform: perspective(600px) rotateY(0deg);
}

.derriere {
  background: #f1f1f1;
  transform: perspective(600px) rotateY(180deg);
}

.contenu-carte {
  position: relative;
  color: #000;
  text-align: center;
  width: 90%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.contenu-carte h2 {
  color: linear-gradient(253deg, #00b050);
  display: block;
  padding-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.contenu-carte p {
  font-size: 0.8em;
  text-align: justify;
}

.derriere a {
  position: absolute;
  left: 70px;
  bottom: 25px;
  width: 200px;
  text-align: center;
  padding: 10px 10px;
  background: linear-gradient(135deg, transparent 5%, #f1f1f1 20%, white 50%, #f1f1f1 80%, transparent 95%);
  border-radius: 5px;
  text-decoration: none;
  color: #00b050;
  font-size: 1em;
  border: 2px solid #00b050;
}

.derriere a:hover {
  color: #fff;
  background: #00b050;
}

.contenu-carte .sophrologie {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

.carte:hover .devant {
  transform: perspective(600px) rotateY(-180deg);
}

.carte:hover .derriere {
  transform: perspective(600px) rotateY(0deg);
}

.section_realisation {
  background: url(../img/background-presentation-lcpaysages.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  margin-top: 50px;
}

.portfolio-contenu {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-wrap {
  width: calc(25% - 10px); /* Calcul de la largeur pour 3 divs par ligne avec un espace de 10px entre */
  margin-bottom: 10px; /* Espacement vertical entre les divs */
  text-align: center;
  padding: 20px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0.6;
}

.portfolio-wrap:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .portfolio-contenu {
    flex-direction: column;
  }
  .portfolio-wrap {
    width: 100%;
  }
}
.row {
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

header {
  background: url(../img/accueil-tecso-min.webp);
  background-position: bottom;
  background-size: cover;
  position: relative;
}

.accueil {
  width: 100%;
  height: 90vh;
  background-position: bottom;
  background-size: cover;
  position: relative;
}

.accueil-annexe {
  width: 100%;
  background-position: bottom;
  background-size: cover;
  position: relative;
}

.logo-tams {
  border-radius: 50%;
  width: 180px;
  display: block;
  margin: 180px auto 0;
  padding: 10px;
}

.info {
  width: 100%;
  height: 70vh;
  margin: auto;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.S_tecso {
  color: #00b050;
  font-family: "Berlin Sans FB Demi", sans-serif;
  font-weight: 700;
}

.description {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}

.description h2 {
  width: 100%;
  margin: 0 50px 0 0;
  font-size: 1.2rem;
  line-height: 20px;
  color: #00b050;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  display: block;
  text-align: right;
  font-weight: 600;
}

.accueil h3 {
  width: 100%;
  text-align: right;
  font-size: 2.5em;
  background: transparent;
  text-shadow: 0 2px 2px #000000;
  color: #0D1821;
  margin-top: 70px;
  padding-right: 50px;
  font-family: "Dancing Script", cursive;
  font-weight: 500;
  display: block;
}

.accueil p, .accueil-annexe p {
  width: 90%;
  margin: auto;
  margin-top: 150px;
  font-size: 35px;
  padding: 10px;
  padding-left: 50px;
  font-weight: 500;
  text-align: center;
  color: #0D1821;
  background-color: rgba(0, 0, 0, 0.3);
  font-family: "Dancing Script", cursive;
}

.sous-titre {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #f1f1f1;
  margin: 5px 0;
  text-shadow: 0 0 10px #000;
}

.header-content {
  width: 100%;
  height: 80vh;
}

.header-content-annexe {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.header-menu {
  margin: 20px auto;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box {
  text-align: center;
}

.img-box img {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.main-annexe-img {
  width: 40% !important;
}

.photographe {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 20px;
}

.photographe p {
  width: 100%;
  color: #C53A49;
  padding-left: 20px;
  text-align: center;
}

.photographe img {
  width: 150px;
  padding: 10px;
  border-radius: 20px;
  margin: auto;
}

@media screen and (max-width: 992px) {
  .img-box {
    width: 100%;
  }
  .header-content, .header-content-annexe {
    display: grid;
    grid-template-columns: 100%;
  }
  .accueil {
    height: auto;
  }
  .header-menu {
    flex-direction: column;
  }
  .img-box img {
    width: 350px;
  }
  .logo-tams {
    margin: 120px auto 0;
  }
  .accueil h1 {
    font-size: 35px;
  }
  .sous-titre {
    font-size: 22px;
  }
  .btn-accueil {
    width: 150px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin: 15px auto 0;
  }
}
@media screen and (max-width: 400px) {
  .accueil, .accueil-annexe {
    height: auto;
  }
  .img-box img {
    width: 250px;
  }
  .accueil h1, .accueil-annexe h1 {
    font-size: 2em;
    padding: 25px;
    text-align: center;
    margin: 0;
  }
  .accueil h2, .accueil-annexe h2 {
    font-size: 1.2em;
    padding: 20px;
    text-align: center;
    margin: 0;
  }
  .accueil p, .accueil-annexe p {
    width: 100%;
    font-size: 1.2em;
    padding: 15px;
    text-align: justify;
    margin: 0;
    width: 100%;
  }
  .sous-titre {
    font-size: 15px;
  }
  .btn-accueil {
    width: 130px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .photographe {
    width: 300px;
    flex-direction: column;
    margin: auto;
  }
  .accueil h3 {
    margin: 0;
  }
}
.signature {
  margin-top: 5px !important;
  text-align: right !important;
}

footer {
  width: 100%;
  background-color: #999;
}

.main-content {
  display: flex;
}

.main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}

.footer__logo {
  height: 5rem;
  margin-top: 1rem;
}

.box h2 {
  color: #cccccc;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  padding: 0;
  background: transparent;
  text-align: left;
}

.box h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  background: transparent;
  text-align: left;
}

.box .content {
  margin: 20px 0 0 0;
  position: relative;
  color: #fff;
}

.box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #fff;
}

.box .content:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 15%;
  background: #cccccc;
  top: -10px;
}

.left .content p {
  font-size: 1rem;
  color: #fff;
  text-align: justify;
  width: 80%;
}

.center .content .social {
  margin: 20px 0 0 0;
  text-align: center;
}

.center .content .social a {
  padding: 0 10px;
}

.center .content .social a span {
  height: 50px;
  width: 50px;
  color: #00b050;
  background-color: #fff;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.center .content .social a span:hover {
  color: #00b050;
  background-color: #0D1821;
}

.right .liens a span {
  color: #fff;
  font-size: 1.2rem;
}

.right .liens a {
  text-decoration: none;
}

.right .liens a span:hover {
  color: #00b050;
}

.bottom center {
  padding: 5px;
  font-size: 1rem;
  background: #00b050;
}

.bottom center span {
  color: #fff;
  font-size: 1rem;
}

.bottom center a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
}

.bottom center a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  footer {
    position: relative;
    bottom: 0px;
  }
  .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .main-content .box {
    margin: 5px 0;
    padding: 10px 10px;
  }
  .left .content p {
    width: 100%;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-left: 20px;
  position: relative;
  z-index: 3;
}

.logo img {
  padding: 10px;
  height: 100px;
}

.nav-links {
  display: flex;
  margin-top: 25px;
  padding-right: 100px;
  padding-left: 25px;
  list-style: none;
  position: relative;
  background: #00b050;
  border-radius: 20px 0 0 20px;
}

.nav-links li {
  margin: 0 15px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0D1821;
  border-bottom: 3px solid #0D1821;
}

/* Menu burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #cccccc;
  margin: 4px 0;
  transition: 0.4s;
}

.drapeau {
  width: 40px;
}

/* Styles responsives */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
  }
  .navbar.active {
    height: 600px;
  }
  .logo img {
    height: 50px;
  }
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: -100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: 0.5s;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
    padding-left: 20px;
  }
  .nav-links:hover li {
    margin: 20px 0;
    padding-left: 20px;
    color: #00b050;
  }
  .menu-toggle {
    display: flex;
    padding: 10px;
  }
}
.contenu {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contenu .BoxImg {
  width: auto;
}

.contenu .BoxImg img {
  width: 800px;
  padding: 10px;
  border-radius: 20px;
}

.contenu .BoxText {
  width: 50%;
  padding: 10px;
}

.contenu .BoxText p {
  text-align: justify;
  padding: 5px;
}

.contenu_entreprise {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: start;
}

.contenu_entreprise .BoxImg {
  width: auto;
}

.contenu_entreprise .BoxImg img {
  width: 300px;
  padding: 10px;
  border-radius: 20px;
}

.contenu_entreprise .BoxText {
  width: 50%;
  padding: 10px;
}

.contenu_entreprise .BoxText p {
  text-align: justify;
  padding: 5px;
}

.presentation_services {
  width: 80%;
  margin: auto;
}

.presentation_services {
  text-align: justify;
}

@media screen and (max-width: 500px) {
  .contenu_entreprise {
    flex-direction: column;
  }
  .contenu_entreprise .BoxText, .contenu .BoxText {
    width: 100%;
  }
  .contenu .BoxImg img {
    width: 100%;
    height: auto;
  }
}
.video-container {
  position: relative;
  width: 80%;
  margin: auto;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Section Slogan Parallax */
.slogan-parallax {
  width: 100%;
  height: 350px;
  padding: 50px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5)), url(../img/work-drilling-tesco-2.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slogan-parallax p {
  font-size: 2rem;
  font-weight: 300;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-family: "Dancing Script", cursive;
}

.btn_contact a {
  border-radius: 10px;
  background: #00b050;
  color: #0D1821;
  text-align: center;
  font-size: 18px;
  display: block;
  width: 200px;
  height: 65px;
  line-height: 65px;
  text-decoration: none;
  margin: 30px auto 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn_contact_particulier a {
  background: #0D1821;
  color: #00b050;
}

.slogan-parallax a:hover {
  background: #00b050;
  color: #fff;
}

.moncv {
  width: 80%;
  height: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #AE323F;
}

.moncv img {
  margin-left: 50px;
  height: 100px;
}

.moncv a {
  color: #fff;
  font-size: 25px;
  margin-right: 50px;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.moncv:hover {
  background: #00b050;
}

.mecontacter {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .content_entreprise, .content_particulier {
    width: 100%;
    flex-direction: column;
  }
  .slogan-parallax {
    height: auto;
  }
  .moncv {
    width: 95%;
    flex-direction: column;
    margin-top: 100px;
  }
  .moncv img {
    margin-top: -85px;
    height: 100px;
    margin-left: 0;
  }
  .moncv a {
    font-size: 15px;
    margin-right: 0;
  }
}

/*# sourceMappingURL=tams-editions.css.map */
