* {
  margin: 0;
  padding: 0;
  user-select: none;
  font-family: "Lexend Deca", sans-serif;
  font-style: normal;
}

a {
  text-decoration: none;
}

/* Buborék animálás: */

/* Mobil nézet: */

@media screen and (min-width: 320px) {
  .bubble-1 {
    width: fit-content;
    height:fit-content ;
  }

  .bubble-1 img {
    width: 200px;
    position: absolute;
    animation: diagonal-animation 60s ease-in-out infinite;
  }
  
  @keyframes diagonal-animation {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
      transform: translateY(150px) translateX(calc(30vw - 50px)) rotate(90deg);
    }
    50% {
      transform: translateY(300px) translateX(calc(60vw - 100px)) rotate(180deg);
    }
    75% {
      transform: translateY(150px) translateX(calc(30vw - 60vw)) rotate(270deg);
    }
    100% {
      transform: translateY(0) translateX(0) rotate(360deg);
    }
  }
}
/* Asztali nézet: */

@media screen and (min-width: 930px) {
  .bubble-1 {
    width: fit-content;
    height:fit-content ;
  }


  .bubble-1 img {
    width: 400px;
    position: absolute;
    animation: diagonal-animation 60s ease-in-out infinite;
  }
  
  @keyframes diagonal-animation {
    0% {
      transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
      transform: translateY(150px) translateX(calc(30vw - 50px)) rotate(90deg);
    }
    50% {
      transform: translateY(300px) translateX(calc(60vw - 100px)) rotate(180deg);
    }
    75% {
      transform: translateY(150px) translateX(calc(30vw - 60vw)) rotate(270deg);
    }
    100% {
      transform: translateY(0) translateX(0) rotate(360deg);
    }
  }
}

/* Mobil nézet:  */

/* HEADER: */

@media screen and (min-width: 320px) {
  header {
    margin-top: 20px;
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    height: 60px;
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.1);
    border-radius: 20px;
    margin-left: 30px;
    margin-right: 30px;
    z-index: 2;
  }
  .logo img {
    width: 108px;
    margin-left: 10px;
  }
  nav {
    display: none;
  }
  .nav-mobil {
    display: block;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .mobil-menu {
    position: fixed;
    top: 100px;
    left: -400px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.1);
    width: 30vh;
    height: 200px;
    z-index: 1000;
    opacity: 40;
    border-radius: 20px;
    transition: 0.4s;
    
  }

  .mobil-menu-block {
    position: fixed;
    top: 100px;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.4);
    width: 85vw;
    height: 200px;
    z-index: 1000;
    opacity: 100%;
    margin-left: 30px;
    border-radius: 20px;
    transition: 0.8s;
  }

  .mobil-menu ul {
    margin-right: 30px;
  }
  li {
    list-style: none;
    margin-top: 20px;
    text-align: right;
  }
  li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
  }
  .delete {
    display: none;
  }
  .undelete {
    display: block;
  }
}

/* Asztali nézet  */

/* HEADER: */

@media screen and (min-width: 930px) {
  header {
    margin-left: 90px;
    margin-right: 90px;
    position: relative;
    z-index: 2;
  }
  .logo img {
    width: 108px;
    margin-left: 50px;
  }
  nav {
    display: block;
    display: flex;
    align-items: center;
  }
  .nav-mobil {
    display: none;
  }
  nav a {
    position: relative;
    margin-right: 50px;
    margin-left: 50px;
    text-decoration: none;
    font-size: 20px;
    color: #00a19a;
    letter-spacing: 0.5px;
    line-height: 24px;

  }
  nav a:hover {
    color: #f21368;
  }
  nav a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f21368;
    transition: 0.2s;
  }

  nav a:hover::before {
    width: 100%;
  }
  .mobil-menu {
    display: none;
  }
}

/* MOBIL NÉZET: */

/* Hero: */

@media screen and (min-width: 320px) {
  main .hero {
    margin-top: 40px;
    background-color: #fff;
    height: 600px;
  }

  h1 {
    position: relative;
    color: black;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    padding-top: 0;
    z-index: 2;
  }
  h2 {
    position: relative;
    color: #f21368;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 30px;
    z-index: 2;
  }
  h3 {
    position: relative;
    text-align: center;
    font-size: 40px;
    color: #00a19a;
    padding-top: 240px;
    font-weight: 700;
    z-index: 2;
  }
  p {
    position: relative;
    z-index: 2;
    color: #0b0720;
    font-size: 18px;
    text-align: center;
    line-height: 22px;
    letter-spacing: 0.5px;
  }
  .cta-mail {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    z-index: 2;
  }
  .btn {
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    border-radius: 5000px;
    font-size: 18px;
    padding: 10px 20px;
    color: #ffffff;
  }
}

