@keyframes expand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 45%;
    opacity: 0.7;
  }
}

/*Contenu*/
.headbg .container h2 {
  font-family: inherit;
  color: #ffffff;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 94%;
}

.site-section .title {
  display: inline-flex;
}

.site-section .title span {
  font-size: 3rem;
}

.site-section .container .slogan-container {
  width: 103%;
}

/* Contenu principal */
.section-content {
  display: inline-flex;
  margin: 1.25rem;
}

.section-content h2 {
  font-family: inherit;
  color: #000000;
  font-size: xx-large;
  font-weight: bold;
}

.section-content .content {
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  text-align: left;
  padding: 45px;
}

.section-content .content.left button {
  align-self: flex-start;
}

.section-content .content.left li {
  font-size: calc(0.25vw + 0.25vh + 1.5vmin);
  font-weight: 600;
}

.section-content .content.right button {
  align-self: flex-end;
}

.section-content .image {
  max-width: 512px;
  max-height: 512px;
}

.section-content .image img {
  cursor: pointer;
}

/* Animations and effects */

/*Animation wave*/
.waviy {
  position: relative;
}

.waviy span {
  position: relative;
  display: inline-block;
  font-size: 70px;
  font-weight: bold;
  font-family: Arial, Baskerville, monospace;
  color: #000000;
  text-transform: uppercase;
  animation: flip 1s;
  animation-delay: calc(0.2s * var(--i));
}

@keyframes flip {
  0%,
  80% {
    transform: rotateY(360deg);
  }
}

/*animation fadein*/
.slogan {
  font-family: inherit;
  max-width: 40ch;
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

.slogan span {
  display: inline-block;
  opacity: 0;
  font-size: 5rem;
  font-family: inherit;
  font-weight: 900;
  filter: blur(4px);
}

.slogan span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.slogan span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.slogan span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.slogan span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* lineup class and keyframes */
.lineUp {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/* 
[data-aos="expand-width"] {
  width: 0;
  opacity: 0;
  transition-property: width, opacity;
  &.aos-animate {
    width: 45%;
    opacity: 1;
  }
}

[data-aos="to-round"] {
  border-radius: 15px;
  opacity: 0;
  transition-property: border-radius, opacity;
  &.aos-animate {
    border-radius: 50%;
    opacity: 1;
  }
} */

.to-round {
  border-radius: 50%;
  opacity: 1;
}

.activity-img {
  /* border-radius: 15px; */
  border-radius: 50%;
}

/*custom shapes*/

.round {
  border-radius: 50%;
}

/*Responsive settings*/
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
  .headbg .container h2 {
    font-size: 3rem;
  }

  .section-content .content {
    padding: 30px;
  }

  .section-content img {
    width: 320px;
    height: 320px;
  }

  .section-content .image {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 736px) {
  .slogan-container .description {
    font-size: medium;
  }

  .section-content .content.right button {
    align-self: center;
  }

  .section-content .content.left button {
    align-self: center;
  }

  .section-content p {
    font-size: medium;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgb(42, 42, 42);
  }

  .section-content .content.left li {
    font-size: medium;
    color: #ffffff;
    text-shadow: 1px 1px 1px rgb(42, 42, 42);
  }

  .section-content h2 {
    color: blanchedalmond;
    text-shadow: 1px 1px 1px rgb(42, 42, 42);
  }

  .section-content .image {
    display: none;
  }

  .section-content.intellect .content.left ul {
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    padding: unset;
    width: 100%;
    justify-content: space-between;
  }

  .section-content.intellect .content.left ul li {
    font-size: 13px;
  }

  .section-content.intellect {
    background-image: url("../../assets/shexweeknd/brain5.jpg");
    background-repeat: no-repeat;
  }

  .section-content.physique {
    background-image: url("../../assets/shexweeknd/yoga3.jfif");
    background-repeat: no-repeat;
  }

  .section-content.convivial {
    background-image: url("../../assets/shexweeknd/conversation5.jpg");
    background-repeat: no-repeat;
  }

  .artistique {
    background-image: url("../../assets/shexweeknd/art2.jpg");
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 430px) {
  .section-content .content {
    padding: 25px;
  }

  .site-section .container .slogan-container {
    width: auto;
  }
}
