/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");


@font-face {
    font-family: "BrittanySignature";
    src: url("fonts/BrittanySignature.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "HomemadeApple";
    src: url("fonts/HomemadeApple.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --menu-color: #12627c;
  --menu-color-light: #187492;
  --menu-color-lighten: #12627c;
  --white-color: #fff;
  --text-color: #333;
  --body-color: hsl(220, 100%, 97%);
  --default-color: #000;
  --main1-color: #9addf3;
  --main2-color: #76c4df;
  --main3-color: #53b5d6;
  --main4-color: #38a4c9;
  --wng1-color: #dba300;
  --wng2-color: #fcde87;
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --title1-font: "BrittanySignature", cursive;
  --title2-font: "Playwrite DE LA", cursive;
  --txt-manuscrit-font: "HomemadeApple", cursive;
  
  
  --normal-font-size: .938rem;
  --h2-font-size: 1.25rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  /*background-color: var(--body-color);*/
  /*background: url('../../images/background.png') no-repeat;
  background-size: 50%;
  background-position: center;
  background-attachment: fixed;*/
}

/*=============== MAIN ===============*/
main {
  position: absolute;
  top: 100px;
  left: 10px;
  right: 10px;
  /*height: 80%;*/
  /*border: 3px solid #805252;*/
}
h5 {
  color: green;
  align-items: center;
  font-size: 25px;
}
h6 {
  color: red;
  align-items: center;
  font-size: 25px;
}

.blank {
  height: 50px;
}
.blank__all {
  height: 50px;
}

.title1 {
  font-size: 40px;
  font-family: var(--title2-font);
  color: var(--menu-color);
  text-align: center;
}
.title2 {
  font-size: 30px;
  font-family: var(--title1-font);
  text-align: center;
}
.title3 {
  font-size: 30px;
  font-family: var(--title2-font);
  color: var(--menu-color);
  text-align: center;
}
.title4 {
  font-weight: bold;
  font-size: 45px;
  font-family: var(--title1-font);
  color: var(--menu-color);
  text-align: center;
}
.text1 {
  color: var(--white-color);
  padding-top: 5px;
}
.sub__div {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: row;
  padding-top:10px;
}
.sub-title1 {
  font-weight: bold;
  font-size: 16px;
  color: var(--menu-color);
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
}

.sub-title1:first-of-type { 
  animation: showup 15s infinite;
  /*animation: showup 7s;*/
}

.sub-title1:last-of-type {
  width:0px;
  animation: reveal 15s infinite;
  /*animation: reveal 7s;*/
}


.sub-title1:last-of-type span {
  margin-left:-355px;
   color: var(--main4-color);
  animation: slidein 15s infinite;
  /*animation: slidein 7s;*/
}

@keyframes showup {
    0% {opacity:0;}
    10% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes slidein {
    0% { margin-left:-800px; }
    10% { margin-left:-800px; }
    25% { margin-left:0px; }
    100% { margin-left:0px;}
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    10% {opacity:1;width:0px;}
    20% {width:190px;}
    80% {opacity:1;}
    100% {opacity:0;width:190px;}
}


/*.title3 {
  font-size: 20px;
  font-family: var(--title2-font);
}*/
#bubble-1 {
  font-size: 15px;
  background-color: var(--main1-color);
  border-radius: 20% 20% 0% 20% / 20% 20% 0% 20%;
  padding: 40px;
  text-align: center;
  max-width: 650px;
}
#bubble-2 {
  font-size: 15px;
  background-color: var(--main2-color);
  border-radius: 50% 50% 0% 50% / 50% 50% 0% 50%;
  /*padding: 40px;*/
  min-width: 300px;
  max-width: 500px;
  height: 150px;
  text-align: center;
}
#bubble-3 {
  font-size: 15px;
  background-color: var(--main3-color);
  border-radius: 50% 50% 50% 0% / 50% 50% 50% 0%;
  /*padding: 40px;*/
  min-width: 300px;
  max-width: 500px;
  height: 150px;
  text-align: center;
}
#bubble-4 {
  font-size: 15px;
  background-color: var(--main4-color);
  border-radius: 50% 0% 50% 50% / 50% 0% 50% 50%;
  /*padding: 40px;*/
  min-width: 300px;
  max-width: 500px;
  height: 150px;
  text-align: center;
}
#bubble-5 {
  font-size: 16px;
  background-color: var(--main4-color);
  /*font-family: var(--title2-font);*/
  border-radius: 50%;
  padding: 10px;
  width: 11rem;
  height: 11rem;
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--white-color);

  -webkit-box-shadow:0px 0px 21px 3px rgba(46,189,255,0.9);
  -moz-box-shadow: 0px 0px 21px 3px rgba(46,189,255,0.9);
  box-shadow: 0px 0px 21px 3px rgba(46,189,255,0.9);
  /* https://cssbud.com/css-generator/css-glow-generator/ 21px / 3px / 90% #2ebdff */
}
#bubble-5:hover {
  cursor: default;
  -webkit-box-shadow:0px 0px 21px 10px rgba(46,189,255,0.9);
  -moz-box-shadow: 0px 0px 21px 10px rgba(46,189,255,0.9);
  box-shadow: 0px 0px 21px 10px rgba(46,189,255,0.9);
}
#bubble-6 {
  font-size: 17px;
  background-color: var(--menu-color);
  /*font-family: var(--title2-font);*/
  width: 130px;
  height: 65px; /* as the half of the width */
  border-top-left-radius: 110px;  /* 100px of height + 10px of border */
  border-top-right-radius: 110px; /* 100px of height + 10px of border */
  border-bottom: 0;
  /*  border-radius: 50% 50% 0% 0% / 50% 50% 0% 0%;
  padding: 10px;
  width: 150px;
  height: 150px;
  text-align:top;
  justify-content: center;*/
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--white-color);
  cursor: pointer;
}
#bubble-6:hover {
  cursor: default;
  background-color: var(--menu-color-light);
  cursor: pointer;
}