/* Asztali nézet */

/* HERO: */

@media screen and (min-width: 930px) {
  main .hero {
    background-color: #fff;
    height: 900px;
    margin-top: 50px;
  }

  h1 {
    position: relative;
    color: black;
    font-size: 140px;
    font-weight: 800;
    text-align: center;
    padding-top: 0px;
    z-index: 2;
  }

  h2 {
    position: relative;
    color: #f21368;
    font-size: 140px;
    font-weight: 800;
    text-align: center;
    z-index: 2;
  }
  h3 {
    position: relative;
    text-align: center;
    font-size: 80px;
    color: #00a19a;
    padding-top: 100px;
    z-index: 2;
  }
  p {
    color: #0b0720;
    font-size: 36px;
    text-align: center;
    line-height: 48px;
    letter-spacing: 0.5px;
  }
  .cta-mail {
    display: flex;
    justify-content: center;
    margin-top: 80px;
  }
  .btn {
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    border-radius: 5000px;
    font-size: 24px;
    padding: 20px 60px;
    color: #ffffff;
    transition: all 0.3s;
  }
  .btn:hover {
    background: #00a19a;
    transform: scale(1.15);
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.3);
  }
}

/* Mobil nézet: VIDEO: */

@media screen and (min-width: 320px) {
  .video-mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    height: fit-content;
    width: fit-content;
    object-fit: cover;
  }

  .video-mobile video {
    width: 100%;
    height: 100%;
  }

  .video-desktop {
    display: none;
  }
}

/* Asztali nézet: VIDEO: */

