.flip-card {
  color: #38306c;
  line-height: 1.375;
  width: 100%;
  height: 25rem;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  margin-bottom: 40px;
  max-width: -webkit-calc(100% - 20px);
  max-width: calc(100% - 20px);
}
.flip-card--right {
  float: right;
}
@media screen and (max-width: 768px) {
  .flip-card {
    max-width: 100%;
    float: none;
    margin-bottom: 24px;
  }
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card__inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.flip-card__front,
.flip-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.11), 0px 0px 24px rgba(0,0,0,0.12);
}
.flip-card__back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
          
}
.flip-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-right: 180px solid #aa497e;
  background-size: cover;
  overflow: hidden;
}
.flip-card__bg:after {
  content: '';
  position: absolute;
  top: -5%;
  right: -48px;
  width: 70px;
  height: 110%;
  background: #aa497e;
  -webkit-transform: rotate(9deg);
          transform: rotate(9deg);
}
.flip-card__bg--flipped {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.flip-card__content {
  background: #fff;
  font-size: 16px;
  padding: 28px 24px 24px 24px;
}
.flip-card__content h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: 'Milonga', serif;
}
@media screen and (max-width: 768px) {
  .flip-card__content h2 {
    font-size: 20px;
  }
}
.flip-card__content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* -webkit-line-clamp: 4; */
  -webkit-box-orient: vertical;
  margin-bottom: 0.75rem;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .flip-card__content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 320px) {
  .flip-card__content p {
   /* -webkit-line-clamp: 3; */
  }
}
.flip-card__content b,
.flip-card__content strong {
  font-weight: 700;
}
.flip-card__content--front {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 52%;
  height: -webkit-calc(100% - 48px);
  height: calc(100% - 48px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flip-card__content--front p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .flip-card__content--front {
    width: 64%;
  }
}
.flip-card__content--front:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../img/flip-dekor01.png");
  background-size: cover;
  background-position: center;
}
.flip-card__content--back {
  position: absolute;
  top: 14px;
  left: 14px;
  width: -webkit-calc(100% - 28px);
  width: calc(100% - 28px);
  height: -webkit-calc(100% - 48px);
  height: calc(100% - 48px);
  display: flex;
          justify-content: center;
          align-items: center;
}
.flip-card__content--back:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url("../img/flip-dekor02.png");
  background-size: cover;
  background-position: center;
}
.swing-container {
  position: relative;
  height: 560px;
}
.swing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 1;
}
.swing__stripe {
  opacity: 0.4;
  width: 2px;
  height: 270px;
  background: #fefdfd;
  transform-origin: top center;
  animation-name: exampleStripe;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.swing__stripe--light {
  background: #bcc5d8;
}
.swing__bg {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .swing__bg {
    width: 260px;
  }
}
.swing__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%) rotate(-4deg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-weight: 400;
  line-height: 1.3;
  padding-left: 25px;
  font-family: 'Milonga', serif;
  color: #38306c;
}
.swing__content--column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Milonga', serif;
}
@media screen and (max-width: 768px) {
  .swing__content {
    padding-left: 10px;
    
  }
}
.swing__content img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .swing__content img {
    height: 70px;
  }
}
.swing__content span, .swing__content a {
  color: #38306c;
  text-decoration: none;
  font-family: 'Milonga', serif;
}
.swing__body {
  position: relative;
  width: 300px;
  height: 140px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transform: translate(0, 0);
  font-size: 22px;
  animation-name: example;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 768px) {
  .swing__body {
    font-size: 14px;
    width: 200px;
    height: 96px;
  }
}
.swing__body--xs {
  width: 140px;
  height: 140px;
  font-size: 14px;
  color: #092294;
  transition: ease 0.4s;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0));
}
@media screen and (max-width: 768px) {
  .swing__body--xs {
    width: 94px;
    height: 94px;
  }
}
.swing__body--xs .swing__bg {
  top: 48%;
}
@media screen and (max-width: 768px) {
  .swing__body--xs .swing__bg {
    width: 94px;
    height: 94px;
  }
}
.swing__body--xs .swing__content {
  transform: translate(-50%, -55%) rotate(0);
  padding-left: 0;
}
.swing__body--xs .swing__content img {
  margin-right: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .swing__body--xs .swing__content img {
    display: none;
  }
}
.swing__body--xs:hover {
  color: #092294;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.25));
}
.swing--1 {
  left: 6.5%;
}
@media screen and (max-width: 768px) {
  .swing--1 {
    left: 12%;
  }
}
@media screen and (max-width: 768px) {
  .swing--1 .swing__stripe {
    height: 320px;
  }
}
.swing--2 {
  left: 33%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .swing--2 {
    left: 8%;
  }
}
.swing--2 .swing__stripe {
  height: 120px;
}
@media screen and (max-width: 768px) {
  .swing--2 .swing__stripe {
    height: 160px;
  }
}
.swing--2 .swing__stripe,
.swing--2 .swing__body {
  animation-duration: 6.5s;
  animation-delay: 0.5s;
}
.swing--3 {
  left: 40%;
}
@media screen and (max-width: 768px) {
  .swing--3 {
    left: auto;
    right: 5%;
    z-index: 5;
  }
}
.swing--3 .swing__stripe {
  height: 300px;
  animation-name: exampleStripeLonger;
}
@media screen and (max-width: 768px) {
  .swing--3 .swing__stripe {
    height: 235px;
  }
}
.swing--3 .swing__stripe,
.swing--3 .swing__body {
  animation-duration: 5.75s;
  animation-delay: 1s;
}
.swing--4 {
  right: 8%;
}
.swing--4 .swing__stripe {
  height: 170px;
}
@media screen and (max-width: 768px) {
  .swing--4 .swing__stripe {
    height: 420px;
  }
}
.swing--4 .swing__stripe,
.swing--4 .swing__body {
  animation-duration: 6.95s;
  animation-delay: 0.25s;
}
.swing--5 {
  left: 16.5%;
}
@media screen and (max-width: 768px) {
  .swing--5 {
    left: 4%;
  }
}
.swing--5 .swing__stripe {
  height: 332px;
  animation-name: exampleStripeLonger;
}
@media screen and (max-width: 768px) {
  .swing--5 .swing__stripe {
    height: 210px;
  }
}
.swing--5 .swing__stripe,
.swing--5 .swing__body {
  animation-duration: 5s;
  animation-delay: 1s;
}
.swing--6 {
  left: 28%;
}
@media screen and (max-width: 768px) {
  .swing--6 {
    left: 44%;
  }
}
.swing--6 .swing__stripe {
  height: 198px;
}
@media screen and (max-width: 768px) {
  .swing--6 .swing__stripe {
    height: 155px;
  }
}
.swing--6 .swing__stripe,
.swing--6 .swing__body {
  animation-duration: 6s;
  animation-delay: 0.25s;
}
.swing--7 {
  left: 40.5%;
}
@media screen and (max-width: 768px) {
  .swing--7 {
    left: 73%;
  }
}
.swing--7 .swing__stripe {
  height: 278px;
  animation-name: exampleStripeLonger;
}
@media screen and (max-width: 768px) {
  .swing--7 .swing__stripe {
    height: 240px;
  }
}
.swing--7 .swing__stripe,
.swing--7 .swing__body {
  animation-duration: 4.5s;
  animation-delay: 0.5s;
}
.swing--8 {
  left: 53.5%;
}
@media screen and (max-width: 768px) {
  .swing--8 {
    left: 21%;
  }
}
.swing--8 .swing__stripe {
  height: 352px;
  animation-name: exampleStripeLonger;
}
@media screen and (max-width: 768px) {
  .swing--8 .swing__stripe {
    height: 320px;
  }
}
.swing--8 .swing__stripe,
.swing--8 .swing__body {
  animation-duration: 5.5s;
  animation-delay: 0.75s;
}
.swing--9 {
  left: 62%;
}
@media screen and (max-width: 768px) {
  .swing--9 {
    left: 57%;
  }
}
.swing--9 .swing__stripe {
  height: 205px;
}
@media screen and (max-width: 768px) {
  .swing--9 .swing__stripe {
    height: 352px;
  }
}
.swing--9 .swing__stripe,
.swing--9 .swing__body {
  animation-duration: 6.25s;
  animation-delay: 0.5s;
}
.swing--10 {
  left: 70.5%;
}
@media screen and (max-width: 768px) {
  .swing--10 {
    left: 36%;
  }
}
.swing--10 .swing__stripe {
  height: 332px;
  animation-name: exampleStripeLonger;
}
@media screen and (max-width: 768px) {
  .swing--10 .swing__stripe {
    height: 454px;
  }
}
.swing--10 .swing__stripe,
.swing--10 .swing__body {
  animation-duration: 5.75s;
  animation-delay: 0.65s;
}
@-webkit-keyframes example {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  10% {
    -webkit-transform: translate(-8px, -1px) rotate(3deg);
            transform: translate(-8px, -1px) rotate(3deg);
  }
  20% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  30% {
    -webkit-transform: translate(6px, -1px) rotate(-2.5deg);
            transform: translate(6px, -1px) rotate(-2.5deg);
  }
  40% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate(-4px, -1px) rotate(2deg);
            transform: translate(-4px, -1px) rotate(2deg);
  }
  60% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  70% {
    -webkit-transform: translate(2px, -1px) rotate(-1deg);
            transform: translate(2px, -1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -0.5px) rotate(0.5deg);
            transform: translate(-1px, -0.5px) rotate(0.5deg);
  }
  90% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
}
@keyframes example {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  10% {
    -webkit-transform: translate(-8px, -1px) rotate(3deg);
            transform: translate(-8px, -1px) rotate(3deg);
  }
  20% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  30% {
    -webkit-transform: translate(6px, -1px) rotate(-2.5deg);
            transform: translate(6px, -1px) rotate(-2.5deg);
  }
  40% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate(-4px, -1px) rotate(2deg);
            transform: translate(-4px, -1px) rotate(2deg);
  }
  60% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  70% {
    -webkit-transform: translate(2px, -1px) rotate(-1deg);
            transform: translate(2px, -1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -0.5px) rotate(0.5deg);
            transform: translate(-1px, -0.5px) rotate(0.5deg);
  }
  90% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
}
@-webkit-keyframes exampleStripe {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0.75deg);
            transform: rotate(0.75deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(-0.5deg);
            transform: rotate(-0.5deg);
  }
  80% {
    -webkit-transform: rotate(0.25deg);
            transform: rotate(0.25deg);
  }
  90% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes exampleStripe {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0.75deg);
            transform: rotate(0.75deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(-0.5deg);
            transform: rotate(-0.5deg);
  }
  80% {
    -webkit-transform: rotate(0.25deg);
            transform: rotate(0.25deg);
  }
  90% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes exampleStripeLonger {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-0.75deg);
            transform: rotate(-0.75deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0.375deg);
            transform: rotate(0.375deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(-0.15deg);
            transform: rotate(-0.15deg);
  }
  80% {
    -webkit-transform: rotate(0.125deg);
            transform: rotate(0.125deg);
  }
  90% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes exampleStripeLonger {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  10% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  20% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  30% {
    -webkit-transform: rotate(-0.75deg);
            transform: rotate(-0.75deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0.375deg);
            transform: rotate(0.375deg);
  }
  60% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  70% {
    -webkit-transform: rotate(-0.15deg);
            transform: rotate(-0.15deg);
  }
  80% {
    -webkit-transform: rotate(0.125deg);
            transform: rotate(0.125deg);
  }
  90% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}