.bubble__rotation {
  /*width: 350px;
  height: 400px;*/
  perspective: 800px;

}

.bubble__rotation:hover > .container__bubble {
  cursor: pointer;
  transform: rotateY(180deg);
}

.container__bubble {
  /*height: 90%;
  width: 100%;*/
  position: relative;
  transition: transform 1500ms;
  transform-style: preserve-3d;
}

.container__bubble li {
  padding: 1px;
  font-size: 10px;
}

.bubble__front,
.bubble__back {
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  position: absolute;
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 20px;
}

.bubble__front {
   /*background-color: var(--menu-color);*/
}

.bubble__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bubble__back a,
.bubble__back a:visited {
  cursor: pointer;
  text-decoration: underline;
}



.container__center {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-size: 14px;
  padding: 0;

}
.array {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-size: 14px;
  /*border: 3px solid #805252;*/
}

hr {
  border: none;
  border-top: 3px double var(--menu-color);
  color: var(--menu-color);
  overflow: visible;
  text-align: center;
  height: 5px;
  width: 100%;
  margin: 15px;
}
.array-b {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
  padding: 0;
  overflow:hidden;
  /*-webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translate3d(0,0,0);  */
  /*border: 3px solid #805252;*/
}
.array-c {
  display: flex;
  justify-content:space-around;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-size: 14px;
  width: 1120px;
}
.array-d {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-size: 14px;
  /*border: 3px solid #805252;*/
  width: 100%;
}
.array-e {
  text-align: left;
  justify-content:left;
  align-items: left;

}

.array a {
  font-size: 16px;
  color: var(--menu-color);
  font-weight: bold;
  cursor: pointer;
}
.array a:hover {
  font-size: 16px;
  color: var(--menu-color);
  font-weight: bold;
  text-decoration: underline;
}
.array-b a,
.array-b a:visited{
  font-size: 14px;
  color: var(--menu-color);
  font-weight: bold;
  cursor: pointer;
}
.array-b a:hover{
  font-size: 14px;
  color: var(--menu-color);
  font-weight: bold;
  text-decoration: underline;
}
.array-d a,
.array-d a:visited {
  font-size: 14px;
  color: var(--menu-color);
  font-weight: bold;
  cursor: pointer;
}
.array-d a:hover {
  font-size: 14px;
  color: var(--menu-color);
  font-weight: bold;
  text-decoration: underline;
}
.array-details {
  display: flex;
  justify-content:left;
  align-items: left;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  padding: 2px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;

  /*border: 3px solid #805252;*/
  /*perspective: 800px;*/
  /*transition: transform 1500ms;
  transform-style: preserve-3d;*/
}



.array-blog {
  display: flex;
  justify-content:left;
  align-items: left;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  /*border: 3px solid #805252;*/
}

.array-blog a, 
.array-blog a:visited {
  font-size: 14px;
  color: var(--main4-color);
  font-weight: bold;
  cursor: pointer;
}
.array-blog a:hover {
  font-size: 14px;
  color: var(--main4-color);
  font-weight: bold;
  text-decoration: underline;
}
.array-details-2 {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  padding: 2px;
  width: 100%;
  color: var(--menu-color);
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  /*border: 3px solid #805252;*/
}
.array-maincolumn {
  padding: 15px;
  min-width: 500px;
  display: flex;
  align-items: center;
  justify-content:center;
}
.array-maincolumn-small {
  color: white;
  padding: 15px;
  min-width: 200px;
}
.array-subcolumn {
  color: black;
  padding: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; 
  justify-content:center;
  align-items: center;  
}
.array-subcolumn2 {
  display: flex;
  flex-direction: rows;
  align-items: center;
  color: black;
  padding: 15px;
  width: 100%;
}