@media screen and (min-width: 930px) {
  .video-desktop {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .video-desktop video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-mobile {
    display: none;
  }
}

/* 
mobil nézet szolgáltatások: */

@media screen and (min-width: 320px) {
  .services {
    background: linear-gradient(to bottom, #00a19a, #009fbd);
    padding-left: 20px;
    padding-right: 20px;
    height: fit-content;
  }

  h4 {
    font-size: 14px;
    padding-top: 44px;
    padding-bottom: 20px;
    font-weight: 300px;
    letter-spacing: 0.5px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
  }

  .titles1 {
    text-align: center;
  }

  .titles2 {
    text-align: center;
  }

  h5 {
    font-size: 22px;
    font-weight: bolder;
    color: #ffffff81;
    letter-spacing: 1px;
    padding-bottom: 10px;
  }

  .selected {
    color: #ffffff;
  }

  .block-card {
    display: flex;
    justify-content: center;
  }
  .card {
    margin-top: 40px;
    margin-bottom: 100px;
    height: 640px;
    width: 1000px;
    background: repeating-conic-gradient(
      from var(--a),
      #ffffff 0%,
      #ffffff 5%,
      transparent 5%,
      transparent 40%,
      #ffffff 50%
    );
    animation: animate 4s linear infinite;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  @property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
  @keyframes animate {
    0% {
      --a: 0deg;
    }
    100% {
      --a: 360deg;
    }
  }

  .card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(
      from var(--a),
      #ffffff 0%,
      #ffffff 5%,
      transparent 5%,
      transparent 40%,
      #ffffff 50%
    );
    animation: animate 4s linear infinite;
    animation-delay: -1s;
    border-radius: 40px;
  }

  .card::after {
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #fff;
    border-radius: 40px;
    border: 4px solid #009fbd;
  }

  .card-picto {
    display: flex;
    justify-content: center;
    height: 30%;
    padding-top: 20px;
  }

  .card-picto img {
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 1s forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  .card-bullet {
    display: flex;
    justify-content: left;
    padding-top: 20px;
    height: 70%;
  }

  .card-bullet ul {
    z-index: 2000;
    padding: 20px;
  }

  .card-bullet ul li {
    text-align: left;
    align-content: center;
    margin: 0;
    padding: 5px 5px 5px 20px;
    text-indent: -20px;
    font-size: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s forwards;
  }

  .card-bullet ul li:nth-child(1) {
    animation-delay: 0.5s;
  }

  .card-bullet ul li:nth-child(2) {
    animation-delay: 1s;
  }

  .card-bullet ul li:nth-child(3) {
    animation-delay: 1.5s;
  }
  .card-bullet ul li:nth-child(4) {
    animation-delay: 2s;
  }
  .card-bullet ul li:nth-child(5) {
    animation-delay: 2.5s;
  }
  .card-bullet ul li:nth-child(6) {
    animation-delay: 3s;
  }
  .card-bullet ul li:nth-child(7) {
    animation-delay: 3.5s;
  }
  .card-bullet ul li:nth-child(8) {
    animation-delay: 4s;
  }
  .card-bullet ul li:nth-child(9) {
    animation-delay: 4.5s;
  }
  .card-bullet ul li:nth-child(10) {
    animation-delay: 5s;
  }
  .card-bullet ul li:nth-child(11) {
    animation-delay: 5.5s;
  }
  .card-bullet ul li:nth-child(12) {
    animation-delay: 6s;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  li img {
    padding-right: 6px;
    width: 14px;
  }
}

/* 
asztali nézet szolgáltatások: */

@media screen and (min-width: 930px) {
  .services {
    background-image: url("./assets/bc\ services.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 98px;
    padding-right: 98px;
    height: fit-content;
  }

  h4 {
    font-size: 20px;
    padding-top: 44px;
    padding-bottom: 44px;
    font-weight: 300px;
    letter-spacing: 0.5px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
  }

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

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

  h5 {
    font-size: 30px;
    font-weight: bolder;
    color: #ffffff81;
    letter-spacing: 1px;
    padding-right: 20px;
    padding-left: 20px;
    cursor: pointer;
  }

  .selected {
    color: #ffffff;
  }

  .block-card {
    display: flex;
    justify-content: center;
  }

  .card {
    margin-top: 40px;
    margin-bottom: 100px;
    height: 600px;
    width: 1500px;
    display: flex;
    flex-direction: row;
    background: repeating-conic-gradient(
      from var(--a),
      #ffffff 0%,
      #ffffff 5%,
      transparent 5%,
      transparent 40%,
      #ffffff 50%
    );
    animation: animate 4s linear infinite;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  @property --a {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
  @keyframes animate {
    0% {
      --a: 0deg;
    }
    100% {
      --a: 360deg;
    }
  }

  .card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(
      from var(--a),
      #ffffff 0%,
      #ffffff 5%,
      transparent 5%,
      transparent 40%,
      #ffffff 50%
    );
    animation: animate 4s linear infinite;
    animation-delay: -1s;
    border-radius: 40px;
  }

  .card::after {
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #fff;
    border-radius: 40px;
    border: 4px solid #009fbd;
  }

  .card-picto {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }

  .card-picto img {
    z-index: 3000;
    height: 70%;
    opacity: 0;
    animation: fadeIn 1s forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  .card-bullet {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
  }

  .card-bullet ul {
    z-index: 2000;
  }

  .card-bullet ul li {
    text-align: left;
    padding-bottom: 12px;
    text-indent: -25px;
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
  }

  .card-bullet ul li:nth-child(1) {
    animation-delay: 0.5s;
  }

  .card-bullet ul li:nth-child(2) {
    animation-delay: 1s;
  }

  .card-bullet ul li:nth-child(3) {
    animation-delay: 1.5s;
  }
  .card-bullet ul li:nth-child(4) {
    animation-delay: 2s;
  }
  .card-bullet ul li:nth-child(5) {
    animation-delay: 2.5s;
  }
  .card-bullet ul li:nth-child(6) {
    animation-delay: 3s;
  }
  .card-bullet ul li:nth-child(7) {
    animation-delay: 3.5s;
  }
  .card-bullet ul li:nth-child(8) {
    animation-delay: 4s;
  }
  .card-bullet ul li:nth-child(9) {
    animation-delay: 4.5s;
  }
  .card-bullet ul li:nth-child(10) {
    animation-delay: 5s;
  }
  .card-bullet ul li:nth-child(11) {
    animation-delay: 5.5s;
  }
  .card-bullet ul li:nth-child(12) {
    animation-delay: 6s;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  li img {
    padding-right: 6px;
    width: 18px;
  }
}

/* mobil nézet, partnereink: */

@media screen and (min-width: 320px) {
  .referencia {
    white-space: nowrap;
    overflow: hidden;
    height: 260px;
    margin: 40px 0 0 0;
    position: relative;
  }

  .referencia:before {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    left: 0;
  }

  .referencia:after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    right: 0;
  }

  .referencia:before,
  .referencia:after {
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    content: "";
    z-index: 2;
  }

  h6 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #0b0720;
  }
  .logos-slide {
    display: inline-block;
    margin-top: 60px;
    animation: 55s slide infinite linear;
  }

  .logos-slide img {
    height: 100px;
    margin: 0 40px;
  }

  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
}

/* asztali nézet parntereink: */

@media screen and (min-width: 930px) {
  .referencia {
    white-space: nowrap;
    overflow: hidden;
    height: 260px;
    margin: 80px 0 100px 0;
    position: relative;
  }

  .referencia:before {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    left: 0;
  }

  .referencia:after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    right: 0;
  }

  .referencia:before,
  .referencia:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }

  .referencia:hover .logos-slide {
    animation-play-state: paused;
  }

  h6 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #0b0720;
  }

  .logos-slide {
    display: inline-block;
    margin-top: 60px;
    animation: 55s slide infinite linear;
  }

  .logos-slide img {
    height: 100px;
    margin: 0 40px;
  }

  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
}

/* Mobil contact form: */

@media screen and (min-width: 320px) {
  .contact {
    background-image: url("./assets/bc\ mobil.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-title {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 30px;
    padding-top: 60px;
  }

  .contact-info {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 14px;
    padding-top: 20px;
  }

  .parent-contact {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 380px;
    height: 600px;
    border-radius: 40px;
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.1);
    animation: pulseShadow 2s infinite;
  }

  @keyframes pulseShadow {
    0% {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }
    100% {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
  }

  select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-top: 40px;
    background-color: #ffffff;
    width: 340px;
    height: 60px;
    border: 2px solid #00a19a;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    color: #00a19a;
    font-family: "Lexend Deca", sans-serif;
  }

  input {
    box-sizing: border-box;
    width: 340px;
    height: 60px;
    margin-top: 20px;
    border: none;
    border-radius: 40px;
    background-color: rgb(0, 161, 154, 0.1);
    font-size: 16px;
    padding: 20px;
    color: #00a19a;
    outline: none;
  }

  input:focus {
    border: 1px solid #00a19a;
  }

  #text-content {
    box-sizing: border-box;
    width: 340px;
    height: 180px;
    margin-top: 20px;
    border: none;
    border-radius: 40px;
    background-color: rgb(0, 161, 154, 0.1);
    font-size: 16px;
    padding: 20px;
    color: #00a19a;
    resize: none;
  }

  #text-content:focus {
    outline: none;
    border: 1px solid #00a19a;
  }

  #send-btn {
    margin-top: 30px;
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    color: #fff;
  }
}

