.arrow {
  /*width: 30px;*/
  /*height: 30px;*/
  display: table;
  /*border: 1px solid red;*/
  margin: 35px auto 50px auto;
}

.down-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.down-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid #ef7f1b;
  border-right: 5px solid #ef7f1b;
  transform: rotate(45deg);
  margin: -5px;
  animation: animate 2s infinite;
}

.down-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.down-arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px,-15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(15px,15px);
  }
}

.szam-alap {
  border-width: 9px;
  border-color: var(--ps-narancs);
  border-style: solid;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 42px;
}

section img.img-right {
  border-radius: 50% 25% 50% 10%;
  position: relative;
}

section .img-left-design-narancs, section .img-left-design-zold, section .img-right-design-narancs, section .img-right-design-zold {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 25% 50% 10% 50%;
}

section .img-right-design-narancs {
  border-radius: 50% 25% 50% 10%;
  background: var(--ps-narancs);
  transform: rotate(-10deg);
}

section .img-right-design-zold {
  border-radius: 50% 25% 50% 10%;
  background: var(--ps-zold);
  transform: rotate(10deg);
}

section .img-left-design-zold {
  background: var(--ps-zold);
  transform: rotate(-10deg);
}

section .img-left-design-narancs {
  background: var(--ps-narancs);
  transform: rotate(10deg);
}

section img.img-left {
  border-radius: 25% 50% 10% 50%;
  position: relative;
}