/* accordion */ 
.accordion {
  color: #38306c;
  background-image: url("../img/acc-bg.png");
  background-size: 100% 100%;
  padding-top: 60px;
  padding-bottom: 200px;
  padding-right: 120px;
  padding-left: 40px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.25));
          filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.25));
}
@media screen and (max-width: 768px) {
  .accordion {
    background-image: url("../img/acc-bg-mobile.png");
    padding-top: 40px;
    padding-bottom: 130px;
    padding-right: 45px;
    padding-left: 45px;
  }
}
.accordion__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 89%;
  background-position: center;
  background-size: cover;
  border-radius: 1000px;
  margin: 0 auto;
  border: 20px solid #38306c;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
}
@media screen and (max-width: 768px) {
  .accordion__image {
    padding-bottom: 85%;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    border-width: 10px;
  }
}
.accordion__dekor {
  position: absolute;
  top: 92%;
  left: 14%;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-transform: translateY(-50px) scale(0.85);
          transform: translateY(-50px) scale(0.85);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .accordion__dekor {
    display: none;
  }
}
.accordion__hidden {
  display: none;
}
.accordion.is-opened {
  padding-bottom: 260px;
}
@media screen and (max-width: 768px) {
  .accordion.is-opened {
    padding-bottom: 150px;
  }
}
.accordion.is-opened .accordion__image {
  border-color: #aa497e;
}
.accordion.is-opened .accordion__dekor {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
.accordion h2 {
  font-size: 40px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .accordion h2 {
    font-size: 24px;
  }
}
.accordion h3 {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .accordion h3 {
    font-size: 18px;
  }
}
.accordion p {
  
}
@media screen and (max-width: 768px) {
  .accordion p {
  
  }
}
.accordion p,
.accordion ol,
.accordion ul {
  
}
.accordion p strong,
.accordion ol strong,
.accordion ul strong {
  
}

@media screen and (min-width: 769px) {
  .fooldali .swing__body {
      transition: ease 0.3s;
  }
  .fooldali .swing__body:hover {
      filter: drop-shadow(0 10px 4px rgba(0,0,0,0.25));
  }
  .fooldali .swing__body .swing__content {
      transition: ease 0.3s;
  }
  .fooldali .swing__body:hover .swing__content {
      transform: translate(-50%, -55%) rotate(-4deg) scale(1.05);
  }
}
.fooldali .swing--1 {
  left: 6.5%;
}
@media screen and (max-width: 576px) {
  .fooldali .swing--1 {
    left: 12%;
  }
}
@media screen and (max-width: 756px) {
  .fooldali .swing--1 {
    left: 22%;
  }
  
}
@media screen and ( max-width: 900px) {
  .fooldali .swing--3 .swing__stripe {
    height:clamp(15rem,50vw,24rem);
  }
}
.fooldali .swing--3 {
  left: 40%;
}
@media screen and (max-width: 576px) {
  .fooldali .swing--3 {
    left: auto;
    right: 5%;
    z-index: 5;
  }
}
@media screen and (max-width: 768px) {
  .fooldali .swing--3 {
    right: 12%;
  }
}