/* Asztali contact form: */

@media screen and (min-width: 930px) {
  .contact {
    background-image: url("./assets/bc.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-title {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 50px;
    padding-top: 60px;
  }

  .contact-info {
    text-align: center;
    color: white;
    font-weight: 400;
    font-size: 22px;
    padding-top: 20px;
  }

  .parent-contact {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 200px;
    height: 600px;
    width: 1200px;
    border-radius: 40px;
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.1);
    animation: pulseShadow 2s infinite;
  }

  @keyframes pulseShadow {
    0% {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }
    100% {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
  }

  select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(./assets/arrow.png);
    font-family: "Lexend Deca", sans-serif;
    background-repeat: no-repeat;
    background-position: right 40px center;
    background-color: #00a19a;
    margin-top: 40px;
    background-color: #ffffff;
    width: 680px;
    height: 60px;
    border: 2px solid #00a19a;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 500;
    padding-left: 20px;
    color: #00a19a;
  }

  input {
    box-sizing: border-box;
    width: 680px;
    height: 60px;
    margin-top: 20px;
    border: none;
    border-radius: 40px;
    background-color: rgb(0, 161, 154, 0.1);
    font-size: 22px;
    font-weight: 500;
    color: #00a19a;
    outline: none;
  }

  input:focus {
    border: 1px solid #00a19a;
  }

  #text-content {
    box-sizing: border-box;
    width: 680px;
    margin-top: 20px;
    border: none;
    border-radius: 40px;
    background-color: rgb(0, 161, 154, 0.1);
    font-size: 22px;
    font-weight: 500;
    color: #00a19a;
    font-size: 22px;
    font-weight: 500;
    resize: none;
  }

  #text-content:focus {
    outline: none;
    border: 1px solid #00a19a;
  }

  #send-btn {
    background: linear-gradient(to right, #009fbd, #5cc8a1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 22px;
    padding: 0;
  }

  #send-btn:hover {
    background: #00a19a;
    transform: scale(1.02);
    box-shadow: 10px 10px 20px rgba(000, 000, 000, 0.3);
  }
}

/* Mobil footer: */

@media screen and (min-width: 320px) {
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0b0720;
    height: 200px;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }

  footer div img {
    width: 10%;
  }

  .footer {
    color: #fff;
    padding-top: 20px;
  }
}

/* Asztali footer: */

@media screen and (min-width: 930px) {
  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0b0720;
    height: 200px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  footer div img {
    width: 10%;
  }

  .footer {
    color: #fff;
    padding-top: 20px;
  }
}