.publication-blog {
  padding: 0px 0px 10px 10px;
  font-size: 12px;
}

.pack-title {
  width: 50%;
  max-width: 500px;
  display: flex;
  align-items: center;
  /*justify-content:center;*/
  background-color: var(--main2-color);
  border-radius: 20px;
  margin:10px;
}
.pack-title:hover{
  cursor: pointer;
  text-decoration: underline;
  background-color: var(--main1-color);
}
.pack-title a,
.pack-title a:visited {
  width:100%;
  color: var(--main-color);
 }
.pack-title a:hover {
  width:100%;
  color: var(--main-color);
}
.pack-link {
  color: var(--main-color);
  font-size: 15px;
  font-weight: bold;
}
.array-subcolumn2 img {
  width: 70px;
  vertical-align:middle;
  padding: 5px;
}
.array-title {
  font-weight: bold;
}
.array-subtitle {
  font-style: italic;
  font-size: 14px;
}

.array li {
  padding: 15px;
  font-size: 16px;
}
.description {
  display: block;
  align-items: center;
  justify-content:center;
  /*overflow-wrap: break-word;*/
}
.description-blog {
  display: block;
  align-items: left;
  justify-content: left;
  text-align: left;
  /*overflow-wrap: break-word;*/
}
.description-blog p {
  padding: 0px 0px 10px 10px;
}
.desc-txt {
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  text-align: right;
  max-width: 600px;
}
.desc-txt-2 {
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  text-align: left;
  max-width: 600px;
}
.desc-sign {
  font-weight: bold;
  font-size: 35px;
  padding: 10px;
  text-align: right;
  font-family: var(--title1-font);
  color: var(--menu-color);
}

.desc-img img {
  max-width: 300px;
}

.image-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin-bottom: 10px;
}
.image-gallery img {

  width: 200px;
  border-radius: 50%;
  /*clip-path:ellipse(50% 33%);*/
  border: 6px solid var(--main4-color);
}


ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}



h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 20px;
  color: var(--menu-color);
}
h2 {
  margin: 1rem 0;
  padding-left: 0.5rem;
  font-size: 16px;
  font-weight: bold;
  color: var(--menu-color);
  background: linear-gradient(to right, var(--main1-color), white);
}
h3 {
  margin: 1rem 0;
  padding-left: 0.5rem;
  font-size: 16px;
  font-weight: bold;
  color: var(--wng1-color);
  background: linear-gradient(to right, var(--wng2-color), white);
}
.wng1 {
  font-size: 16px;
  font-weight: bold;	
  color: var(--wng1-color);
}
.wng1-txt li {
  font-weight: bold;	
  color: var(--wng1-color);
}
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
  font-size: 14px;
}
.accordion-item a, 
.accordion-item a:visited {
  color:var(--menu-color);
  font-size: 12px;
  font-weight: bold;
}

.accordion-item a:hover {
    color: var(--menu-color);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}


ul.pre-loader {
  margin-top: 10%;
  text-align: center;
}
ul.pre-loader li{
  list-style-type: none;
  font-family: var(--title1-font);
  font-weight: bold;
  color: var(--menu-color);
  display: inline;
  font-size: 3em;
  animation: pre-load 3s linear; /* infinite;*/
}
@keyframes pre-load {
  0% {
    color: var(--menu-color);
	text-shadow: none;
  }
  20% {
    color: var(--main1-color);
	text-shadow: 0 0 7px var(--main1-color), 0 0 50px var(--main2-color);
  }
  40% {
    color: var(--menu-color);
	text-shadow: none;
  }
  60% {
    color: var(--menu-color);
	text-shadow: none;
  }
  80% {
    color: var(--menu-color);
	text-shadow: none;
  }
  100% {
    color: var(--menu-color);
	text-shadow: none;
  }  
}
ul li:nth-child(1) {
  animation-delay: .2s;
}
ul.pre-loader li:nth-child(2) {
  animation-delay: .4s;
}
ul.pre-loader li:nth-child(3) {
  animation-delay: .6s;
}
ul.pre-loader li:nth-child(4) {
  animation-delay: .8s;
}
ul.pre-loader li:nth-child(5) {
  animation-delay: 1s;
}  
ul.pre-loader li:nth-child(6) {
  animation-delay: 1.2s;
}  
ul.pre-loader li:nth-child(7) {
  animation-delay: 1.4s;
}  
ul.pre-loader li:nth-child(8) {
  animation-delay: 1.6s;
}    
ul.pre-loader li:nth-child(9) {
  animation-delay: 1.8s;
} 
ul.pre-loader li:nth-child(10) {
  animation-delay: 2s;
} 
ul.pre-loader li:nth-child(11) {
  animation-delay: 2.2s;
} 
ul.pre-loader li:nth-child(12) {
  animation-delay: 2.4s;
} 
ul.pre-loader li:nth-child(13) {
  animation-delay: 2.6s;
} 
ul.pre-loader li:nth-child(14) {
  animation-delay: 2.8s;
} 

