@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:focus {
  outline: none;
}

button {
  font-family: 'Jost', sans-serif;
  display: inline-block;
  border: none;
}

html {
  --color-1: #ffffff;
  --color-2: #666666;
  --color-3: #ffcdcd;
  --color-4: #cdcdcd;
  --color-5: #cf2077;
  --color-6: #633289;
  --color-7: #990099;
  --color-8: #ee0000;
  --color-9: #cccc00;
  --color-10: #ff9acf;
  --color-11: #660066;
  --color-12: #570064;
}

html {
  scroll-behavior: smooth;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

a:hover,
a:focus,
a:visited {
  outline: none;
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-scroll].is-outside {
  transition: none;
  animation: none;
}

body {
  font-family: 'Jost', sans-serif;
  font-size: 0.813em;
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-2);
  background-color: var(--color-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background-image: url("../img/bg.jpg");
  background-repeat: repeat;
  /*overflow-x: hidden;*/
}

body.uc {
  background: url("../img/uc-bg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#uc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-align: center;
}

.uc-logo {
  width: 300px;
  margin-bottom: 5em;
}

.uc-logo img {
  width: 100%;
  height: auto;
}

#uc p {
  color: var(--color-1);
  font-size: 3.0em;
  text-transform: uppercase;
}


/*scrollbar*/
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-3) var(--color-5);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--color-4);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-3);
  border-radius: 20px;
  border: 3px solid var(--color-4);
}

[data-scroll].is-outside {
  transition: none;
  animation: none;
}

/*Preloader*/

.preloader-container.hidden {
  z-index: -1;
}

.preloader-circle {
  position: fixed;
  z-index: 1001;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  -webkit-transform: translate(-50%, -50%) scale(1.4);
  -moz-transform: translate(-50%, -50%) scale(1.4);
  -ms-transform: translate(-50%, -50%) scale(1.4);
  -o-transform: translate(-50%, -50%) scale(1.4);
  transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.preloader-circle::after,
.preloader-circle::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--color-1);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.preloader-circle::before {
  z-index: -1;
  width: 130%;
  height: 130%;
  background-color: var(--color-3);
  transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.preloader-circle.hidden::before {
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .preloader-circle {
    width: 100vw;
    height: 100vw;
  }
}

@media (orientation: portrait) {
  .preloader-circle {
    width: 100vh;
    height: 100vh;
  }
}

.preloader-circle.hidden,
.preloader.hidden img {
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
}

.preloader {
  height: 90px;
  width: 90px;
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  overflow: hidden;
  z-index: 1020;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.8s;
}

.preloader img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  z-index: 4;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transition-delay: 0.2s;
}

