@charset "UTF-8";
.color-secondary {
  color: #CA802B;
  font-size: 18px;
}

@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: #C8EAFE;
    opacity: 1;
    transform: translate(0);
  }
}
@font-face {
  font-family: "ArialNova-Light";
  src: url("../fonts/ArialNova-Light.woff2") format("woff2"), url("../fonts/ArialNova-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "ArialNova-Light", sans-serif;
}

html {
  font-size: 100%;
}

.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, #024064, #024064);
  -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;
}

h2 {
  width: 100%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 25px;
  text-align: center;
  color: #024064;
  text-transform: uppercase;
  font-family: "ArialNova-Light", sans-serif;
}

h3 {
  font-size: 15px;
  color: #CA802B;
  padding: 15px 0;
  text-transform: uppercase;
}

p {
  line-height: 1.5; /* 1.5 fois la hauteur de la police */
  padding: 5px;
}

.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: #525252;
  color: #fff;
}
.btn--blue::after {
  background-color: #CA802B;
}
.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: #C8EAFE;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #C8EAFE;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #525252;
  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);
}

.container_contact {
  position: relative;
  width: 100%;
  min-height: 60vh;
  padding: 2rem;
  background-color: #C8EAFE;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #024064;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #C8EAFE);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 2rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #C8EAFE;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: -15px;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #C8EAFE;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: -1.6rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #C8EAFE;
  font-size: 0.95rem;
  color: #024064;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #024064;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: static;
}

.contact-info .title {
  color: #024064;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #024064, #C8EAFE);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #024064, #C8EAFE);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #C8EAFE;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }
  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }
  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }
  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }
  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }
  .text {
    margin: 1rem 0 1.5rem 0;
  }
  .social-media {
    padding: 1.5rem 0 0 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }
  .contact-info:before {
    display: none;
  }
  .square,
  .big-circle {
    display: none;
  }
  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }
  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .icon {
    width: 23px;
  }
  .input {
    padding: 0.45rem 1.2rem;
  }
  .btn {
    padding: 0.45rem 1.2rem;
  }
}
.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);
}

/*------ Accueil ------*/
header {
  background: #CA802B;
  background-position: bottom;
  background-size: cover;
  position: relative;
}

.accueil {
  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 {
  text-align: center;
  font-size: 80px;
  text-shadow: 0 2px 2px #C8EAFE;
  color: #024064;
  margin: 10px 0 0 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
  letter-spacing: 5px;
}

.accueil h2 {
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.accueil span {
  color: #C8EAFE;
  text-shadow: 0 2px 2px #CA802B;
}

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

.btn-accueil {
  border-radius: 10px;
  color: #fff;
  background: #024064;
  text-align: center;
  font-size: 18px;
  display: block;
  width: auto;
  text-decoration: none;
  margin: 30px auto 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  border: solid 2px #024064;
}

.btn-accueil:hover {
  background: #fff;
  color: #024064;
  border: solid 2px #024064;
}

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

.info {
  position: relative;
  text-align: center;
}

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

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

.img-box img {
  width: 650px;
  margin: 0 auto;
  transition: top 1s, left 1s;
}

.img-box .main-img {
  transform: scale(0.95);
}

.img-box:hover .back-img {
  top: 10px;
}

.img-box:hover .main-img {
  transform: scale(0.9);
}

.top_barre {
  width: 100%;
  height: 70px;
  background: #C8EAFE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.top_barre_left {
  margin-left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
}

.top_barre_right {
  margin-right: 50px;
}

.logo {
  width: 60px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .img-box {
    width: 100%;
  }
  .header-content {
    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;
    padding: 5px;
  }
  .sous-titre {
    font-size: 22px;
  }
  .btn-accueil {
    width: 250px;
    font-size: 18px;
    margin: 15px auto 0;
  }
  .top_barre {
    font-size: 12px;
  }
  .top_barre_left {
    margin-left: 5px;
  }
  .top_barre_right {
    margin-right: 5px;
  }
  .top_barre_right p {
    width: 100%;
  }
  .header-content .header-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 400px) {
  .accueil {
    height: 650px;
  }
  .img-box img {
    width: 250px;
  }
  .accueil h1 {
    font-size: 30px;
  }
  .sous-titre {
    font-size: 15px;
  }
  .btn-accueil {
    width: 250px;
    font-size: 16px;
  }
}
footer {
  width: 100%;
  background-color: #CA802B;
}

.main-content {
  display: flex;
}

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

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

.box h2 {
  width: 100%;
  margin-top: 3rem;
  color: #024064;
  background: #CA802B;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding: 0;
}

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

.box .content-footer {
  margin: 20px 0 0 0;
  position: relative;
}

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

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

.left .content p {
  font-size: 1rem;
  color: #024064;
  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: #fff;
  background-color: #C8EAFE;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}

.center .content .social a span:hover {
  color: #fff;
  background-color: #024064;
}

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

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

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

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

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

.bottom center a {
  font-size: 1rem;
  color: #fff;
  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%;
  }
}
/* Menu */
.row_nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

nav .logo {
  width: 180px;
  height: auto;
  float: left;
  color: #024064;
  font-size: 27px;
  font-weight: 600;
  padding-left: 60px;
}

.logo img {
  height: 100px;
}

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

nav ul {
  position: absolute;
  right: 0;
  margin-right: 100px;
  list-style: none;
}

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

nav ul li a {
  color: #024064;
  line-height: 70px;
  text-decoration: none;
  font-size: 14px;
  padding: 12px 15px;
}

nav ul li a:hover {
  color: #fff;
  border-top: 3px solid #024064;
}

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-top: 3px solid #00aeef;
  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: 14px;
  line-height: 50px;
}

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

.show {
  display: none;
}

.logo-menu {
  display: none;
}

@media all and (max-width: 968px) {
  nav ul {
    margin-right: 0px;
    float: left;
  }
  nav .logo {
    padding-left: 30px;
    width: 50%;
  }
  .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";
  }
  .logo-menu {
    display: block;
    width: 60px;
    z-index: 200;
    margin-right: 20px;
  }
}
#about-me {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #C8EAFE;
}

