@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;800&display=swap");
@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: #53A2BE;
    opacity: 1;
    transform: translate(0);
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
}

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

.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, #003566, #001D3D);
  -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: 2rem;
}

.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;
  margin-top: 10px;
  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: #003566;
  color: #53A2BE;
}
.btn--blue::after {
  background-color: #003566;
}
.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: #53A2BE;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #53A2BE;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #53A2BE;
  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);
}

.multi_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-message {
  text-align: center;
}

.contact-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-bottom: 3px solid e87000;
  display: block;
  transition: all 0.3s;
}

.zone__input {
  max-width: 100%;
  margin-bottom: 2rem;
}

.form__textarea {
  height: 10rem;
  width: 100%;
  resize: vertical;
}

.zone__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #53A2BE;
}

.zone__input:focus:invalid {
  border-bottom: 3px solid #003566;
}

.zone__input::-webkit-input-placeholder {
  color: #999;
}

.form__textarea:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #53A2BE;
}

.form__textarea:focus:invalid {
  border-bottom: 3px solid #003566;
}

.form__textarea::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.zone__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__textarea:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__envoyer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.content_contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  padding: 25px;
}

.visu img {
  width: 200px;
}

.item_contact {
  width: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
}

.item_contact p {
  margin-left: 50px;
  font-size: 1.2em;
}

.ligne_contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 10px;
  gap: 30px;
}

.items_contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #53A2BE;
}

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

.contenu_partenaires h3 {
  padding-left: 0;
}

@media only screen and (max-width: 1000px) {
  .contenu_partenaires {
    flex-direction: column;
    margin: 10px;
    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: 60%;
}

.devant h3 {
  width: 100%;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

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

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

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

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

.contenu-carte p {
  font-size: 12px;
  text-align: justify;
}

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

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

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

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

.content__lejas .textBox {
  background: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  padding: 30px;
  border-radius: 0 20px;
}

.content__lejas .textBox p {
  width: 95%;
  margin: auto;
  line-height: 25px;
  font-size: 15px;
  font-weight: 600;
  text-align: justify;
}

.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: 320px;
  height: 450px;
  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: 210px;
  overflow: hidden;
  margin-bottom: 20px;
}

.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: 10px 15px;
  text-align: justify;
}

.cardActus-text h2 {
  margin: 0px;
  padding: 5px 10px;
  font-size: 18px;
  text-align: center;
}

.cardActus-categorie {
  text-align: center;
  background: #0e3959;
  color: white;
  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;
}

@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: #FFC300;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.icon i:hover {
  color: e87000;
  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;
}

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

.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: 400px) {
  .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/background-ctv05.jpg);
  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;
}

.accueil h1, .accueil-annexe h1 {
  font-size: 6em;
  text-shadow: 0 2px 2px #000000;
  color: #fff;
  margin: 10px 0 0 0;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.accueil h2, .accueil-annexe h2 {
  font-size: 3em;
  text-shadow: 0 2px 2px #000000;
  color: #FFC300;
  margin: 10px 0 0 0;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.accueil p, .accueil-annexe p {
  margin: 10px 0 0 0;
  font-size: 1.6em;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: left;
}

.accueil span {
  color: #FFC300;
  text-shadow: 0 2px 2px #000000;
}

.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;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

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

.info {
  position: relative;
  right: 0px;
}

.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;
}

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

@media screen and (max-width: 992px) {
  .img-box {
    width: 100%;
  }
  .header-content, .header-content-annexe {
    display: grid;
    grid-template-columns: 100%;
  }
  .accueil {
    height: 750px;
  }
  .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: 3em;
    padding: 25px;
  }
  .accueil h2, .accueil-annexe h2 {
    font-size: 2em;
    padding: 20px;
  }
  .accueil p, .accueil-annexe p {
    font-size: 1.2em;
    padding: 15px;
    text-align: justify;
  }
  .sous-titre {
    font-size: 15px;
  }
  .btn-accueil {
    width: 130px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
}
footer {
  width: 100%;
  background-image: radial-gradient(circle at 17% 77%, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.04) 50%, rgba(197, 197, 197, 0.04) 50%, rgba(197, 197, 197, 0.04) 100%), radial-gradient(circle at 26% 17%, rgba(64, 64, 64, 0.04) 0%, rgba(64, 64, 64, 0.04) 50%, rgba(244, 244, 244, 0.04) 50%, rgba(244, 244, 244, 0.04) 100%), radial-gradient(circle at 44% 60%, rgba(177, 177, 177, 0.04) 0%, rgba(177, 177, 177, 0.04) 50%, rgba(187, 187, 187, 0.04) 50%, rgba(187, 187, 187, 0.04) 100%), linear-gradient(19deg, rgb(28, 117, 250), rgb(2, 67, 159));
}