.preloader .water {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translate(0, 100%);
  background: var(--color-5);
  background: -moz-linear-gradient(top, var(--color-5) 0%, var(--color-6) 100%);
  background: -webkit-linear-gradient(top, var(--color-5) 0%, var(--color-6) 100%);
  background: linear-gradient(to bottom, var(--color-5) 0%, var(--color-6) 100%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.preloader .water_wave {
  width: 200%;
  position: absolute;
  bottom: 100%;
}

.preloader .water_wave_back {
  right: 0;
  fill: var(--color-3);
  -webkit-animation: wave-back 1.4s infinite linear;
  animation: wave-back 1.4s infinite linear;
}

.preloader .water_wave_front {
  left: 0;
  fill: var(--color-5);
  margin-bottom: -1px;
  -webkit-animation: wave-front 0.7s infinite linear;
  animation: wave-front 0.7s infinite linear;
}

@-webkit-keyframes wave-front {
  100% {
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}

@keyframes wave-front {
  100% {
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}

@-webkit-keyframes wave-back {
  100% {
    transform: translate(50%, 0);
    -webkit-transform: translate(50%, 0);
    -moz-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    -o-transform: translate(50%, 0);
  }
}

@keyframes wave-back {
  100% {
    transform: translate(50%, 0);
    -webkit-transform: translate(50%, 0);
    -moz-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    -o-transform: translate(50%, 0);
  }
}

main {
  margin: 0 auto;
  width: 94%;
  max-width: 1000px;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
}

header {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  position: relative;
}

@media only screen and (min-width: 370px) {
  main {
    width: 90%;
  }
}

@media only screen and (min-width: 1100px) {
  main {
    width: 100%;
  }
}

/*Age Gate*/
.overlay {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
}

.overlay.hide {
  animation: overlay-animation 0.5s forwards;
  -webkit-animation: overlay-animation 0.5s forwards;
}

@keyframes overlay-animation {
  0% {
    background-color: rgba(255, 255, 255, 0.9);
  }

  100% {
    background-color: rgba(255, 255, 255, 0);
    z-index: -1;
  }

}

#agegate {
  background-color: var(--color-2);
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  padding: 3em 5% 2em 5%;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#agegate.hide {
  left: 0;
  transform: translate(-101%, -50%);
  -webkit-transform: translate(-101%, -50%);
  -moz-transform: translate(-101%, -50%);
  -ms-transform: translate(-101%, -50%);
  -o-transform: translate(-101%, -50%);
}

#agegate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color-3);
  margin: -30px 0 0 0;
}

.agegate-inputmain {
  display: flex;
  flex-flow: column nowrap;
  padding: 0 0 2em 0;
}

.agegate-logo {
  width: 100%;
  padding: 0 0 3em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agegate-logo img {
  width: 80%;
  height: auto;
  max-width: 300px;
}

.agegate-input p {
  width: 100%;
  color: var(--color-3);
  font-weight: 600;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.3em;
  display: block;
  margin: 0 0 1em 0;
}

.agegate-input div {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
}


.agegate-input-old input {
  margin: 0 0.1rem;
  border: none;
  width: 57px;
  height: 57px;
  text-align: center;
  font-size: 2.7em;
  line-height: 60px;
  font-weight: 600;
  color: var(--color-2);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.agegate-input-old input:focus {
  border: 3px solid var(--color-3);
}

.agegate-input-old input::-webkit-outer-spin-button,
.agegate-input-old input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.agegate-input-btn {
  background-color: var(--color-3);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-2);
  text-transform: uppercase;
  padding: 0.5em 0.7em;
  cursor: pointer;
  margin: 1em 0 0 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.agegate-input-btn:hover {
  color: var(--color-1);
}

.agegate-input-btn.inactive {
  opacity: 0.6;
  pointer-events: none;
}


.agegate-obligatory-info,
.footer-bottom {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  border-top: 2px solid var(--color-3);
  padding: 2em 0 0 0;
}

.agegate-obligatory-info a,
.footer-bottom a {
  color: var(--color-1);
  font-size: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  text-align: center;
}

.agegate-obligatory-info a:last-child,
.footer-bottom a:last-child {
  margin-bottom: 0;
}

.agegate-obligatory-info a:hover,
.footer-bottom a:hover {
  color: var(--color-3);
}

.agegate-obligatory-info a:first-child,
.footer-bottom a:first-child {
  font-weight: 400;
}

@media only screen and (min-width: 590px) {
  #agegate {
    padding: 3em 5% 2em 5%;
    width: 90%;
  }

  .agegate-input p {
    font-size: 1.2em;
  }

  .agegate-logo img {
    width: 100%;
  }

  .agegate-input div {
    flex-flow: row wrap;
  }

  .agegate-input-btn {
    margin: 0 0 0 2em;
  }

  .agegate-obligatory-info a {
    font-size: 1.3em;
  }
}

@media only screen and (min-width: 1005px) {

  .agegate-logo {
    width: 45%;
  }

  .agegate-inputmain {
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0 0 2em 0;
  }

  .agegate-obligatory-info {
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 2em 0 0 0;
  }

  .agegate-obligatory-info a {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) {
  #agegate {
    width: 100%;
  }
}

/*Social gombok*/
.social-container {
  position: fixed;
  top: 100px;
  right: 5%;
  display: flex;
  flex-flow: column nowrap;
  width: 35px;
  z-index: 10;
  transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

main.sticky .social-container {
  top: 10px;
}

.social-container a {
  margin-bottom: 0.2em;
}

.social-container a img {
  width: 100%;
  height: auto;
}

.social-container a img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 370px) {
  .social-container {
    right: 5%;
  }
}

@media only screen and (min-width: 992px) {
  .social-container {
    position: absolute;
    right: 5px;
    top: 110px;
    width: 40px;
  }

  main.sticky .social-container {
    top: 90px;
  }

  .social-container a {
    margin-bottom: 0.4em;
  }
}

@media only screen and (min-width: 1100px) {
  .social-container {
    position: fixed;
    right: 1%;
    top: 16px;
  }

  main.sticky .social-container {
    top: 16px;
  }
}

@media only screen and (min-width: 1400px) {
  .social-container {
    right: 5%;
  }
}


/*Header - Nav*/

header {
  padding: 16px 0 20px 0;
  position: relative;
  z-index: 10;
}

nav {
  display: flex;
  flex-flow: row wrap;
  height: 72px;
}

.head-logo {
  height: 100%;
  width: 100px;
  display: flex;
  justify-content: center;
  padding: 0 1em 0 0;
}

.head-logo a {
  height: 100%;
  width: auto;
}

.head-logo a img {
  width: 100%;
  height: auto;
}

.menu-container {
  background-color: var(--color-4);
  width: calc(100% - 100px);
  padding: 0 0.3em;
  position: relative;
}

.mobil-btn {
  width: 45px;
  height: 41px;
  background-color: var(--color-3);
  float: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -5px;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.mobil-btn div,
.mobil-btn div::before,
.mobil-btn div::after {
  width: 32px;
  height: 6px;
  background-color: var(--color-1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobil-btn div::before,
.mobil-btn div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.mobil-btn.active div {
  width: 0px;
}

.mobil-btn div::before {
  margin-top: -10px;
}

.mobil-btn.active div::before {
  margin-top: 0px;
  transform: translateX(-50%) rotate(-45deg);
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) rotate(-45deg);
}

.mobil-btn div::after {
  margin-top: 10px;
}

.mobil-btn.active div::after {
  margin-top: 0px;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotate(45deg);
}

.menu-container ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: absolute;
  right: 0;
  margin-right: calc(0.3em + 48px);
  top: 50%;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.menu-container ul li {
  text-align: center;
  margin: 0 0 1px 0;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-container.active ul li {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.menu-container ul li a {
  padding: 0.8em 0.8em;
  display: block;
  text-transform: uppercase;
  color: var(--color-2);
  background-color: var(--color-3);
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-container ul li a:hover,
.menu-container ul li.active a {
  color: var(--color-1);
  background-color: var(--color-3);
}

.menu-container ul li.active {
  order: -1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
  z-index: 4;
}

@media only screen and (min-width: 480px) {
  .menu-container {
    padding: 0 1em;
  }

  .menu-container ul {
    margin-right: calc(1em + 48px);
  }

  .menu-container ul li a {
    padding: 0.8em 1.5em;
  }

}

@media only screen and (min-width: 1100px) {
  .menu-container ul li {
    margin: 0 2em 0 0;
  }
}

@media only screen and (min-width: 992px) {

  main.sticky {
    padding-top: 108px;
  }

  main.sticky header {
    padding: 0;
    position: fixed;
    width: 90%;
    top: -72px;
    transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  main.stickyUp header {
    top: 0px;
  }

  .head-logo {
    width: 150px;
    padding: 0;
  }

  .head-logo a img {
    width: auto;
    height: 100%;
  }

  .menu-container {
    width: calc(100% - 150px);
    padding: 0 2em;
  }

  .mobil-btn {
    display: none;
  }

  .menu-container ul {
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    right: inherit;
    margin-right: 0;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  .menu-container ul li {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }

  .menu-container ul li:last-child {
    margin: 0 0 0 auto;
  }

  .menu-container ul li a {
    background-color: inherit;
  }

  .menu-container ul li.active {
    order: inherit;
  }

}

/*Slider*/
.main-carousel {
  width: 100%;
}

.carousel-cell {
  width: 100%;
  counter-increment: gallery-cell;
  padding: 3% 0 0 0;
  margin-right: 20px;
}

.flickity-prev-next-button,
.flickity-page-dots li:only-child {
  display: none;
}

.flickity-viewport {
  transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: height 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media only screen and (min-width: 992px) {
  .main-carousel {
    width: 110%;
    margin-left: -5%;
  }

  .carousel-cell {
    width: 100%;
    counter-increment: gallery-cell;
    padding: 1% 5%;
  }

  .flickity-prev-next-button {
    display: block;
  }
}

@media only screen and (min-width: 1100px) {
  .main-carousel {
    width: 108%;
    margin-left: -4%;
  }

  .carousel-cell {
    width: 100%;
    counter-increment: gallery-cell;
    padding: 1% 6%;
  }
}

@media only screen and (min-width: 1135px) {
  .main-carousel {
    width: 112%;
    margin-left: -6%;
  }

}


/*open info*/

.button {
  color: var(--color-1);
  background-color: var(--color-3);
  text-transform: uppercase;
  padding: 0.8em 2em;
  font-size: 1.1em;
  font-weight: 500;
  transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.button:hover {
  background-color: var(--color-6);
  transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.main-carousel .button {
  margin-top: 3em;
}

#open-info {
  position: relative;
  margin-top: 3em;
}

.open-info-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.open-info-img img {
  position: absolute;
  right: 0;
  top: -40px;
  width: 170%;
  height: auto;
  padding-top: 2em;
  clip-path: url(#myClip);
}


.open-info-txt {
  position: relative;
  color: var(--color-2);
  font-size: 1.3em;
  line-height: 1.5em;
  font-weight: 200;
  width: 100%;
  text-transform: uppercase;
  background-color: var(--color-1);
  text-align: center;
  padding: 2.0em 1.5em;
  margin-top: 10px;
  box-shadow: 0px 0px 2px 1px rgba(102, 102, 102, 0.1);
  -webkit-box-shadow: 0px 0px 2px 1px rgba(102, 102, 102, 0.1);

}

.open-info-txt p {
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 1em;
}

@media only screen and (min-width: 480px) {
  .open-info-img img {
    width: 140%;
    padding-top: 0.51em;
  }
}

@media only screen and (min-width: 767px) {
  .open-info-img {
    height: 540px;
  }

  .open-info-img img {
    width: auto;
    height: 100%;
    padding-top: 0;
  }

  .open-info-txt {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    left: 6%;
    z-index: 2;
    font-size: 1.3em;
    color: var(--color-1);
    background-color: inherit;
    margin-top: 0;
    text-align: left;
    padding: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
  }

  .open-info-txt p {
    font-size: 1.7em;
    line-height: 1.3em;
    margin-bottom: 0.8em;
  }
}

@media only screen and (min-width: 1000px) {

  .open-info-img img {
    width: 100%;
    height: auto;
  }

  .open-info-txt {
    font-size: 1.4em;
  }

  .open-info-txt p {
    font-size: 1.8em;
    line-height: 1.3em;
    margin-bottom: 1em;
  }

}

/*Story*/
.story-container {
  margin-bottom: 2em;
  position: relative;
}

.story-shadow,
.story-use-container::after {
  box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
}

.idea-img-conatiner {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.idea-img-conatiner img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.idea-info-conatiner {
  background-color: var(--color-1);
  text-align: center;
  padding: 2em 1em;
  font-size: 1.1em;
  line-height: 1.4em;
}

.idea-info-conatiner p {
  color: var(--color-2);
  font-size: 1.2em;
  line-height: 1.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 0.5em 0;
}

.proposal-img-conatiner {
  width: 100%;
  height: 80px;
  position: relative;
}

.proposal-img-conatiner p {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: var(--color-1);
  font-size: 1.5em;
  font-weight: 500;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  text-shadow: 0px 0px 4px rgba(125, 44, 113, 0.4), 0px 0px 50px rgba(187, 0, 53, 0.3), 0px 0px 80px rgba(187, 0, 53, 0.5);
  -webkit-text-shadow: 0px 0px 4px rgba(125, 44, 113, 0.4), 0px 0px 50px rgba(187, 0, 53, 0.3), 0px 0px 80px rgba(187, 0, 53, 0.5);
}

.proposal-img-conatiner img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.story-use-container {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}

.story-use-container:last-child {
  margin-bottom: 0;
}

.story-use-container::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-1);
  z-index: -1;
}

.use-img-conatiner,
.use-info-conatiner {
  width: 100%;
}

.use-img-conatiner {
  height: 150px;
  overflow: hidden;
}

.use-img-conatiner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.story-use-container.show .use-img-conatiner img {
  transform: scale(1.0);
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
}

.use-info-conatiner {
  padding: 1.5em 1em;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.4em;
}

@media only screen and (min-width: 767px) {
  .idea-img-conatiner {
    height: 540px;
  }

  .idea-info-conatiner p {
    color: var(--color-1);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.6em;
    line-height: 1.4em;
    margin: 200px 1em 0 0;
    width: 40%;
    text-align: left;
  }

  .idea-info-conatiner {
    padding: 3em 3em;
    font-size: 1.4em;
    line-height: 1.5em;
  }

  .proposal-img-conatiner {
    height: 235px;
  }

  .proposal-img-conatiner p {
    font-size: 2.5em;
  }

  .story-use-container {
    flex-flow: row wrap;
    height: 270px;
  }

  .use-img-conatiner,
  .use-info-conatiner {
    width: 50%;
  }

  .use-img-conatiner {
    padding: 1.5em 0;
    height: inherit;
  }

  .story-use-container::after {
    width: 80%;
  }

  .story-use-container:nth-child(even)::after {
    left: 0;
  }

  .story-use-container:nth-child(odd)::after {
    right: 0;
  }

  .story-use-container:nth-child(even) .use-info-conatiner {
    order: -1;
  }

  .use-info-conatiner {
    padding: 0 4em;
    font-size: 1.4em;
    line-height: 1.5em;
    display: flex;
    align-items: center;
  }
}

/*Wine*/

.wine-container {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2em;
  position: relative;
  width: 100%;
}

.wine-container:last-child {
  margin-bottom: 0;
}

.wine-img-container {
  width: 100%;
  height: 330px;
  position: relative;
}

.wine-img {
  width: auto;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.wine-img-overContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.wine-img-over {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  max-height: 350px;
  max-width: 250px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.nero-container .wine-img-over {
  max-width: inherit;
}

.bianca-container .wine-img-over {
  top: 55%;
  left: 45%;
}

.rosa-container .wine-img-over {
  top: 45%;
  left: 53%;
}

.wine-info-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 2em 2em;
  text-align: center;
  background-color: var(--color-1);
  box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
  margin-top: 1.0em;
}

.wine-info-container p {
  text-transform: uppercase;
}

.wine-info-container p:nth-of-type(2) {
  font-size: 1.2em;
  line-height: 1.4em;
  margin-top: 0.5em;
}

.wine-info-container p:nth-of-type(3) {
  font-size: 1.0em;
  line-height: 1.5em;
  margin-top: 1em;
}

.rouge-container .wine-info-container img,
.bianca-container .wine-info-container img,
.rosa-container .wine-info-container img {
  transform: translateY(20%);
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  -o-transform: translateY(20%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.rouge-container .wine-info-container.show img,
.bianca-container .wine-info-container.show img,
.rosa-container .wine-info-container.show img {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.wine-info-container img {
  width: 80%;
  height: auto;
  max-width: 380px;
}

.nero-container .wine-info-container img {
  width: 70%;
  height: auto;
}

.wine-title {
  font-size: 1.8em;
  line-height: 1.2em;
  font-weight: 600;
  margin: 1em 0 0.5em 0;
  transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nero-container .wine-title {
  font-size: 1.4em;
  color: var(--color-7);
}

.rouge-container .wine-title {
  color: var(--color-8);
  opacity: 0;
}

.bianca-container .wine-title {
  color: var(--color-9);
  opacity: 0;
}

.rosa-container .wine-title {
  color: var(--color-10);
  opacity: 0;
}

.rouge-container .wine-info-container.show .wine-title,
.bianca-container .wine-info-container.show .wine-title,
.rosa-container .wine-info-container.show .wine-title {
  opacity: 1;
}

.main-carousel .rouge-container .wine-info-container img,
.main-carousel .bianca-container .wine-info-container img,
.main-carousel .rosa-container .wine-info-container img {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  opacity: 1;
}

.main-carousel .rouge-container .wine-title,
.main-carousel .bianca-container .wine-title,
.main-carousel .rosa-container .wine-title {
  opacity: 1;
}

@media only screen and (min-width: 992px) {

  .wine-container {
    flex-flow: row wrap;
    height: 540px;
    filter: drop-shadow(0px 0px 5px rgba(102, 102, 102, 0.3));
    -webkit-filter: drop-shadow(0px 0px 5px rgba(102, 102, 102, 0.3));
  }

  .wine-container::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-1);
    z-index: -1;
  }

  .nero-container::after {
    clip-path: polygon(160px 0%, 100% 0, 100% 100%, 240px 100%);
    right: 0;
  }

  .rouge-container::after {
    clip-path: polygon(0 0, calc(100% - 170px) 0%, calc(100% - 160px) 100%, 0 100%);
    left: 0;
  }

  .bianca-container::after {
    clip-path: polygon(160px 0%, 100% 0, 100% 100%, 150px 100%);
    right: 0;
  }

  .rosa-container::after {
    clip-path: polygon(0 0, calc(100% - 170px) 0%, calc(100% - 160px) 100%, 0 100%);
    left: 0;
  }

  .wine-img-container {
    width: 420px;
    height: 100%;
  }

  .wine-img {
    left: inherit;
    transform: inherit;
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -ms-transform: inherit;
    -o-transform: inherit;
  }

  .rouge-container .wine-img,
  .rosa-container .wine-img {
    float: right;
  }

  .wine-img-over {
    max-height: inherit;
    max-width: inherit;
  }

  .rouge-container .wine-img-over {
    left: 60%;
  }

  .bianca-container .wine-img-over {
    top: 55%;
    left: 35%;
  }

  .rosa-container .wine-img-over {
    top: 40%;
    left: 65%;
  }

  .rouge-container .wine-info-container,
  .rosa-container .wine-info-container {
    order: -1;
    padding: 6em 3em 6em 6em;
  }

  .nero-container .wine-info-container img {
    width: 280px;
  }

  .rouge-container .wine-info-container img,
  .bianca-container .wine-info-container img,
  .rosa-container .wine-info-container img {
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
    -moz-transform: translateY(30%);
    -ms-transform: translateY(30%);
    -o-transform: translateY(30%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .wine-info-container {
    width: calc(100% - 420px);
    padding: 6em 6em 6em 3em;
    background-color: inherit;
    box-shadow: inherit;
    -webkit-box-shadow: inherit;
    margin-top: 0;
  }

  .wine-info-container p:nth-of-type(2) {
    font-size: 1.3em;
  }

  .wine-title {
    font-size: 2.5em;
    line-height: 1.2em;
  }

  .wine-info-container::after {
    content: "";
    position: absolute;
    width: 41px;
    height: 41px;
    top: 0;
    left: 0;
    background-image: url("../img/left-corner.png");
    background-repeat: no-repeat;
    margin: 3em 0 0 0;
  }

  .wine-info-container::before {
    content: "";
    position: absolute;
    width: 41px;
    height: 41px;
    bottom: 0;
    right: 0;
    background-image: url("../img/right-corner.png");
    background-repeat: no-repeat;
    margin: 0 3em 3em 0;
  }

  .rouge-container .wine-info-container::after,
  .rosa-container .wine-info-container::after {
    margin: 3em 0 0 3em;
  }

  .rouge-container .wine-info-container::before,
  .rosa-container .wine-info-container::before {
    margin: 0 0 3em 0;
  }

}

/*Fogyasztás*/

.consumption-table-container {
  text-align: left;
  align-items: self-start;
  padding: 1em;
}

.consumption-table-container p {
  margin: 0 !important;
}

.consumption-title,
.consumption-subtitle {
  color: var(--color-11);
  transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1.0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.consumption-title {
  font-size: 2.2em;
  line-height: 1.1em;
  font-weight: 800;
}

.consumption-subtitle {
  font-size: 1.4em !important;
  font-weight: 600;
}

.consumption-text {
  text-transform: inherit !important;
  font-size: 1.3em !important;
}

.consumption-table-container table {
  width: 100%;
  color: var(--color-12);
  border-spacing: 0;
  font-weight: 500;
  margin: 1.4em 0 0 0;
}

table,
th,
td {
  border: 3px solid var(--color-12);
  border-collapse: collapse;
}

.consumption-table-container table thead th {
  color: var(--color-1);
  background: var(--color-12);
  padding: .5em .6em;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.3em;
}


.consumption-table-container table tr td {
  padding: .3em .6em;
}

.consumption-table-container table tr td:first-child {
  background: var(--color-10);
}

.consumption-table-container table tr td span {
  padding: 0 0 0 1em;
}

.consumption-table-container table tr td span:before {
  content: "- ";
}


@media only screen and (min-width: 992px) {

  .consumption-title {
    font-size: 3.0em !important;
  }

  .consumption-subtitle {
    font-size: 1.9em !important;
  }

  .consumption-text {
    font-size: 1.6em !important;
  }

  .consumption-table-container {
    padding: 3em;

  }

  .consumption-table-container:after {
    margin: 1em 0 0 1em;
  }

  .consumption-table-container:before {
    margin: 0 1em 1em 0;
  }

}

/*Contact*/

.contact-container {
  position: relative;
  box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: 0px 0px 7px 1px rgba(102, 102, 102, 0.2);
}

.contact-img-conatiner {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-img-conatiner img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.contact-info-conatiner {
  background-color: var(--color-1);
  text-align: center;
  padding: 2em 2em 3em 2em;
  font-size: 1.1em;
  line-height: 1.4em;
}

.contact-mail {
  padding: 1.5em 0 0 0;
}

.contact-mail p {
  color: var(--color-2);
  font-size: 1.8em;
  line-height: 1.4em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.e-level {
  cursor: pointer;
  font-weight: 300;
  font-size: 2.0em;
  color: var(--color-2);
  position: relative;
}

.e-level.mailinfo {
  cursor: pointer;
  font-weight: 400;
  font-size: 1.0em;
}

.e-level::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-2);
  transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.e-level:hover::before {
  background-color: var(--color-3);
}

.e-level:hover,
.e-level.mailinfo:hover {
  color: var(--color-3);
}

.e-level:after {
  content: attr(data-name) "@"attr(data-domain) "."attr(data-tld);
}

@media only screen and (min-width: 590px) {
  .contact-img-conatiner {
    height: 480px;
  }

  .contact-mail {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4em 4em 0 0;
    text-shadow: 0px 0px 15px rgb(48, 48, 48);
    -webkit-text-shadow: 0px 0px 15px rgb(48, 48, 48);
  }

  .contact-info-conatiner {
    font-size: 1.3em;
    padding: 3em 2em;
  }

  .contact-mail p {
    color: var(--color-1);
    font-size: 2.4em;
    font-weight: 500;
    text-transform: uppercase;
  }

  .e-level {
    color: var(--color-1);
    font-size: 2.6em;
  }

  .e-level.mailinfo {
    color: var(--color-2);
    font-size: 1.0em;
  }

  .e-level::before {
    background-color: var(--color-1);
  }

  .e-level:hover::before {
    background-color: var(--color-2);
  }

  .e-level:hover {
    color: var(--color-1);
  }
}

/*Footer*/

footer {
  width: 100%;
  margin-top: auto;
  padding: 5em 0 0 0;
}

.footer-main {
  width: 100%;
  background-color: var(--color-2);
  padding: 2em 2em 1em 2em;
  position: relative;
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: var(--color-3);
  margin: -20px 0 0 0;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.footer-logo,
.footer-info {
  width: 100%;
  margin-bottom: 2em;
}

.footer-info {
  color: var(--color-1);
  text-align: center;
}

.footer-info p {
  color: var(--color-3);
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.footer-bottom {
  padding: 1em 0 0 0;
}


@media only screen and (min-width: 767px) {

  .footer-main {
    padding: 2em 4em 1em 4em;
  }

  .footer-top {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0 0 3em 0;
  }

  .footer-info,
  .footer-info p {
    text-align: left;
  }


  .footer-bottom {
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 1em 0 0 0;
  }

  .footer-logo,
  .footer-info {
    width: 25%;
  }

  .footer-info:nth-child(2) {
    width: 35%;
  }

  .footer-bottom a {
    margin-bottom: 0;
  }
}