.abonnement {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fff;
}

#la-solution {
  margin-top: 50px;
  margin-bottom: 50px;
}

.contenu {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contenu-about-me {
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contenu .imgBox, .contenu-about-me .imgBox {
  width: 50%;
  display: flex;
}

.contenu .imgBox img, .contenu-about-me .imgBox img {
  width: 100%;
}

.contenu .textBox, .contenu-about-me .textBox {
  width: 50%;
  padding: 20px;
}

.contenu .textBox p, .contenu-about-me .textBox p {
  text-align: justify;
}

.histoire {
  background: #C8EAFE;
  color: #fff;
}

.monhistoire {
  width: 60%;
  margin-top: 100px;
  margin-top: 100px;
  margin: auto;
  padding: 15px 0;
  background: #C8EAFE;
  color: #fff;
}

.monhistoire h2 {
  color: #fff !important;
  text-align: center !important;
}

.monhistoire .contenu_monhistoire {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}

.monhistoire .contenu_monhistoire .imgBox_nomhistoire img {
  height: 300px !important;
  width: auto !important;
  padding: 10px;
}

.monhistoire .contenu_monhistoire .textBox_nomhistoire p {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .contenu, .contenu-about-me {
    width: 100%;
    flex-direction: column;
  }
  .contenu .imgBox, .contenu-about-me .imgBox {
    width: 100%;
    padding: 10px;
  }
  .contenu .textBox, .contenu-about-me .textBox {
    width: 100%;
    padding: 10px;
  }
  .monhistoire {
    width: 100%;
  }
}
.container {
  width: 95%;
  display: flex;
  background-color: #f4f4f4;
  margin: auto;
}

.services-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 20px;
}

button {
  width: 350px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 14px;
  background-color: #C8EAFE;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-color: #CA802B;
  color: #C8EAFE;
}
button:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* Section de contenu */
.image-container {
  position: relative;
  display: flex;
  align-items: center;
}

.image-container .imgBox img {
  width: 100%; /* Ajuste l'image à la taille de son conteneur */
  max-width: 600px; /* Limite la largeur de l'image */
  height: auto;
}

.text-overlay {
  width: 600px;
  color: #000;
  font-size: 1em;
  text-align: justify;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  margin-right: 15px;
  border: 1px solid #C8EAFE;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-overlay h3 {
  text-align: left !important;
  padding: 5px;
}

.content {
  display: flex;
  justify-content: center;
  padding: 20px;
}

/* Masquer tout le contenu par défaut */
.content-item {
  display: none;
}

/* Afficher uniquement le contenu actif */
.content-item.active {
  display: block;
}

@media screen and (max-width: 1300px) {
  .image-container {
    flex-direction: column;
    padding: 0;
  }
  .text-overlay {
    margin-right: 0;
  }
}
.icon_logo {
  width: 25px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .container {
    flex-direction: column;
    width: 100%;
  }
  .services-menu {
    margin-left: 0;
  }
  .image-container {
    flex-direction: column;
    padding: 0;
  }
  .content {
    padding: 0;
  }
  .text-overlay {
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 5px;
    margin-right: 0;
  }
}
.EcoResponsable {
  width: 400px !important;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.EcoResponsable img {
  width: 550px !important;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-bottom: 15%; /* Ratio 16:9 */
  height: 320px;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.h2_video {
  position: absolute;
  top: 5px;
  color: #fff;
  text-align: center !important;
}

.video-container p {
  position: absolute;
  bottom: 15px;
  color: #000;
  background: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  padding: 10px;
}

.rse2 {
  background: #C8EAFE;
  color: #fff;
}

.contenu-rse2 {
  width: 95% !important;
  margin: 50px auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contenu-rse2 h3, .contenu-rse2 p {
  text-align: left !important;
  padding: 10px 0;
}

@media screen and (max-width: 992px) {
  .EcoResponsable img {
    width: 100% !important;
    height: auto;
  }
  .EcoResponsable {
    width: 100%;
    padding: 0 !important;
  }
}
.client-reviews {
  background-color: #CA802B;
  padding: 50px 20px;
  text-align: center;
}

.client-reviews h2 {
  text-align: center;
}

.reviews-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.review-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 1.1em;
  color: #777;
  margin-bottom: 10px;
  font-style: italic;
}

.review-author {
  font-size: 0.9em;
  color: #999;
  text-align: right;
  font-weight: bold;
}

.star-rating {
  color: goldenrod;
  font-size: 25px;
}

.video-sec {
  background: #C8EAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
}

.flag {
  width: 25px;
  height: auto;
}

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