.main-content {
  display: flex;
}

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

.footer__logo {
  height: 3.5rem;
  margin-top: 1rem;
  margin-bottom: 10px;
}

.box h2 {
  margin-top: 3rem;
  color: #FFFBFA;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  border-bottom: none;
}

.box h3 {
  margin-top: 1rem;
  color: #FFFBFA;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.box .footercontent {
  margin: 20px 0 0 0;
  position: relative;
}

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

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

.left .footercontent p {
  font-size: 1.2rem;
  color: #FFFBFA;
  text-align: justify;
  width: 80%;
}

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

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

.center .footercontent .social a span {
  height: 50px;
  width: 50px;
  color: #FFFBFA;
  background-color: #0066cc;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.center .footercontent .social a span:hover {
  color: #0066cc;
  background-color: #FFFBFA;
}

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

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

.right .liens a span:hover {
  color: #0066cc;
}

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

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

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

.bottom center a:hover {
  color: #FFFBFA;
  text-decoration: none;
}

@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%;
  }
}
/* Menu */
.row_nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav {
  background: transparent;
}

nav::after {
  content: "";
  clear: both;
  display: table;
}

nav .logo {
  width: 150px;
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  padding-left: 60px;
}

.logo img {
  height: 100px;
}

.menu {
  width: 90%;
  margin-top: 30px;
}

nav ul {
  float: right;
  margin-top: 25px;
  padding-right: 100px;
  padding-left: 25px;
  list-style: none;
  position: relative;
  background-color: #FFC300;
  border-radius: 20px 0 0 20px;
}

nav ul li {
  float: left;
  display: inline-block;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 15px;
}

nav ul li a:hover {
  color: #003566;
  border-bottom: 3px solid #003566;
}

nav ul ul li a:hover {
  box-shadow: none;
  border-top: none;
}

nav ul ul li a:hover::before {
  content: ">> ";
}

nav ul ul {
  position: absolute;
  top: 90px;
  border-bottom: 3px solid #003566;
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s;
}

nav ul ul ul {
  background-color: transparent;
  border-top: none;
}

nav ul li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav ul ul li {
  position: relative;
  margin: 0px;
  width: 320px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(5, 5, 5, 0.4);
  z-index: 2;
}

nav ul ul li a {
  font-size: 16px;
  line-height: 50px;
}

nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 320px;
}

.show, .icon, input {
  display: none;
}

@media all and (max-width: 968px) {
  nav ul {
    margin-right: 0px;
    float: left;
  }
  nav .logo {
    padding-left: 30px;
    width: 100%;
  }
  .show + a, ul {
    display: none;
  }
  nav ul li, nav ul ul li {
    display: block;
    width: 100%;
  }
  nav ul li a:hover {
    box-shadow: none;
  }
  .show {
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover {
    color: #00aeef;
  }
  .icon {
    display: block;
    color: #00aeef;
    position: absolute;
    top: 10px;
    padding: 4px;
    right: 40px;
    line-height: 35px;
    cursor: pointer;
    font-size: 35px;
  }
  nav ul ul {
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  nav ul ul a {
    padding-left: 40px;
  }
  nav ul ul ul a {
    padding-left: 80px;
  }
  nav ul ul ul li {
    position: static;
  }
  [id^=btn]:checked + ul {
    display: block;
  }
  nav ul ul li {
    border-bottom: 0px;
  }
  span.cancel:before {
    content: "\f00d";
  }
}
.contenu {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenu .BoxImg {
  width: auto;
  margin: auto;
}

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

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

.contenu .BoxText p {
  font-size: 14px;
  text-align: justify;
}

h2 {
  font-size: 25px;
  color: #003566;
  text-transform: uppercase;
  padding-left: 50px;
  padding-right: 50px;
}

h3 {
  font-size: 20px;
  color: #53A2BE;
  text-transform: uppercase;
  padding-left: 50px;
}

.titre {
  width: 80%;
  margin: auto;
  background: linear-gradient(135deg, transparent 5%, #b0a897 20%, #FFC300 50%, #b0a897 80%, transparent 95%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-titre {
  width: 50px;
  height: 50px;
  padding: 5px;
}

.position_btn {
  display: flex;
  justify-content: right;
}

.portrait {
  height: 500px;
}

.thumb {
  display: flex;
  padding: 20px;
}

.thumb li:hover {
  transform: translateY(-20px);
}

.thumb li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}

.thumb li img {
  width: 100px;
}

@media screen and (max-width: 400px) {
  h3 {
    padding-left: 0;
  }
  h2 {
    font-size: 15px;
    color: #003566;
    text-transform: uppercase;
    padding-left: 50px;
    padding-right: 50px;
  }
  .contenu .BoxText {
    width: 100%;
    padding: 10px;
  }
  .contenu {
    flex-direction: column;
  }
  .thumb {
    padding: 5px;
    flex-wrap: wrap;
  }
  .thumb li img {
    width: 50px;
  }
  iframe {
    width: 350px;
    height: 250px;
  }
}
.alerte {
  background: red;
  text-align: center;
}

.alerte h2 {
  color: white !important;
}

.bandeau-conge {
  width: 100%;
  background-color: #ffcc00;
  color: #000;
  padding: 10px 0;
  font-weight: bold;
  overflow: hidden;
  z-index: 9999;
  height: 50px;
  font-size: 20px;
}

.bandeau-conge .texte {
  display: inline-block;
  white-space: nowrap;
  animation: defilement 15s linear infinite;
}

@keyframes defilement {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.lespointsforts {
  display: flex;
  justify-content: center;
  align-items: start;
}

.contenu_acces {
  width: 300px;
  padding: 15px;
  text-align: center;
  margin: auto;
}

.contenu_acces .img-number {
  width: 50px;
}

.contenu_acces h3 {
  text-align: left !important;
  padding: 0;
}

.contenu_acces p {
  font-size: 15px;
  text-align: justify;
}

.acces-item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 400px) {
  .lespointsforts {
    flex-direction: column;
  }
}
.accueil-actus {
  width: 100%;
  height: 40vh;
  background: url(../img/infos_news.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.accueil-actus h1 {
  font-size: 6em;
  text-shadow: 0 2px 2px #000000;
  background: linear-gradient(135deg, transparent 5%, #fff 50%, transparent 95%);
  color: e87000;
  margin: 10px 0 0 0;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
}

.accueil-actus p {
  font-size: 15px;
}

@media screen and (max-width: 450px) {
  .accueil-actus h1 {
    font-size: 3em;
    padding-left: 0;
  }
}
.domotique_content {
  width: 60%;
  margin: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.domotique_content .info p {
  width: 80%;
  margin: 10px auto 0;
  font-size: 1.2em;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: justify;
  color: #000;
}

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

.domotique_content .img-box img {
  width: 60%;
  margin: 0 auto;
}

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

.sous-titre_domotique {
  font-size: 1.2em;
  text-align: center;
}

.partenaire_domotique {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partenaire_domotique img {
  width: 450px;
  height: auto;
}

@media screen and (max-width: 400px) {
  .domotique_content {
    display: grid;
    grid-template-columns: 100%;
    width: 90%;
    margin: auto;
  }
  .domotique_content .info p {
    width: 100%;
    font-size: 1.2em;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: justify;
    color: #000;
  }
  .items_domotique {
    flex-direction: column;
  }
  .partenaire_domotique {
    flex-direction: column;
    width: 95%;
    margin: auto;
  }
  .sous-titre_domotique {
    font-size: 1.2em;
    text-align: center;
  }
  .domotique_content h3 {
    font-size: 1.6em;
  }
}
.items_VS {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item_VS {
  width: 300px;
  height: 450px;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.item_VS h3 {
  font-size: 1.6em;
  text-align: center;
  padding-left: 0;
}

.item_VS p {
  font-size: 1.2em;
}

.img-number {
  width: 100px;
  height: auto;
}

@media screen and (max-width: 400px) {
  .items_VS {
    flex-direction: column;
  }
}
#somfy {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.btn-somfy {
  /* display: block; */
  width: 300px;
  padding: 10px 5px;
  color: orange;
  background: #003366;
  font-weight: bold;
  text-transform: uppercase;
}

.btn-somfy:hover {
  color: #003366;
  background: orange;
}

.contenu_somfy2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.contenu_somfy2 .imgBox img {
  width: 500px;
  height: auto;
}

.BoxSomfy {
  width: 60%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.BoxSomfy .imgBox img {
  width: 500px;
  height: auto;
}

.BoxSomfy .textBox {
  padding: 20px;
  font-size: 1.6em;
}

.galerie_somfy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.galerie_somfy .item_galerie_somfy img {
  width: 300px;
}

.paragraphesomfy {
  text-align: justify !important;
  padding: 10px 5px;
}

@media screen and (max-width: 900px) {
  .contenu_somfy2 {
    flex-direction: column;
  }
  .contenu_somfy2 .imgBox img {
    width: 100%;
    height: auto;
  }
  .BoxSomfy {
    flex-direction: column;
    margin-top: 20px;
  }
  .BoxSomfy .imgBox img {
    width: 100%;
    height: auto;
  }
}
.container_interphonie {
  height: auto;
  display: grid;
  place-items: center center;
}

.interphonie_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 20px;
  grid-gap: 40px;
}

.interphonie_card {
  background-image: radial-gradient(circle at 17% 77%, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.04) 50%, rgba(197, 197, 197, 0.04) 50%, rgba(197, 197, 197, 0.04) 100%), radial-gradient(circle at 26% 17%, rgba(64, 64, 64, 0.04) 0%, rgba(64, 64, 64, 0.04) 50%, rgba(244, 244, 244, 0.04) 50%, rgba(244, 244, 244, 0.04) 100%), radial-gradient(circle at 44% 60%, rgba(177, 177, 177, 0.04) 0%, rgba(177, 177, 177, 0.04) 50%, rgba(187, 187, 187, 0.04) 50%, rgba(187, 187, 187, 0.04) 100%), linear-gradient(19deg, rgb(28, 117, 250), rgb(2, 67, 159));
  background-size: cover;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.19);
}

.interphonie_card .imgBox {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.interphonie_card .imgBox img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

.interphonie_card .imgBox::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, rgb(28, 117, 250), rgb(2, 67, 159));
  opacity: 0.3;
  border-radius: 20px 20px 0 0;
}

.interphonie_card .textBox {
  padding: 20px 10px;
}

.interphonie_card .textBox h3 {
  color: orange;
  font-weight: 600;
  font-size: 24px;
  margin: 10px 0 15px 0;
}

.interphonie_card .textBox p {
  color: #ffffff;
}

.interphonie_atous_texte {
  position: absolute;
  top: 50%; /* poussé de la moitié de hauteur du référent */
  left: 70%;
  transform: translate(-50%, -50%); /* tiré de la moitié de sa propre hauteur */
  text-align: justify;
  padding-left: 30px;
}

.interphonie_principal_atous_texte {
  position: absolute;
  top: 50%; /* poussé de la moitié de hauteur du référent */
  left: 30%;
  transform: translate(-50%, -50%); /* tiré de la moitié de sa propre hauteur */
  text-align: justify;
  padding-left: 30px;
}

@media only screen and (max-device-width: 770px) {
  .interphonie_atous_texte,
  .interphonie_principal_atous_texte {
    position: relative;
    top: 0; /* poussé de la moitié de hauteur du référent */
    left: 0;
    transform: translate(0);
  }
}
.interphonie_content {
  width: 60%;
  margin: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.interphonie_content .info p {
  width: 80%;
  margin: 10px auto 0;
  font-size: 1.2em;
  padding-left: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: justify;
  color: #000;
}

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

.interphonie_content .img-box img {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 400px) {
  .interphonie_content {
    display: grid;
    grid-template-columns: 100%;
    width: 90%;
    margin: auto;
  }
  .interphonie_content .info p {
    width: 100%;
    font-size: 1.2em;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: justify;
    color: #000;
  }
  .items_interphonie {
    flex-direction: column;
  }
  .partenaire_interphonie {
    flex-direction: column;
    width: 95%;
    margin: auto;
  }
  .sous-titre_interphonie {
    font-size: 1.2em;
    text-align: center;
  }
  .interphonie_content h3 {
    font-size: 1.6em;
  }
}
.items_AI {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item_AI {
  width: 300px;
  height: 650px;
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.item_AI h3 {
  font-size: 1.6em;
  text-align: center;
  padding-left: 0;
}

.item_AI p {
  font-size: 1.2em;
}

.img-number {
  width: 100px;
  height: auto;
}

.Alarme_Honeywell {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.Alarme_Honeywell .textBox p {
  font-size: 15px;
  text-align: justify;
}

.Alarme_Honeywell img {
  width: 300px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 400px) {
  .items_AI {
    flex-direction: column;
  }
  .item_AI {
    height: auto;
  }
  .Alarme_Honeywell {
    width: 100%;
    padding: 10px;
  }
}
.wifi p {
  font-size: 1.4em;
  text-align: center;
}

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

.container_cards {
  position: relative;
  width: 1400px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.container_cards:hover .wifi-card {
  filter: blur(20px);
  transform: scale(0.9);
  opacity: 0.5;
}

.container_cards .wifi-card:hover {
  filter: blur(0px);
  transform: scale(1.1);
  opacity: 1;
}

.container_cards .wifi-card {
  position: relative;
  width: 300px;
  height: 420px;
  background-color: #0066cc;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.container_cards .wifi-card .circle {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: circle(160px at center 0);
  text-align: center;
}

.container_cards .wifi-card .circle h3 {
  text-align: center;
  font-size: 2em;
  padding: 40px 0;
}

.container_cards .wifi-card .content {
  position: absolute;
  bottom: 10px;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.container_cards .wifi-card .content p {
  color: #fff;
  font-size: 1.3em;
}

@media screen and (max-width: 400px) {
  .container_Wifi {
    flex-direction: column;
    width: 100%;
  }
  .container_cards {
    width: 100%;
    flex-direction: column;
  }
  .container_cards .wifi-card {
    margin: auto;
    margin-bottom: 20px;
  }
}
.temperature h3 {
  font-size: 2em;
  color: #003566;
  padding: 5px;
  text-align: center;
}

.temperature_content {
  width: 60%;
  margin: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.temperature_content .info {
  padding: 10px;
}

.temperature_content .info p {
  width: 80%;
  font-size: 1.2em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: justify;
  color: #000;
}

.temperature_content .info h5 {
  font-size: 1.4em;
  color: #003566;
  padding: 5px;
}

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

.temperature_content .img-box img {
  width: 60%;
  margin: 0 auto;
}

.temperature_content .img-box2 img {
  width: 100px !important;
}

.map-responsive {
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 400px) {
  .temperature_content {
    width: 100%;
    margin: auto;
    height: auto;
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
  }
}

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