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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Kalam-Regular", sans-serif;
  background-image: url(../images/dot-grid.png);
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
  z-index: -2;
  -webkit-animation: opening 1.5s ease-in-out;
          animation: opening 1.5s ease-in-out;
  overflow-x: hidden;
}

@-webkit-keyframes opening {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes opening {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@font-face {
  font-family: "Kalam-Regular";
  src: url(../fonts/Kalam-Regular.ttf);
}

@font-face {
  font-family: "Kalam-Bold";
  src: url(../fonts/Kalam-Bold.ttf);
}

@font-face {
  font-family: "Kalam-Light";
  src: url(../fonts/Kalam-Light.ttf);
}

body.hide {
  overflow: hidden;
}

.static {
  font-size: 0;
  width: 100%;
  height: 100%;
}

.up-static,
.down-static {
  width: 100%;
  height: 100%;
}

.uu1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*transform: translateY(-20%);*/
  -webkit-transform-origin: 1%;
          transform-origin: 1%;
  z-index: -1;
  width: calc(30rem + 1vw);
}

.u1 {
  width: 100%;
}

.uu1[data-scroll] {
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}

.uu1[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: scalex(1) translateY(-120%);
          transform: scalex(1) translateY(-120%);
}

.uu1[data-scroll="out"] {
  opacity: 0;
  -webkit-transform: scalex(0) translateY(-120%);
          transform: scalex(0) translateY(-120%);
}

.uu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*transform: translateY(-20%);*/
  -webkit-transform-origin: 1%;
          transform-origin: 1%;
  z-index: -1;
  width: calc(20rem + 1vw);
}

.u2 {
  width: 100%;
}

.uu2[data-scroll] {
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}

.uu2[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: scalex(1) translateY(-120%);
          transform: scalex(1) translateY(-120%);
}

.uu2[data-scroll="out"] {
  opacity: 0;
  -webkit-transform: scalex(0) translateY(-120%);
          transform: scalex(0) translateY(-120%);
}

.hero-main,
.about-main,
.gallery-main,
.contact-main {
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-main {
  padding-top: 10vh;
}

.btn-mobile {
  display: none;
}

.search {
  height: calc(4rem + 1vw);
}

.hero-text,
.about-text,
.gallery-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 4vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-main-svg {
  width: 70%;
  height: 70%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-main-svg,
.gallery-main-svg,
.contact-main-svg {
  width: 60%;
  height: 60%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-animation,
.about-animation,
.gallery-animation,
.social-animation {
  height: 100%;
  width: 100%;
}

.hero-text h1,
.about-text h1,
.gallery-text h1 {
  font-size: calc(5rem + 1vw);
}

.hero-text p,
.about-text p,
.gallery-text p {
  font-size: calc(3rem + 1vw);
  color: #888181;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.home-button,
.mobile-button,
.about-button,
.gallery-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  background: none;
  width: 50%;
}

.home-button a,
.mobile-button a,
.about-button a,
.gallery-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 2rem 3rem;
  background: #fe5356;
  color: white;
  font-size: calc(2rem + 1vw);
  /*font-size: 2.5rem;*/
  font-family: "Kalam-Regular", sans-serif;
  border-radius: 4rem;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 4vw;
}

.form-wrapper {
  height: 90%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fe5356;
  border-radius: 4rem;
}

.contact-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-head h2 {
  font-size: calc(3.5rem + 1vw);
  padding: 4rem 1rem 2rem 1rem;
  text-align: center;
}

.contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 2rem 3rem;
  background: #fe5356;
  color: white;
  font-size: calc(2rem + 1vw);
  /*font-size: 2.5rem;*/
  font-family: "Kalam-Regular", sans-serif;
  border-radius: 4rem;
}

.name,
.email,
.message1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.message1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1rem;
}

label {
  font-size: calc(2rem + 1vw);
  margin-right: 1rem;
}

input {
  font-size: calc(1rem + 1vw);
  padding: 0.5rem;
}

textarea {
  height: 100%;
  width: 100%;
  padding: 1rem;
  font-size: calc(0.5rem + 1vw);
}

#my-form-button {
  font-size: calc(3rem + 1vw);
  margin: auto;
  cursor: pointer;
  margin-top: 1rem;
  background: none;
}

#my-form-status {
  font-size: calc(4.5rem + 1vw);
  text-align: center;
  margin-top: 1rem;
}

#cloud1 {
  -webkit-animation: cloud-dir1 10s linear infinite alternate;
          animation: cloud-dir1 10s linear infinite alternate;
}

#cloud2 {
  -webkit-animation: cloud-dir1 13s linear infinite alternate;
          animation: cloud-dir1 13s linear infinite alternate;
}

#cloud3 {
  -webkit-animation: cloud-dir2 11s linear infinite alternate;
          animation: cloud-dir2 11s linear infinite alternate;
}

#cloud4 {
  -webkit-animation: cloud-dir2 14s linear infinite alternate;
          animation: cloud-dir2 14s linear infinite alternate;
}

@-webkit-keyframes cloud-dir1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes cloud-dir1 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@-webkit-keyframes cloud-dir2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@keyframes cloud-dir2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

#plant-left {
  transform-box: fill-box;
  animation: plant-left 3s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

#root {
  transform-box: fill-box;
  animation: root 3s infinite linear alternate-reverse 0.3;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

#plant-right {
  transform-box: fill-box;
  animation: plant-right 3s infinite linear alternate-reverse 0.5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes plant-left {
  from {
    -webkit-transform: rotateZ(12deg);
            transform: rotateZ(12deg);
  }
  to {
    -webkit-transform: rotateZ(-12deg);
            transform: rotateZ(-12deg);
  }
}