/*=============== SECTION ===============*/
section {
  width: 75%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}
.hidden-section {
  display: none;
}        
form {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
form input,
form select,
form textarea {
  /*width: 100%;*/
  padding: 10px;
  margin-bottom: 5px;
  border: 2px solid #ddd;
  outline: none;
  border-radius: 4px;
  transition: 0.5s ease; 
}
form input:hover,
form textarea:hover {
  border: 2px solid var(--main4-color);
}
form button {
  background-color: var(--main4-color);
  font-size: 17px;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s ease;
}
form button:hover {
  background-color: var(--main3-color);
}
.form-full {
  width: 99%;
}
.form-small {
  width: 49%;
}
      input::placeholder {
        color: #1c87c9;
        opacity: 1;
      }

      /*input:placeholder-shown {
        border: 1px solid #095484;
      }*/
.form-mandatory::placeholder {
  color: red;
}
.txt-mandatory {
  font-size: 12px;
  color: red;
}
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
legend {
  background-color: var(--menu-color);
  color: #fff;
  padding: 3px 6px;
  -moz-border-radius:8px;	
  border-radius:8px;
}
fieldset {
  color: var(--menu-color);
  padding:16px;	
  -moz-border-radius:8px;	
  border-radius:8px;
  border: 3px solid var(--menu-color);
  align-items: left;
}	
.form-radio{
  display: flex;
  align-items: left;
  justify-content: left;
  text-align: left;
  font-size: 14px;
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
 
  /*border: 3px solid #805252;*/
}
.radio__txt {
  display: flex;
  flex-direction: row;
}
/*
form input[type=text] {
  color: var(--main4-color);
  font-weight: bold;
}*/
/*
textarea:invalid {
  border: 2px dashed red;
}
textarea:valid {
  border: 2px solid lime;
}*/

.contact-msg {
  flex: 1;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-info {
  flex: 1;
  max-width: 400px;
  padding: 20px;
  background-color: var(--main2-color);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-info h3{
  font-size: 26px;
  color: #101010;
  margin-top: 25px;
  margin-bottom: 10px;
}
.contact-info p{
  color: #fff;
  line-height: 1.4;
}
.contact-info img {
  max-width: 200px;
}


/*=============== CGV ===============*/
.article {
    display: flex;
    justify-content: left;
    padding: 10px;
    max-width:900px;
    margin: auto;
}
.article a,
.article a:visited {
    color:var(--menu-color);
    text-transform: unset;
    display: unset;
    position: unset;
}
.article a:hover {
    color: var(--menu-color);
}
.article li {
    list-style-type:square;
    margin-left: 15px;
    flex-grow: 1;
}
.info {
    padding-left: 10px;
    text-align: left;
    margin: 0 5px 0 5px;   
}
.info img {
	border-radius: 0;
    border: 0px;
}
.info-title {
    font-family: inherit;
    font-weight: bold;
    color: var(--menu-color);
    font-size: 25px;
}
.info-title2 {
    font-family: inherit;
    font-weight: bold;
    color: var(--menu-color);
    font-size: 18px;
}
.info-subtitle {
    font-family: inherit;
    font-style: italic;
    color: var(--menu-color);
    font-size: 16px;
}
.info-subtitle2 {
    font-family: inherit;
    font-weight: bold;
    color: var(--menu-color);
    font-size: 15px;
    margin-top: 10px; 
}
.info-details {    
    font-family: inherit;
    font-style: normal;
    color: black;
    font-size: 14px;
    margin-top: 10px;   
}
.info-details2 {    
    font-family: inherit;
    font-style: bold;
    color: var(--menu-color);
    font-size: 14px;
    margin-top: 10px;   
}
.info-details3 {    
    font-family: inherit;
    font-style: bold;
    color: var(--menu-color);
	text-align: center;
    font-size: 16px; 
	white-space: nowrap;
}
.info-subdetails {    
    font-family: inherit;
    font-style: italic;
    color: black;
    font-size: 14px;
    margin-top: 10px;   
}
.subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--menu-color);
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: auto;
}
.container-home {
  position: relative;
  /*border: 3px solid #805252;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-home div {
  width: 400px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-home .home-1 {
  height: 350px;
  background-color: var(--main1-color);
  border-radius: 40% 40% 40% 0% / 40% 40% 40% 0%;
  padding: 10px;
  text-align: center;    
  font-family: var(--txt-manuscrit-font);
  font-size: 20px;
}
.home-1 {
  height: 350px;
  background-color: var(--main1-color);
  border-radius: 40% 40% 40% 0% / 40% 40% 40% 0%;
  padding: 10px;
  text-align: center;    
  font-family: var(--txt-manuscrit-font);
  font-size: 20px;
}
.container-home .home-2 {
  background-color: var(--main2-color);
  color: white;
  border-radius: 40% 0% 40% 40% / 40% 0% 40% 40%;
  padding: 10px;
  text-align: center;    
}
.container-home .home-3 {
  width: 500px;
  background-color: var(--main3-color);
  color: white;
  border-radius: 40% 40% 0% 40% / 40% 40% 0% 40%;
  padding: 10px;
  text-align: center;  
}
.home-4 {
  width: 300px;	
  background-color: var(--main4-color);
  color: white;
  border-radius: 0% 40% 40% 40% / 0% 40% 40% 40%;
  padding: 10px;
  text-align: center;  
}
.container-home a, a:visited {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  text-transform: none;
}
.container-home a:hover {
  font-size: 14px;
  font-weight: bold;
  color: var(--menu-color);
}




@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:0}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}

/*=============== CARD ===============*/
.container__swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 70vh;*/
}

.card__container {
  /*padding-block: 5rem;*/
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.card__content {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.card__article {
  width: 300px; /* Remove after adding swiper js */
  border-radius: 1.25rem;
  overflow: hidden;
}

.card__image {
  position: relative;
  background-color: var(--main4-color);
  padding-top: 1.5rem;
  margin-bottom: -.75rem;
  height: 230px;
}

.card__image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

.card__data {
  height: 300px;
  background-color: var(--menu-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.card__data a, 
.card__data a:visited {
  color: var(--menu-color);
}

.card__data a:hover {
  background-color: var(--main3-color);
  color: var(--white-color);
}

.card__img {
  width: 180px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.card__shadow {
  width: 200px;
  height: 200px;
  background-color: var(--main1-color);
  border-radius: 50%;
  position: absolute;
  top: 3.75rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  filter: blur(45px);
}

.card__name {
  font-size: var(--h2-font-size);
  font-weight: bold;
  color: var(--main1-color);
  margin-bottom: .75rem;
}

.card__description {
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: var(--white-color);
}

.card__button {
  display: inline-block;
  background-color: var(--main1-color);
  padding: .75rem 1.5rem;
  border-radius: .25rem;
  color: var(--menu-color);
  font-weight: 600;
}

.card__link {
  position: absolute;
  width: 100%;
  align-items: center;
  bottom: 15px;
  left: 0px;
}


/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  /*width: initial;
  height: initial;*/
  font-size: 3rem;
  color: var(--menu-color);
  /*display: none;*/
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: hsl(212, 32%, 40%);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--main3-color);
}





.container__rotation {
  width: 350px;
  height: 400px;
  perspective: 800px;
}

.container__rotation:hover > .container__card {
  cursor: pointer;
  transform: rotateY(180deg);
}

.container__card {
  height: 90%;
  width: 100%;
  position: relative;
  transition: transform 1500ms;
  transform-style: preserve-3d;
}

.card__front,
.card__back {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
  position: absolute;
  backface-visibility: hidden;
  color: var(--white-color);
  padding: 20px;
}

.card__front {
   background-color: var(--menu-color);
}

.card__back {
  background-color: var(--menu-color-light);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.card__back a,
.card__back a:visited {
  cursor: pointer;
  text-decoration: underline;
  color: var(--white-color);
}
.manuscrit {
  text-align: center;    
  /*font-family: var(--txt-manuscrit-font);*/
  font-style: italic;
  font-size: 20px;
}
.question {
  text-align: center;    
  font-size: 30px;
  font-family: var(--body-font);
}
.apropos {
  text-align: center;    
  font-size: 20px;
  font-family: var(--body-font);
}
.card__title {
  text-align: center;    
  font-size: 30px;
  font-family: var(--body-font);
  font-weight: bold;  
}
.card__text {
  text-align: center;    
  font-size: 17px;
  font-family: var(--body-font);
}


/*
.container__rotation {
  position: relative;
  width: 250px;
  height: 350px;
  background: green;
}
.container__card {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  background: yellow;
}
.container__card:hover {
  transform: rotateY(180deg);	
}
.card__front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #ffc728;
  color: #333;
  text-align: center;
  font-family: 'Arial';
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
}
.card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: #fafafa;
  color: #333;
  text-align: center;
  font-family: 'Arial';
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;  
  transform: rotateY(180deg);
}*/

.array a, a:visited {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  text-transform: none;
}
.array a:hover {
  font-size: 14px;
  font-weight: bold;
  color: var(--menu-color);
}






  
/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--menu-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== FOOTER ===============*/
footer {
    position:fixed;
    bottom:0;
    width: 100%;
    height:30px;
    background: var(--menu-color);
 }
 .footer-content {
    max-width: 1000px;
    margin: auto;
    text-align: left;
    padding: 5px 0 0 0;
    display: flex;
    justify-content: space-between;  
	color: var(--white-color);
	font-size: 14px;
 }
footer img {
    margin:0;
}
footer a,
footer a:visited {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
    text-transform: none;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
footer a:hover {
    color: #fff;
    cursor: pointer;
}
.footer_devis {
  position:fixed;
  bottom:40px;
  width: 100%;
  height:30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}
.footer_devis a,
.footer_devis a:visited {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}
.footer_devis a:hover {
    color: #fff;
    cursor: pointer;
}


/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  position: relative; 
}


.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  /*position: relative;*/
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

/*.nav__logo img {
  position: absolute;
  height: 70px;
  top: 5px;
  left: 25px;
}
*/
.nav__logo img {
  position: absolute;
  height: 150px;
  top: 5px;
  left: 25px;
}
.nav__title {
  position: absolute;
  top: 25px;
  left: 190px;
  color: var(--white-color);
  font-family: var(--title1-font);
  font-size: 30px;
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

.nav__link {
  color: var(--white-color);
  background-color: var(--menu-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--menu-color-light);
}
.nav__link i {
  position: absolute;
}




/*=============== ANIMATION SETTINGS ===============*/
.reveal-loaded .reveal [class*="reveal-"] {
    opacity: 0!important;
    animation: none!important;
    transition: 0s!important;
}
.reveal-loaded [class*="reveal-"]{
    animation: revealAnimation 1s cubic-bezier(.5, 0, 0, 1) both;
}
.reveal-loaded .reveal-2 {
    animation-delay: .2s;
}
.reveal-loaded .reveal-3 {
    animation-delay: .3s;
}
.reveal-loaded .reveal-4 {
    animation-delay: .4s;
}
.reveal-loaded .reveal-5 {
    animation-delay: .5s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-loaded  [class*="reveal-"] {
    animation: none!important;
  }
}
@keyframes revealAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* For medium devices 
@media screen and (min-width: 768px) {
  .array-c {
    display: flex;
	flex-direction: column;
	justify-content: center;
    text-align: center;
  }   
}*/

/* Navigation for mobile devices */
@media screen and (max-width: 1120px) {
  main {
    top: 70px;
  }
  footer {
	display:none;
  }  
  .sub-title1 {
    font-size: 15px;
  }

  @keyframes reveal {
    0% {opacity:0;width:0px;}
    10% {opacity:1;width:0px;}
    20% {width:180px;}
    80% {opacity:1;}
    100% {opacity:0;width:180px;}
  }  
  .footer_devis {
    bottom: 10px;
  }
  .blank {
	height: 5px;
  }
  .nav {
    position: initial;
  }
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--menu-color);
    padding-top: 1rem;
  }
  .nav__logo img {
    position: absolute;
    height: 45px;
    top: 5px;
    left: 5px;
  }
  .nav__title {
    position: absolute;
    top: 15px;
    left: 60px;
    color: var(--white-color);
    font-family: var(--title1-font);
    font-size: 20px;
  }
  .array {
    display: block;
    text-align: center;
  } 
 
  .array-maincolumn {
    min-width: 300px;
  }     
  .array-subcolumn {
    /*display: flex;*/
	justify-content:center;
    min-width: 300px;
  }  
  .array-subcolumn2 {
    max-height: 50px;
	text-align: left;
  }  
  .array-subcolumn2 img {
    max-width: 40px;
  }  
  .pack-title {
    width: 100%;
	max-width: 95%;
  }
  .desc-txt {
    text-align: left;  
  }
  
  .tabContent-bubble {
	flex-wrap: wrap;
	/*flex-direction: column;*/
	justify-content: space-around;
  }
  .desc-img img {
    max-width: 250px;
  }
  section {
    flex-direction: column;
	align-items: center;
	width: 100%;
  }
  form,
  .contact-info {
    width: 90%;
	margin-bottom: 20px;
	margin-right: 0px
  }
  .form-radio {
     display: block;
  }
  .bigscreen {
	display:none;
  } 
  .container-home div {
	margin-bottom: 50px;
  }
  .tabContent-des-flex {
    flex-direction: column;
  }
  .slideShow{
    width: 190px;
  } 
  .content figure{
    height: 120px;
  }
  .content figure:nth-child(1){
    transform: rotateY(0deg) translateZ(150px);
  }
  .content figure:nth-child(2){
    transform: rotateY(72deg) translateZ(150px);
  }
  .content figure:nth-child(3){
    transform: rotateY(144deg) translateZ(150px);
  }
  .content figure:nth-child(4){
    transform: rotateY(216deg) translateZ(150px);
  }
  .content figure:nth-child(5){
    transform: rotateY(288deg) translateZ(150px);
  }
  .content figure:nth-child(6){
    transform: rotateY(200deg) translateZ(150px);
  }
  .content figure:nth-child(7){
    transform: rotateY(240deg) translateZ(150px);
  }
  .content figure:nth-child(8){
    transform: rotateY(280deg) translateZ(150px);
  }
  .content figure:nth-child(9){
    transform: rotateY(320deg) translateZ(150px);
  }
}



/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--menu-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: italic;
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--menu-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
/*.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}*/
.dropdown__item:hover .dropdown__menu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--menu-color-lighten);
  width: 300px;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    /*margin-inline: 1rem;*/
  }

  .nav__link {
    padding-inline: 1rem;
  }
  .card__data {
    padding: 1rem;
  }
  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }    
}
@media screen and (max-width: 800px) {
  .array-c {
    display: flex;
	flex-direction: column;
	justify-content: center;
    text-align: center;
  } 
  #bubble-1 {
    border-radius: 50% 50% 0% 50% / 10% 10% 0% 10%;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }
  .nav__bonus {
	display:none;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
	width: 300px;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  /*
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }*/
  
  .container-home div {
    position: absolute;
  }
  .container-home {
    width: 1000px;
    height: 500px;
    margin: 50px;
  }
  .container-home .home-1 {
    top: 20%;
    left: 0;
  }
  .container-home .home-2 {
    top: 0;
    right: 15%;
  }
  .container-home .home-3 {
    bottom: 0;
    right: 0;
  }

  .card__container {
    max-width: 1120px;
  }

  .swiper-button-prev {
    width: initial;
    height: initial;	  
    left: -1rem;
  }
  .swiper-button-next {
    width: initial;
    height: initial;	  
    right: -1rem;
  } 

  .smallscreen {
	display:none;
  } 
  .slideShow{
    width: 290px;
  } 
  .content figure{
    height: 170px;
  }
  .content figure:nth-child(1){
    transform: rotateY(0deg) translateZ(250px);
  }
  .content figure:nth-child(2){
    transform: rotateY(72deg) translateZ(250px);
  }
  .content figure:nth-child(3){
    transform: rotateY(144deg) translateZ(250px);
  }
  .content figure:nth-child(4){
    transform: rotateY(216deg) translateZ(250px);
  }
  .content figure:nth-child(5){
    transform: rotateY(288deg) translateZ(250px);
  }
  .content figure:nth-child(6){
    transform: rotateY(200deg) translateZ(250px);
  }
  .content figure:nth-child(7){
    transform: rotateY(240deg) translateZ(250px);
  }
  .content figure:nth-child(8){
    transform: rotateY(280deg) translateZ(250px);
  }
  .content figure:nth-child(9){
    transform: rotateY(320deg) translateZ(250px);
  }
}