@keyframes plant-left {
  from {
    -webkit-transform: rotateZ(12deg);
            transform: rotateZ(12deg);
  }
  to {
    -webkit-transform: rotateZ(-12deg);
            transform: rotateZ(-12deg);
  }
}

@-webkit-keyframes root {
  from {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@keyframes root {
  from {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@-webkit-keyframes plant-right {
  from {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@keyframes plant-right {
  from {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

#kocka1 {
  -webkit-animation: cubes 4s infinite linear alternate;
          animation: cubes 4s infinite linear alternate;
}

#kocka2 {
  -webkit-animation: cubes 2s infinite linear alternate 0.5s;
          animation: cubes 2s infinite linear alternate 0.5s;
}

#kocka3 {
  -webkit-animation: cubes 3s infinite linear alternate 0.7s;
          animation: cubes 3s infinite linear alternate 0.7s;
}

#kocka4 {
  -webkit-animation: cubes 1s infinite linear alternate 0.2s;
          animation: cubes 1s infinite linear alternate 0.2s;
}

#kocka5 {
  -webkit-animation: cubes 5s infinite linear alternate 1s;
          animation: cubes 5s infinite linear alternate 1s;
}

#kocka6 {
  -webkit-animation: cubes 8s infinite linear alternate 0.9s;
          animation: cubes 8s infinite linear alternate 0.9s;
}

@-webkit-keyframes cubes {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes cubes {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#no-teljes-about,
#rejtett-lab {
  transform-box: fill-box;
  animation: torzs 2s infinite linear alternate-reverse 0.5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes torzs {
  from {
    -webkit-transform: rotateZ(2deg);
            transform: rotateZ(2deg);
  }
  to {
    -webkit-transform: rotateZ(-2deg);
            transform: rotateZ(-2deg);
  }
}

@keyframes torzs {
  from {
    -webkit-transform: rotateZ(2deg);
            transform: rotateZ(2deg);
  }
  to {
    -webkit-transform: rotateZ(-2deg);
            transform: rotateZ(-2deg);
  }
}

#woman-arm-about {
  transform-box: fill-box;
  -webkit-animation: kar-about 1s infinite linear alternate;
          animation: kar-about 1s infinite linear alternate;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes kar-about {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

@keyframes kar-about {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

#ferfi-fej {
  transform-box: fill-box;
  animation: kar-about 3s infinite linear alternate-reverse 0.5s;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@keyframes kar-about {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

#head {
  transform-box: fill-box;
  animation: head 3s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes head {
  from {
    -webkit-transform: rotateZ(12deg);
            transform: rotateZ(12deg);
  }
  to {
    -webkit-transform: rotateZ(-12deg);
            transform: rotateZ(-12deg);
  }
}

@keyframes head {
  from {
    -webkit-transform: rotateZ(12deg);
            transform: rotateZ(12deg);
  }
  to {
    -webkit-transform: rotateZ(-12deg);
            transform: rotateZ(-12deg);
  }
}

#bal-kar-kep {
  -webkit-transform-origin: top;
          transform-origin: top;
  transform-box: fill-box;
  -webkit-animation: bal-kar-kep 3s infinite linear alternate;
          animation: bal-kar-kep 3s infinite linear alternate;
}

#jobb-kar-kep {
  -webkit-transform-origin: top;
          transform-origin: top;
  transform-box: fill-box;
  -webkit-animation: jobb-kar-kep 2s infinite linear alternate;
          animation: jobb-kar-kep 2s infinite linear alternate;
}

@-webkit-keyframes bal-kar-kep {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

@keyframes bal-kar-kep {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

@-webkit-keyframes jobb-kar-kep {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

@keyframes jobb-kar-kep {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

#elso-kep {
  /*transform-origin: top;
  transform-box: fill-box;*/
  z-index: -1;
  -webkit-animation: elso-kep 2s infinite linear alternate;
          animation: elso-kep 2s infinite linear alternate;
}

#hatso-kep {
  -webkit-transform-origin: right;
          transform-origin: right;
  transform-box: fill-box;
  z-index: -1;
  -webkit-animation: hatso-kep 2s infinite linear alternate;
          animation: hatso-kep 2s infinite linear alternate;
}

@-webkit-keyframes hatso-kep {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

@keyframes hatso-kep {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

@-webkit-keyframes elso-kep {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}

@keyframes elso-kep {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}

#head1,
#head2,
#head3 {
  transform-box: fill-box;
  animation: head-second 3s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes head-second {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

@keyframes head-second {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

#ipad {
  transform-box: fill-box;
  animation: tablet 3s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes tablet {
  from {
    -webkit-transform: rotateZ(-2deg) translateY(-2%);
            transform: rotateZ(-2deg) translateY(-2%);
  }
  to {
    -webkit-transform: rotateZ(2deg) translateY(2%);
            transform: rotateZ(2deg) translateY(2%);
  }
}

@keyframes tablet {
  from {
    -webkit-transform: rotateZ(-2deg) translateY(-2%);
            transform: rotateZ(-2deg) translateY(-2%);
  }
  to {
    -webkit-transform: rotateZ(2deg) translateY(2%);
            transform: rotateZ(2deg) translateY(2%);
  }
}

#facebook {
  transform-box: fill-box;
  animation: facebook 4s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes facebook {
  from {
    -webkit-transform: rotateZ(-5deg) translateY(-20%) translateX(-20%);
            transform: rotateZ(-5deg) translateY(-20%) translateX(-20%);
  }
  to {
    -webkit-transform: rotateZ(5deg) translateY(20%) translateX(20%);
            transform: rotateZ(5deg) translateY(20%) translateX(20%);
  }
}

@keyframes facebook {
  from {
    -webkit-transform: rotateZ(-5deg) translateY(-20%) translateX(-20%);
            transform: rotateZ(-5deg) translateY(-20%) translateX(-20%);
  }
  to {
    -webkit-transform: rotateZ(5deg) translateY(20%) translateX(20%);
            transform: rotateZ(5deg) translateY(20%) translateX(20%);
  }
}

#instagram {
  transform-box: fill-box;
  animation: instagram 5s infinite linear alternate-reverse;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes instagram {
  from {
    -webkit-transform: rotateZ(7deg) translateY(18%) translateX(18%);
            transform: rotateZ(7deg) translateY(18%) translateX(18%);
  }
  to {
    -webkit-transform: rotateZ(-7deg) translateY(-18%) translateX(18%);
            transform: rotateZ(-7deg) translateY(-18%) translateX(18%);
  }
}

@keyframes instagram {
  from {
    -webkit-transform: rotateZ(7deg) translateY(18%) translateX(18%);
            transform: rotateZ(7deg) translateY(18%) translateX(18%);
  }
  to {
    -webkit-transform: rotateZ(-7deg) translateY(-18%) translateX(18%);
            transform: rotateZ(-7deg) translateY(-18%) translateX(18%);
  }
}

@media screen and (max-width: 1360px) {
  .hero-main,
  .about-main,
  .gallery-main,
  .contact-main {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .home-button,
  .about-button,
  .gallery-button {
    display: none;
  }
  .btn-mobile {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .btn-mobile,
  .mobile-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .search {
    display: none;
  }
  .hero-text,
  .about-text,
  .gallery-text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-left: 0vw;
  }
  .hero-text h1,
  .about-text h1,
  .gallery-text h1 {
    padding-top: 5rem;
  }
  .contact-form {
    padding-top: 5rem;
    margin-left: 0;
    width: 80%;
  }
}

@media screen and (max-width: 375px) {
  .hero-text h1,
  .about-text h1,
  .gallery-text h1 {
    font-size: calc(4rem + 1vw);
  }
  .hero-text p,
  .about-text p,
  .gallery-text p {
    font-size: calc(2rem + 1vw);
    color: #888181;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .uu1 {
    width: calc(15rem + 1vw);
  }
  .uu2 {
    width: calc(10rem + 1vw);
  }
  .contact-form {
    width: 95%;
  }
}

.nav-head {
  position: absolute;
  top: 0;
  /*left: 4vw;*/
  min-height: 10vh;
  width: 90%;
  z-index: 3;
  margin: 1.5rem 4vw 0rem 4vw;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 2 10rem;
          flex: 1 2 10rem;
}

nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5rem;
  list-style: none;
}

header nav .logo {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 10rem;
          flex: 2 1 10rem;
  margin-top: 1rem;
}

#logo {
  cursor: pointer;
  font-size: calc(3rem + 1vw);
  background: #fe5356;
  border-radius: 50%;
  padding: 1rem;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

header nav h1 {
  font-size: calc(5rem + 1.2vw);
}

nav ul li a img {
  height: calc(3rem + 1vw);
}

@media screen and (max-width: 1013px) {
  .nav-head {
    display: none;
  }
}

.burger-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  /*left: 4vw;*/
  min-height: 10vh;
  width: 90%;
  margin: 1.5rem 4vw 0rem 4vw;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*body.open {
  height: 100vh;
  overflow: hidden;
  position: fixed;
}*/
.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 100;
}

.burger-head.open {
  position: fixed;
}

.line1,
.line2 {
  width: 5rem;
  height: 0.3rem;
  margin: 0.4rem;
  background: black;
  pointer-events: none;
  z-index: 100;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.line1.open {
  -webkit-transform: rotateZ(45deg) translateY(8px);
          transform: rotateZ(45deg) translateY(8px);
  background: white;
}

.line2.open {
  -webkit-transform: rotateZ(-45deg) translateY(-8px);
          transform: rotateZ(-45deg) translateY(-8px);
  background: white;
}

.b-logo {
  cursor: pointer;
  font-size: calc(3rem + 1vw);
  background: #fe5356;
  border-radius: 50%;
  padding: 1rem;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.b-logo.open {
  background: white;
  color: #fe5356;
}

.menu {
  display: none;
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fe5356;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  opacity: 1;
  -webkit-animation: opening 1s ease-in-out;
          animation: opening 1s ease-in-out;
}

/*.menu-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  list-style: none;
  font-size: calc(4rem + 1vw);
  color: white;
}*/
.menu-options li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  font-size: calc(4rem + 1vw);
  color: black;
  padding: 1.5rem;
  opacity: 1;
  z-index: 200;
}

.menu-options li a {
  text-decoration: none;
  color: white;
  z-index: 200;
}

.menu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: all;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  z-index: 1000;
}

/*.menu-options li a:nth-child(1) {
  color: white;
}
.menu-options li a:nth-child(3) {
  color: white;
}*/
@media screen and (min-width: 1012px) {
  .burger-head,
  .line1,
  .line2,
  .logo-burger {
    display: none;
  }
}

@media screen and (orientation: landscape) and (max-width: 850px) {
  .menu {
    height: 100%;
  }
  .menu-options {
    padding-top: 10%;
  }
  .menu-options li {
    /*padding: 0;*/
    font-size: calc(1.2rem + 1vw);
  }
}

@media screen and (orientation: portrait) and (max-width: 375px) {
  .menu-options li {
    /*padding: 0;*/
    font-size: calc(2.5rem + 1vw);
  }
}

footer {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.st-footer {
  margin-top: 5rem;
}

.footer-main {
  height: 100%;
  width: 100%;
  background: #fe5356;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6rem 2rem 3rem 2rem;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 3rem;
}

.copyright h2 {
  font-size: calc(2rem + 1vw);
  pointer-events: none;
}

.privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.privacy h3 {
  font-size: calc(1.5rem + 1vw);
  color: black;
}

.line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 2rem;
  width: 100%;
}

.line-first {
  height: 100%;
  width: 50%;
}

.line-second {
  height: 100%;
  width: 40%;
}

.icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.facebook-icon,
.insta-icon {
  height: calc(4.5rem + 1vw);
  /* height: 4.5rem;*/
}

.mail-icon {
  height: calc(3.5rem + 1vw);
  /* height: 3.5rem;*/
}

.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 3rem;
  text-decoration: none;
}

.privacy {
  padding: 3rem 1rem;
}

.privacy a {
  text-decoration: none;
}

.privacy h2 {
  font-size: calc(1.5rem + 1vw);
  color: black;
}

#gallery-logo {
  cursor: pointer;
  font-size: calc(3rem + 2vw);
  padding: 1rem;
  color: black;
  text-decoration: none;
}

.gallery-page {
  /*position: relative;*/
  height: 100vh;
  background: #000;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.swiper-container {
  width: 90%;
  position: relative;
  padding-top: 18vh;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.swiper-slide {
  height: 60vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 7%;
  cursor: pointer;
  overflow: hidden;
}

.gallery-top {
  height: 100%;
  width: 50%;
  left: 10%;
}

.gallery-thumbs {
  height: 22vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  background-size: cover;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button {
  color: white;
  background: #fe5356;
  padding: 3rem 2rem;
  border-radius: 10%;
  z-index: 2;
}

.swiper-button-next {
  position: absolute;
  top: 50%;
  right: 8%;
}

.swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 28%;
}

.gal-container {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
  height: 100%;
  /*100vh*/
}

.gal-svg {
  height: 100%;
}

.mobile-guy {
  position: absolute;
  top: 30%;
  left: 3%;
  height: 40%;
  z-index: 2;
}

#boy-hand,
#also-kep {
  transform-box: fill-box;
  -webkit-animation: gallery-an 3s infinite linear alternate;
          animation: gallery-an 3s infinite linear alternate;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes gallery-an {
  from {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  to {
    -webkit-transform: translateX(15%) translateY(-6%);
            transform: translateX(15%) translateY(-6%);
  }
}

@keyframes gallery-an {
  from {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
  to {
    -webkit-transform: translateX(15%) translateY(-6%);
            transform: translateX(15%) translateY(-6%);
  }
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .gallery-page {
    height: 100vh;
    width: 100vw;
  }
  .gal-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    height: 100%;
    width: 100%;
  }
  .gal-svg {
    height: 100%;
  }
  .mobile-guy {
    display: none;
  }
  .swiper-container {
    width: 90%;
    padding-top: 15vh;
  }
  .swiper-slide {
    height: 62vh;
    background-size: contain;
    border-radius: 15%;
  }
  .gallery-top {
    width: 80%;
    left: 0;
  }
  .gallery-thumbs {
    height: 22vh;
    padding: 2rem 0;
  }
  .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.6;
  }
  .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  .swiper-button {
    color: #fe5356;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-radius: 10%;
  }
  .swiper-button-next {
    position: absolute;
    top: 45%;
    right: 2%;
  }
  .swiper-button-prev {
    position: absolute;
    top: 45%;
    left: 2%;
  }
}

@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  #gallery-logo {
    color: #fff;
  }
  .gal-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  .gal-svg {
    height: 100%;
  }
  .mobile-guy {
    display: none;
  }
  .swiper-container {
    width: 90%;
    padding-top: 15vh;
  }
  .swiper-slide {
    height: 62vh;
    background-size: cover;
    border-radius: 15%;
  }
  .gallery-top {
    width: 80%;
    left: 0;
  }
  .gallery-thumbs {
    height: 22vh;
    padding: 2rem 0;
  }
  .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.6;
  }
  .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  .swiper-button {
    color: #fe5356;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-radius: 10%;
  }
  .swiper-button-next {
    position: absolute;
    top: 45%;
    right: 2%;
  }
  .swiper-button-prev {
    position: absolute;
    top: 45%;
    left: 2%;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px) {
  .gal-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  .mobile-guy {
    display: none;
  }
  /*.swiper-container {
    width: 90%;
    padding-top: 20vh;
  }*/
  .swiper-slide {
    height: 60vh;
    background-size: contain;
    border-radius: 10%;
  }
  .gallery-top {
    width: 80%;
    left: 0;
  }
  .gallery-thumbs {
    height: 22vh;
    padding: 2rem 0;
  }
  .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.6;
  }
  .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  .swiper-button {
    color: #fe5356;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-radius: 10%;
  }
  .swiper-button-next {
    position: absolute;
    top: 50%;
    right: 2%;
  }
  .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 2%;
  }
}

@media screen and (orientation: landscape) and (max-width: 1366px) and (min-height: 850px) {
  #gallery-logo {
    color: #fff;
  }
  .gal-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  .gal-svg {
    height: 100%;
  }
  .mobile-guy {
    display: none;
  }
  .swiper-container {
    width: 90%;
    padding-top: 20vh;
  }
  .swiper-slide {
    height: 60vh;
    background-size: contain;
  }
  .gallery-top {
    width: 80%;
    left: 0;
  }
  .gallery-thumbs {
    height: 22vh;
    padding: 2rem 0;
  }
  .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.6;
  }
  .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
  }
  .swiper-button {
    color: #fe5356;
    background: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-radius: 10%;
  }
  .swiper-button-next {
    position: absolute;
    top: 45%;
    right: 2%;
  }
  .swiper-button-prev {
    position: absolute;
    top: 45%;
    left: 2%;
  }
}

@media screen and (orientation: landscape) and (min-width: 1367px) {
  .gal-container {
    z-index: -1;
  }
  .gal-svg {
    z-index: -1;
  }
  .mobile-guy {
    z-index: 1;
  }
}

@media screen and (orientation: landscape) and (min-width: 2300px) {
  .gallery-top {
    left: 5%;
  }
}

#offers-logo {
  cursor: pointer;
  font-size: calc(3rem + 2vw);
  padding: 1rem;
  color: black;
  text-decoration: none;
}

.offers {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -2;
}

.off {
  height: 100%;
  z-index: -2;
}

.offer-animation {
  position: absolute;
  bottom: 10%;
  left: 2%;
  height: 30%;
  z-index: -1;
}

.off-cartman {
  height: 100%;
  z-index: -1;
}

#bev-kocsi {
  transform-box: fill-box;
  -webkit-animation: bev-an 3s infinite linear alternate;
          animation: bev-an 3s infinite linear alternate;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

@-webkit-keyframes bev-an {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(6%);
            transform: translateX(6%);
  }
}