/*
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #75E9F7;
}

img {
  width: 100%;
}
*/

.container-tab {
  max-width: 70rem;
  margin: 2rem auto;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

/* Tab Button */
.tab {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 6rem;
}

.tab button {
  background: #ecfbff;
  border: none;
  cursor: pointer;
  outline: none;
  transition: all .5s ease;
}

.tab button:hover {
  background-color: #fff;
  opacity: 0.6;
}

.button-wrap {
  height: 100%;
}
.button-wrap h4 {
  margin-top: .5rem;
  color: var(--text-color);
  opacity: 0.6;
  transition: all .5s ease;
}

.tab button:hover h4 {
  opacity: 1;
}

.button-wrap svg {
  width: 30%;
  /* fill: #b62ec4; */
}
.button-wrap img {
  width: 50px;
}

/* Tab Content */
.tabContent {
  display: none;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {opacity: 1;}
}

.showContent {
  display: block;
}

.tabContent-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.tabContent-des-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.tabContent-des h5 {
  color: var(--menu-color);
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.tabContent-des h6 {
  color: var(--menu-color);
  font-family: var(--title1-font);
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.tabContent-des p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: bold;
  opacity: 0.8;
}
.tabContent-des li {
  color: var(--text-color);
  font-size: 14px;
  padding-left: 20px;
}

.tabContent-img {
  text-align: right;
}

.tabContent-bubble {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*flex-direction: row;*/
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  gap: 20px;
}



.tabContent-wrap img {
  width: 70%;
  text-align: right;
}

@media screen and (max-width: 600px) {
  .tab {
    /*grid-template-columns: 1fr;*/
    grid-auto-rows: 3rem;
  }

  .tab svg {
    display: none;
  }

  .tabContent-wrap {
    flex-direction: column;
  }

  .tabContent-img {
    text-align: center;
    margin-top: 1rem;
  }

  .tabContent-img img {
    width: 100%;
  }
  
  .button-wrap h4 {
     display: none;
  }
}


.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Permet au menu de se réorganiser sur les petits écrans */
  padding: 35px;
  /*border: 3px solid #805252;*/
}

.menu li {
  position: relative;
  /*border: 3px solid #805252;*/
}

.menu a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  background-color: var(--menu-color);
  transition: background-color 0.3s;
}

.menu a:hover .dropdown__arrow {
  /*transform: rotate(180deg);*/
}
/* Rotate dropdown icon */
.group:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/* Sous-menu */
.sous-menu {
  display: none; /* Masqué par défaut */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--menu-color-light);
  list-style: none;
  padding: 0;
  /*border: 3px solid #805252;*/
}

.sous-menu li {
  width: 300px;
}

.sous-menu li a {
	display: flex;
	flex-direction: rows;
}

.sous-menu a {
  color: white;
  text-decoration: none;
  background-color: var(--menu-color-lighten);
}

.sous-menu a:hover {
  background-color: var(--menu-color-light);
}

/* Affichage du sous-menu au survol */
.menu li:hover .sous-menu {
  display: block;
}


/* Styles pour les petits écrans (Responsive) */
@media (max-width: 1120px) {
  .menu {
    flex-direction: column; /* Le menu devient vertical sur les petits écrans */
	padding: 0;
  }

  .menu li {
    width: 100%; /* Chaque élément de menu prend toute la largeur */
  }

  .menu > li > a {
    padding: 15px 30px;
  }

  /* Sous-menu pour les écrans petits et mobiles */
  .sous-menu {
    position: relative; /* Le sous-menu s'affiche sous l'élément parent */
    width: 100%;
    background-color: var(--menu-color-light);
    display: none;
  }
  
 .sous-menu a {
    padding-left: 50px;
    color: white;
    text-decoration: none;
    background-color: var(--menu-color-lighten);
  }

  /* Affichage du sous-menu au clic pour mobile */
  .menu li.active .sous-menu {
    display: block;
  }

  .menu li.active > a::after {
    /*content: "▲";  Flèche vers le haut */
    margin-left: 10px;
  }

  .menu li > a::after {
    /*content: "▼";  Flèche vers le bas pour les sous-menus fermés */
    margin-left: 10px;
  }
  .container-home .home-3 {
    width:400px;
  }  
}


.section__slide{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.slideShow{
  /*width: 190px;*/
  position: relative;
  perspective: 1000px;
  padding-top: 80px;
}
.content{
  position: absolute;
  width: 100%;
  transform-style: preserve-3d;
  animation: anim 25s infinite linear;
}
.content:hover{
  cursor: pointer;
  animation-play-state: paused;
}
@keyframes anim{
  to{
    transform: rotateY(360deg);
  }
}
.content figure{
  width: 100%;
  /*height: 120px;*/
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 5px;
  position: absolute;
  -webkit-box-reflect: below 1px
    linear-gradient(transparent,#0004);
}
.content img{
  width: 100%;
  height: 100%;
  image-rendering: auto;
  transition: .4s;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.content img:hover{
  transform: scale(1.2);
}
/*.content figure:nth-child(1){
  transform: rotateY(0deg) translateZ(150px);
}
.content figure:nth-child(2){
  transform: rotateY(72deg) translateZ(150px);
}
.content figure:nth-child(3){
  transform: rotateY(144deg) translateZ(150px);
}
.content figure:nth-child(4){
  transform: rotateY(216deg) translateZ(150px);
}
.content figure:nth-child(5){
  transform: rotateY(288deg) translateZ(150px);
}
.content figure:nth-child(6){
  transform: rotateY(200deg) translateZ(350px);
}
.content figure:nth-child(7){
  transform: rotateY(240deg) translateZ(350px);
}
.content figure:nth-child(8){
  transform: rotateY(280deg) translateZ(350px);
}
.content figure:nth-child(9){
  transform: rotateY(320deg) translateZ(350px);
}*/

.content__wrapper {
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.6s;
  color: var(--menu-color);
  background: var(--white-color);
  font-size: 12px;
  text-align: center;
}
.content__wrapper:hover {
  opacity: 1;
}
.content__wrapper > * {
  transform: translateY(25px);
  transition: transform 0.6s;
}
.content__wrapper:hover > * {
  transform: translateY(0px);
}
.content__wrapper img {
  width: 30px;
  height: 30px;
}