@keyframes bev-an {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(6%);
            transform: translateX(6%);
  }
}

#offers-cart-hand {
  transform-box: fill-box;
  -webkit-animation: off-an 3s infinite linear alternate;
          animation: off-an 3s infinite linear alternate;
  -webkit-transform-origin: top;
          transform-origin: top;
}

@-webkit-keyframes off-an {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

@keyframes off-an {
  from {
    -webkit-transform: rotateZ(3deg);
            transform: rotateZ(3deg);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

#offers-paper-hand {
  transform-box: fill-box;
  -webkit-animation: off-paper 3s infinite linear alternate;
          animation: off-paper 3s infinite linear alternate;
  -webkit-transform-origin: top;
          transform-origin: top;
}

@-webkit-keyframes off-paper {
  from {
    -webkit-transform: rotateZ(-2deg) translateY(-2%);
            transform: rotateZ(-2deg) translateY(-2%);
  }
  to {
    -webkit-transform: rotateZ(2deg) translateY(2%);
            transform: rotateZ(2deg) translateY(2%);
  }
}

@keyframes off-paper {
  from {
    -webkit-transform: rotateZ(-2deg) translateY(-2%);
            transform: rotateZ(-2deg) translateY(-2%);
  }
  to {
    -webkit-transform: rotateZ(2deg) translateY(2%);
            transform: rotateZ(2deg) translateY(2%);
  }
}

.main {
  /*position: relative;*/
  margin-top: 15vh;
  height: 80vh;
  width: 90%;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-perspective: 1500px;
          perspective: 1500px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 300;
}

.container,
.container2,
.container3,
.container4,
.container5,
.container6 {
  /*background: lightblue;*/
  /* width: calc(15rem + 0.5vw);
  height: calc(20rem + 0.5vw);*/
  width: 30%;
  height: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: calc(30rem + 1vw);
      flex-basis: calc(30rem + 1vw);
  padding: 0rem 2rem;
  z-index: 3;
}

.card,
.card2,
.card3,
.card4,
.card5,
.card6 {
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  border-radius: 4rem;
  z-index: 3;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2), 0px 0px 50px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  /*background: linear-gradient(to right, rgba(#f54642), rgba(240, 51, 27, 0.7));*/
}

.sneaker,
.sneaker2,
.sneaker3,
.sneaker4,
.sneaker5,
.sneaker6 {
  height: calc(3rem + 1vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sneaker img,
.sneaker2 img,
.sneaker3 img,
.sneaker4 img,
.sneaker5 img,
.sneaker6 img {
  height: calc(3.5rem + 1vw);
  z-index: 4;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

/*.sneaker4 img {
  height: calc(6rem + 1vw);
}
.sneaker2 img {
  height: calc(6rem + 1vw);
}*/
.circle,
.circle2,
.circle3,
.circle4,
.circle5,
.circle6 {
  width: calc(5rem + 1vw);
  height: calc(5rem + 1vw);
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#eb5440));
  background: linear-gradient(to bottom, white, #eb5440);
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}

.info,
.info2,
.info3,
.info4,
.info5,
.info6 {
  padding: 2rem;
  width: 100%;
  word-wrap: break-word;
}

.info h1,
.info2 h1,
.info3 h1,
.info4 h1,
.info5 h1,
.info6 h1 {
  word-wrap: break-word;
  text-align: center;
  font-size: calc(1.2rem + 0.5vw);
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  /*pointer-events: none;*/
}

.purchase,
.purchase2,
.purchase3,
.purchase4,
.purchase5,
.purchase6 {
  padding: 1rem;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.purchase button,
.purchase2 button,
.purchase3 button,
.purchase4 button,
.purchase5 button,
.purchase6 button {
  pointer-events: none;
  width: 100%;
  padding: 1.5rem 1.5rem;
  background: #f54642;
  border: none;
  color: white;
  border-radius: 30px;
  font-family: "Kalam-Bold";
  /*font-weight: bolder;*/
  font-size: calc(1rem + 0.5vw);
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

@media screen and (min-width: 1101px) {
  .cont {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .main,
  .offer-animation {
    display: none;
  }
  .card,
  .card2,
  .card3,
  .card4,
  .card5,
  .card6 {
    background: white;
  }
}

@media screen and (orientation: landscape) and (max-width: 850px) and (max-height: 450px) {
  .main {
    display: none;
  }
  .cont,
  .wr {
    height: 100%;
  }
  .slide-mob {
    margin-top: 5vh;
    height: 70vh;
    width: 100%;
  }
  .swiper-pagination-bullet {
    background: #f54642;
  }
  .bal-nyil,
  .jobb-nyil {
    color: white;
    background: #fe5356;
    padding: 3rem 2rem;
    border-radius: 10%;
    z-index: 2;
    position: absolute;
    top: 60%;
  }
  .bal-nyil {
    left: -3%;
  }
  .jobb-nyil {
    right: -3%;
  }
  .sneaker,
  .sneaker2,
  .sneaker3,
  .sneaker4,
  .sneaker5,
  .sneaker6 {
    height: 100%;
  }
  .circle,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    height: 60%;
    width: 40%;
  }
  .sneaker img,
  .sneaker2 img,
  .sneaker3 img,
  .sneaker4 img,
  .sneaker5 img,
  .sneaker6 img {
    height: calc(12rem + 1vw);
  }
  /*.sneaker-mob.m400 :nth-child(2) {
    height: calc(18rem + 1vw);
  }
  .sneaker-mob.m500 :nth-child(2) {
    height: calc(16rem + 1vw);
  }*/
  .info h1,
  .info2 h1,
  .info3 h1,
  .info4 h1,
  .info5 h1,
  .info6 h1 {
    font-size: calc(1.5rem + 1vw);
  }
  .purchase button,
  .purchase2 button,
  .purchase3 button,
  .purchase4 button,
  .purchase5 button,
  .purchase6 button {
    font-size: calc(1.5rem + 1vw);
  }
  .card,
  .card2,
  .card3,
  .card4,
  .card5,
  .card6 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .info-mob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sneaker-mob {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

@media screen and (max-width: 1100px) and (min-height: 451px) {
  .main {
    display: none;
  }
  .cont,
  .wr {
    height: 100%;
  }
  .slide-mob {
    margin-top: 5vh;
    height: 60vh;
    width: 100%;
  }
  .swiper-pagination-bullet {
    background: #f54642;
  }
  .bal-nyil,
  .jobb-nyil {
    color: white;
    background: #fe5356;
    padding: 3rem 2rem;
    border-radius: 10%;
    z-index: 2;
    position: absolute;
    top: 110%;
  }
  .sneaker,
  .sneaker2,
  .sneaker3,
  .sneaker4,
  .sneaker5,
  .sneaker6 {
    height: 70%;
  }
  /*.sneaker4{
    height: 100%;
  }*/
  .circle,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    height: 60%;
    width: 60%;
  }
  .sneaker img,
  .sneaker2 img,
  .sneaker3 img,
  .sneaker4 img,
  .sneaker5 img,
  .sneaker6 img {
    height: calc(12rem + 1vw);
  }
  /*.sneaker-mob.m400 :nth-child(2) {
    height: calc(18rem + 1vw);
  }
  .sneaker-mob.m200 :nth-child(2) {
    height: calc(18rem + 1vw);
  }*/
  .info h1,
  .info2 h1,
  .info3 h1,
  .info4 h1,
  .info5 h1,
  .info6 h1 {
    font-size: calc(2rem + 1vw);
  }
  .purchase button,
  .purchase2 button,
  .purchase3 button,
  .purchase4 button,
  .purchase5 button,
  .purchase6 button {
    font-size: calc(2rem + 1vw);
  }
}

@media screen and (orientation: portrait) and (max-width: 350px) {
  .info h1,
  .info2 h1,
  .info3 h1,
  .info4 h1,
  .info5 h1,
  .info6 h1 {
    font-size: calc(1.2rem + 1vw);
  }
  .purchase button,
  .purchase2 button,
  .purchase3 button,
  .purchase4 button,
  .purchase5 button,
  .purchase6 button {
    font-size: calc(1.2rem + 1vw);
  }
  .sneaker,
  .sneaker2,
  .sneaker3,
  .sneaker4,
  .sneaker5,
  .sneaker6 {
    height: 50%;
  }
  .circle,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    height: 40%;
    width: 40%;
  }
  .sneaker img,
  .sneaker2 img,
  .sneaker3 img,
  .sneaker4 img,
  .sneaker5 img,
  .sneaker6 img {
    height: calc(8rem + 1vw);
  }
  /*.sneaker-mob.m400 :nth-child(2) {
    height: calc(12rem + 1vw);
  }
  .sneaker-mob.m500 :nth-child(2) {
    height: calc(10rem + 1vw);
  }*/
}

@media screen and (orientation: portrait) and (max-width: 1366px) and (min-height: 1024px) {
  .circle,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    height: 50%;
    width: 50%;
  }
  .sneaker img,
  .sneaker2 img,
  .sneaker3 img,
  .sneaker4 img,
  .sneaker5 img,
  .sneaker6 img {
    height: calc(20rem + 1vw);
  }
  /*.sneaker-mob.m400 :nth-child(2) {
    height: calc(24rem + 1vw);
  }
  .sneaker-mob.m500 :nth-child(2) {
    height: calc(22rem + 1vw);
  }*/
  .info h1,
  .info2 h1,
  .info3 h1,
  .info4 h1,
  .info5 h1,
  .info6 h1 {
    font-size: calc(3.5rem + 1vw);
  }
  .purchase button,
  .purchase2 button,
  .purchase3 button,
  .purchase4 button,
  .purchase5 button,
  .purchase6 button {
    font-size: calc(3.5rem + 1vw);
  }
}

@media screen and (orientation: portrait) and (max-width: 1366px) and (min-height: 1200px) {
  .circle,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    height: 50%;
    width: 50%;
  }
  .sneaker,
  .sneaker2,
  .sneaker3,
  .sneaker4,
  .sneaker5,
  .sneaker6 {
    height: 50%;
  }
  .sneaker img,
  .sneaker2 img,
  .sneaker3 img,
  .sneaker4 img,
  .sneaker5 img,
  .sneaker6 img {
    height: calc(20rem + 1vw);
  }
  /*.sneaker-mob.m400 :nth-child(2) {
    height: calc(36rem + 1vw);
  }
  .sneaker-mob.m500 :nth-child(2) {
    height: calc(30rem + 1vw);
  }*/
  .info h1,
  .info2 h1,
  .info3 h1,
  .info4 h1,
  .info5 h1,
  .info6 h1 {
    font-size: calc(3.5rem + 1vw);
  }
  .purchase button,
  .purchase2 button,
  .purchase3 button,
  .purchase4 button,
  .purchase5 button,
  .purchase6 button {
    font-size: calc(3.5rem + 1vw);
  }
  .offers {
    left: -10%;
  }
}

@media screen and (orientation: portrait) and (max-width: 375px) and (min-height: 800px) {
  .offers {
    left: -20%;
  }
}

#about-logo {
  cursor: pointer;
  font-size: calc(3rem + 2vw);
  padding: 1rem;
  color: black;
  text-decoration: none;
}

.about-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.about-sd {
  height: 100%;
}

.about-svg {
  height: 100%;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  cursor: pointer;
}

.about-animation {
  height: 100%;
  width: 100%;
}

.about-empty {
  padding-top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  width: 80%;
}

.empty-cont {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.about {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20vh;
}

.kisker,
.nagyker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #fe5356;
  border-radius: 4rem;
  /*overflow: hidden;*/
  margin: 5vh;
  height: 100%;
  width: 80%;
  border: solid 2px white;
}

.nagyker {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about-cont-text {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  font-size: calc(1.2rem + 1vw);
}

.about-cont-pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about-cont-pic img {
  height: 100%;
  width: 100%;
  border-radius: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/*PopUp*/
.popup-container {
  position: fixed;
  top: 0%;
  left: 0%;
  background: rgba(156, 154, 154, 0.6);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 100000;
}

.text-popup {
  background: #fe5356;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  border-radius: 2rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  width: 70%;
  max-height: 90vh;
  min-height: 0;
}

.text-popup p {
  color: white;
  font-size: calc(1.5rem + 0.5vw);
  padding: 5rem;
}

.popup-container.active1 {
  opacity: 1;
  pointer-events: all;
}

.text-popup.active1 {
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}

#bal-noveny {
  -webkit-transform: translateY(12%);
          transform: translateY(12%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transform-box: fill-box;
  animation: bal 2s infinite linear alternate-reverse;
}

#jobb-noveny {
  -webkit-transform: translateY(8%);
          transform: translateY(8%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  transform-box: fill-box;
  animation: jobb 2.5s infinite linear alternate-reverse 0.5s;
}

@-webkit-keyframes bal {
  from {
    -webkit-transform: rotateZ(0) translateY(8%);
            transform: rotateZ(0) translateY(8%);
  }
  to {
    -webkit-transform: rotateZ(-20deg) translateY(8%);
            transform: rotateZ(-20deg) translateY(8%);
  }
}

@keyframes bal {
  from {
    -webkit-transform: rotateZ(0) translateY(8%);
            transform: rotateZ(0) translateY(8%);
  }
  to {
    -webkit-transform: rotateZ(-20deg) translateY(8%);
            transform: rotateZ(-20deg) translateY(8%);
  }
}

@-webkit-keyframes jobb {
  from {
    -webkit-transform: rotateZ(0) translateY(8%);
            transform: rotateZ(0) translateY(8%);
  }
  to {
    -webkit-transform: rotateZ(20deg) translateY(8%);
            transform: rotateZ(20deg) translateY(8%);
  }
}

@keyframes jobb {
  from {
    -webkit-transform: rotateZ(0) translateY(8%);
            transform: rotateZ(0) translateY(8%);
  }
  to {
    -webkit-transform: rotateZ(20deg) translateY(8%);
            transform: rotateZ(20deg) translateY(8%);
  }
}

#l1 {
  -webkit-animation: under 3s infinite linear alternate;
          animation: under 3s infinite linear alternate;
}

#l2 {
  -webkit-animation: under 1.5s infinite linear alternate;
          animation: under 1.5s infinite linear alternate;
}

#l3 {
  -webkit-animation: under 2s infinite linear alternate;
          animation: under 2s infinite linear alternate;
}

@-webkit-keyframes under {
  0% {
    -webkit-transform: scalex(0.9) translateX(0%);
            transform: scalex(0.9) translateX(0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scalex(1) translateX(3%);
            transform: scalex(1) translateX(3%);
    opacity: 1;
  }
}

@keyframes under {
  0% {
    -webkit-transform: scalex(0.9) translateX(0%);
            transform: scalex(0.9) translateX(0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scalex(1) translateX(3%);
            transform: scalex(1) translateX(3%);
    opacity: 1;
  }
}

#negyzet {
  -webkit-animation: cube 3s infinite linear alternate;
          animation: cube 3s infinite linear alternate;
}

@-webkit-keyframes cube {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes cube {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#bal-kar {
  -webkit-transform-origin: top;
          transform-origin: top;
  transform-box: fill-box;
  -webkit-animation: bal-kar 3s infinite linear alternate;
          animation: bal-kar 3s infinite linear alternate;
}

#jobb-kar {
  -webkit-transform-origin: top;
          transform-origin: top;
  transform-box: fill-box;
  -webkit-animation: jobb-kar 2s infinite linear alternate;
          animation: jobb-kar 2s infinite linear alternate;
}

@-webkit-keyframes bal-kar {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

@keyframes bal-kar {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
}

@-webkit-keyframes jobb-kar {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

@keyframes jobb-kar {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    -webkit-transform: rotateZ(-8deg);
            transform: rotateZ(-8deg);
  }
}

@media screen and (orientation: portrait) and (max-width: 767px) {
  .kisker,
  .nagyker,
  .about-empty {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-empty {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .empty-cont {
    display: none;
  }
  .about-cont-text {
    padding: 3rem;
    font-size: calc(2rem + 1vw);
  }
  .about-svg {
    width: 80%;
  }
  .about-sidebar {
    display: none;
  }
  .text-popup {
    width: 95%;
  }
}

@media screen and (orientation: portrait) and (max-width: 325px) {
  .text-popup p {
    font-size: calc(1rem + 0.5vw);
  }
}

@media screen and (orientation: landscape) and (max-height: 320px) and (max-width: 570px) {
  .text-popup {
    width: 95%;
  }
}

#contact-logo {
  cursor: pointer;
  font-size: calc(3rem + 2vw);
  padding: 1rem;
  color: black;
  text-decoration: none;
}

.contactsub-svg {
  position: absolute;
  top: 0%;
  left: 0%;
  overflow: hidden;
  z-index: -1;
  height: 32%;
}

.cont-anim {
  height: 100%;
}

.contact {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0vh;
  /*justify-content: center;
  align-items: center;*/
}

.contact-up,
.contact-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 4vw;
  margin-right: 4vw;
  /*justify-content: center;
  align-items: center;*/
}

/*.contact-up {
  justify-content: left;
}*/
.contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20vh;
}

.empty,
.mail,
.phone {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*margin-left: 4vw;*/
}

.empty {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mail h2,
.phone h2,
.contact h2 {
  font-size: calc(2rem + 1vw);
}

.contact-open h2,
.contact-address h2 {
  text-align: center;
  padding: 2rem 0rem;
  pointer-events: none;
}

.contact-open {
  margin-top: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*margin-right: 4vw;*/
  background: #fe5356;
  padding: 3rem 2rem;
  border-radius: 10%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-ora {
  color: white;
  pointer-events: none;
}

.mail img,
.phone img {
  height: calc(8rem + 1vw);
}

.contact-open img,
.contact-address img {
  height: calc(3.5rem + 1vw);
}

.contact-open p,
.contact-address p {
  font-size: calc(1.2rem + 1vw);
}

.contact-down {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: solid 2px #fe5356;
  border-radius: 4rem;
  background: #fe5356;
  min-height: 25vh;
}

.contact-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fe5356;
  padding: 3rem 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3.5rem;
}

.contact-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  border-radius: 4rem;
  overflow: hidden;
}

.contact-small-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 2rem 2rem 2rem;
  text-align: center;
  color: white;
}

@media screen and (max-width: 1024px) and (min-height: 451px) {
  .contact-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .empty {
    display: none;
  }
  .contact-info {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25vh;
  }
  .contact-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .contact-open {
    margin-top: 10vh;
  }
  .contactsub-svg {
    display: none;
  }
  .empty,
  .mail,
  .phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail h2 {
    margin: 5rem 0rem;
  }
  .phone h2 {
    margin: 5rem 0rem 0rem 0rem;
  }
  .contact-address p {
    font-size: calc(1.5rem + 1vw);
  }
  .contact-down {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .contact-map {
    border-radius: 0;
  }
}

@media screen and (orientation: landscape) and (max-width: 850px) and (max-height: 450px) {
  .contact-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .empty {
    display: none;
  }
  .contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30vh;
  }
  .contact-open {
    width: 80%;
    margin: 15vh auto;
  }
  .empty,
  .mail,
  .phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail h2 {
    margin: 5rem 0rem;
  }
  .phone h2 {
    margin: 5rem 0rem 0rem 0rem;
  }
  .contact-address p {
    font-size: calc(1.5rem + 1vw);
  }
  .contact-down {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .contact-map {
    border-radius: 0;
  }
}

@media screen and (orientation: landscape) and (min-width: 1300px) and (max-width: 1400px) and (min-height: 1000px) and (max-height: 1024px) {
  .contactsub-svg {
    height: 25%;
  }
}

@media screen and (orientation: portrait) and (min-height: 880px) and (min-width: 1014px) {
  .contactsub-svg {
    height: 18%;
  }
}

.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(47, 46, 65, 0.8);
  color: white;
  padding: 1rem 3rem;
  -webkit-transition: 400ms;
  transition: 400ms;
  z-index: 10000;
  font-size: calc(1.2rem + 1vw);
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: white;
}

.cookie-container a:hover {
  color: #fe5356;
}

.cookie-btn {
  background: #fe5356;
  border: 0;
  color: white;
  float: right;
  margin: 1rem;
  padding: 1rem 4rem;
  font-size: calc(1rem + 1vw);
  margin-bottom: 1.6rem;
  border-radius: 8px;
  cursor: pointer;
}

.privacy {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  margin: 2vh 2vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.pr-head {
  margin: 5vh 4vw;
}

.pr-head h1 {
  font-size: calc(2.5rem + 1vw);
}

.pr-main p {
  font-size: calc(1rem + 1vw);
}

.pr-main h3 {
  font-size: calc(1.8rem + 1vw);
}

.pr-main h4 {
  font-size: calc(1.5rem + 1vw);
}

.pr-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pr-logo {
  margin: 2vh 4vw;
}

#logo-pr {
  cursor: pointer;
  font-size: calc(3rem + 1vw);
  background: #fe5356;
  border-radius: 50%;
  padding: 1rem;
  color: white;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */