@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../font/metropolis.css");

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  --color-1: #ffffff;
  --color-2: #333333;
  --color-3: #689ed5;
  --color-4: #4a8dcc;
  --color-5: #d5d5d5;
  --color-6: #f5f5f5;
  --color-7: #ebebeb;
  --color-8: #9e9e9e;
  --color-9: #e20000;
}

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;
  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);
}

.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--color-2);
}

h1 {
  font-size: 3.2em;
  line-height: 1.1em;
  margin-bottom: 0.7em;
}

h2 {
  font-size: 2em;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: "Metropolis Bold", sans-serif;
}

h3 {
  font-size: 1.6em;
  line-height: 1.3em;
  text-transform: uppercase;
}

@media only screen and (min-width: 1170px) {
  h2 {
    font-size: 2.5em;
    line-height: 1.2em;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813em;
  line-height: 1.4em;
  font-weight: 400;
  color: var(--color-2);
  background-color: var(--color-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  /*overflow-x: hidden;*/
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1000;
}

.preloader.preloaderhidden {
  z-index: -1;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: var(--color-1);
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.preloader::before {
  top: 0;
  background-image: url("../img/preloader-top.gif");
  background-repeat: no-repeat;
  background-position: bottom center;
}

.preloader::after {
  bottom: 0;
  background-image: url("../img/preloader-bottom.gif");
  background-repeat: no-repeat;
  background-position: top center;
}

body.pace-done .preloader::before {
  transform: translateY(-101%);
  -webkit-transform: translateY(-101%);
  -moz-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  -o-transform: translateY(-101%);
}

body.pace-done .preloader::after {
  transform: translateY(101%);
  -webkit-transform: translateY(101%);
  -moz-transform: translateY(101%);
  -ms-transform: translateY(101%);
  -o-transform: translateY(101%);
}

.preloader-progress-left,
.preloader-progress-right {
  position: fixed;
  top: calc(50vh - 1px);
  height: 1px;
  width: 0%;
  z-index: 1;
}

.preloader-progress-left {
  right: calc(50% + 58px);
  background-color: var(--color-2);
}

.preloader-progress-right {
  left: calc(50% + 58px);
  background-color: var(--color-3);
}

* {
  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-5);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-3);
  border-radius: 20px;
  border: 3px solid var(--color-5);
}

[data-scroll].is-outside {
  transition: none;
  animation: none;
}

.button {
  padding: 1em 2em;
  background-color: var(--color-3);
  min-width: 240px;
  display: inline-block;
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--color-1);
  text-transform: uppercase;
  margin-top: 1em;
  border: 0;
  border-radius: 0.4em;
  cursor: pointer;
  -webkit-border-radius: 0.4em;
  -moz-border-radius: 0.4em;
  -ms-border-radius: 0.4em;
  -o-border-radius: 0.4em;
  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);
  box-shadow: 0px 0px 14px -3px rgba(104, 158, 213, 0.5);
}

.button:hover {
  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);
  background-color: var(--color-4);
  color: var(--color-1);
}

/*desktop mobil kép váltó*/
.nomobil-img {
  display: none;
}

.mobil-img {
  display: block;
}

@media only screen and (min-width: 992px) {
  .nomobil-img {
    display: block;
  }

  .mobil-img {
    display: none;
  }
}

/*head-image*/

#head-image {
  width: 100%;
  height: 540px;
  position: relative;
}

.head-image-projects-personal {
  height: 85px !important;
}

.head-image-projects-personal img {
  display: none;
}

#head-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 992px) {
  #head-image {
    height: 540px;
  }

  .head-image-projects-personal {
    height: 540px !important;
  }

  .head-image-projects-personal img {
    display: block;
  }
}

/*header*/

header {
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 50;
}

nav {
  width: 100%;
  height: 100%;
  position: relative;
  --logo-width: 165px;
  --logo-left: calc(50% - 80px);
  --logo-bottom: -10px;
  --logo-factor: 8px;
  --logo-line-height: 2px;
}

nav::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(var(--logo-bottom) + var(--logo-factor));
  width: var(--logo-left);
  height: var(--logo-line-height);
  background-color: var(--color-2);
}

nav::after {
  content: "";
  position: absolute;
  left: calc(var(--logo-width) + var(--logo-left));
  bottom: calc(var(--logo-bottom) + var(--logo-factor));
  width: calc(100% - (var(--logo-width) + var(--logo-left)));
  height: var(--logo-line-height);
  background-color: var(--color-3);
}

.mobil-btn {
  width: 30px;
  position: absolute;
  height: 20px;
  top: 50%;
  right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 2;
}

.mobil-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--color-2);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.mobil-close-btn {
  width: 30px;
  position: absolute;
  height: 30px;
  top: 1.4em;
  right: 1.7em;
  z-index: 4;
}

.mobil-close-btn::before,
.mobil-close-btn::after {
  content: "";
  position: absolute;
  border-radius: 30px;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 4px;
  background-color: var(--color-3);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
}

.mobil-close-btn::after {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
}

nav .logo {
  width: var(--logo-width);
  position: absolute;
  margin: 0 0 0 var(--logo-left);
  bottom: var(--logo-bottom);
  margin-bottom: var(--logo-bottom);
}

nav .logo img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}

nav .logo .logo-small {
  display: none;
}

.mobil-menu-container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  right: 0;
  pointer-events: none;
}

nav ul {
  height: 100vh;
  width: 100%;
  right: 0;
  position: absolute;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  z-index: 3;
  padding: 10em 2em 2em 2em;
  background-image: url("../img/mobil-menu-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateX(101%);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  pointer-events: auto;
}

.mobil-menu-container.menuIn ul {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

nav ul::before,
nav ul::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 4em);
  height: 2px;
  background-color: rgba(158, 158, 158, 0.5);
  transform: translate(-50%, 5em);
  -webkit-transform: translate(-50%, 5em);
  -moz-transform: translate(-50%, 5em);
  -ms-transform: translate(-50%, 5em);
  -o-transform: translate(-50%, 5em);
}

nav ul::after {
  bottom: 0;
  top: inherit;
  background-color: rgba(158, 158, 158, 0.2);
  transform: translate(-50%, -5em);
  -webkit-transform: translate(-50%, -5em);
  -moz-transform: translate(-50%, -5em);
  -ms-transform: translate(-50%, -5em);
  -o-transform: translate(-50%, -5em);
}

nav ul li {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0;
  border-bottom: solid 2px rgba(158, 158, 158, 0.1);
  padding: 0.8em 0 calc(0.8em - 2px);
  width: 100%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobil-menu-container.menuIn ul li {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.mobil-menu-container.menuIn ul li:nth-child(2) {
  transition-delay: 0.1s;
}

.mobil-menu-container.menuIn ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobil-menu-container.menuIn ul li:nth-child(4) {
  transition-delay: 0.3s;
}

.mobil-menu-container.menuIn ul li:nth-child(5) {
  transition-delay: 0.4s;
}

nav ul li.select a {
  font-weight: 600;
}

nav ul li a {
  color: var(--color-2);
}

nav ul li a:hover {
  color: var(--color-3);
}

nav ul .lang {
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
  border: none;
  width: 50%;
  margin-top: 3em;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobil-menu-container.menuIn ul .lang {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transition-delay: 0.2s;
}

nav ul .lang a {
  color: var(--color-5);
}

nav ul .lang.select a {
  color: var(--color-3);
}

nav ul li:nth-last-child(2) {
  text-align: right;
  padding-right: 0.5em;
}

nav ul li:nth-last-child(1) {
  text-align: left;
  padding-left: 0.5em;
}

nav ul li:nth-last-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0em;
  width: 1px;
  height: 20px;
  background-color: var(--color-5);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media only screen and (min-width: 992px) {
  header {
    height: 120px;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  header.sticky {
    height: 80px;
    background-color: var(--color-1);
    position: fixed;
  }

  header.sticky nav .logo .logo-big,
  .mobil-btn,
  .mobil-close-btn {
    display: none;
  }

  nav {
    position: relative;
    --logo-bottom: 5px;
    --logo-factor: 23px;
    --logo-left: 3%;
  }

  header.sticky nav {
    --logo-width: 130px;
    --logo-bottom: 6px;
    --logo-factor: 6px;
    --logo-line-height: 1px;
  }

  header.sticky nav .logo .logo-small {
    display: block;
  }

  .mobil-menu-container {
    height: inherit;
    width: inherit;
    overflow: inherit;
    position: relative;
  }

  nav ul {
    height: 100%;
    background-image: none;
    flex-wrap: nowrap;
    padding: 0 0 calc(var(--logo-bottom) + var(--logo-factor)) 0;
    width: initial;
    display: flex;
    align-items: center;
    transform: translateX(0%);
  }

  nav ul::before,
  nav ul::after {
    display: none;
  }

  nav ul li {
    margin: 0 1.4em;
    border-bottom: none;
    padding: 0;
    width: inherit;
    transform: translateX(0%);
  }

  nav ul .lang {
    width: initial;
    margin-top: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }

  nav ul li:nth-last-child(2)::after {
    right: -0.5em;
  }

  nav ul li:nth-last-child(2):before {
    content: "";
    position: absolute;
    left: -2.1em;
    top: 50%;
    width: 2px;
    height: 55px;
    background-color: var(--color-5);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: height 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  header.sticky nav ul li:nth-last-child(2)::before {
    height: 40px;
  }

  nav ul li:nth-last-child(2) {
    margin: 0 0.5em 0 2.4em;
  }

  nav ul li:nth-last-child(1) {
    margin: 0 3em 0 0.5em !important;
  }
}

/*top slider*/
#open-head-slider {
  width: 100%;
  position: relative;
  padding-top: 9em;
}

#TopSlider {
  width: 100%;
  height: 400px;
  cursor: inherit;
  position: relative;
  z-index: 1;
}

#TopSlider .glide__slide {
  position: relative;
  width: 100%;
  height: 400px;
}

.glide__slide--active {
  z-index: 1;
}

#TopSlider .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glide .glide__bullet {
  background-color: var(--color-8);
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: inherit;
  margin: 0 0.4em;
  opacity: 1;
  position: relative;
  z-index: 2;
  bottom: -4em;
  border: none;
}

.glide .glide__bullet:hover,
.glide .glide__bullet:focus,
.glide .glide__bullet--active {
  border: none;
}

.glide .glide__bullet--active {
  background-color: var(--color-2);
  border: none;
}

.mouse-icon {
  width: 18px;
  height: auto;
  position: absolute;
  z-index: 2;
  right: 2em;
  bottom: 2em;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: none;
}

.mouse-icon.hide {
  opacity: 0;
}

.mouse-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 9px;
  background-image: url("../img/mouse-icon-arrow.svg");
  background-repeat: no-repeat;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  bottom: 0;
  animation: mouse-icon-animation 0.5s infinite;
  -webkit-animation: mouse-icon-animation 0.5s infinite;
}

@keyframes mouse-icon-animation {
  0% {
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
  }

  50% {
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    -o-transform: translate(-50%, 100%);
  }

  100% {
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
  }
}

.mouse-icon img {
  width: 100%;
  height: auto;
}

.top-slider-content {
  position: relative;
  width: 100%;
  padding: 3.5em 5% 2em 5%;
  text-align: justify;
  background-image: url("../img/mobil-head-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-slider-content h1 {
  text-transform: uppercase;
  padding: 0 0 0.8em 0;
}

.top-slider-content p {
  font-size: 1.1em;
  line-height: 1.4em;
  padding: 0 0 1em 0;
}

.top-slider-content p:last-of-type {
  font-size: 1.3em;
}

.top-slider-content .button {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media only screen and (min-width: 992px) {
  #open-head-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 0;
  }

  #TopSlider,
  #TopSlider .glide__slide {
    height: 100vh;
  }

  .mouse-icon {
    display: block;
  }

  .top-slider-content {
    position: absolute;
    width: 40%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding: 0 0 0 3%;
    z-index: 2;
    text-align: left;
    background-image: inherit;
  }

  .top-slider-content h1 {
    padding: 0;
  }

  .top-slider-content .button {
    position: relative;
    left: 0%;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }

  #TopSlider .glide__bullet {
    background-color: transparent;
    width: 10px;
    height: 10px;
    margin: 0 1em;
    opacity: 1;
    border: 0px solid transparent;
    bottom: 2em;
  }

  #TopSlider .glide__bullet:hover/*,
    #TopSlider .glide__bullet:focus*/ {
    border: 0px solid transparent;
    background-color: var(--color-4);
  }

  #TopSlider .glide__bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--color-3);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0.5;
  }

  #TopSlider .glide__bullet:hover::before/*,
    #TopSlider .glide__bullet:focus::before*/ {
    border: 2px solid var(--color-4);
  }

  #TopSlider .glide__bullet--active {
    background-color: var(--color-4);
  }

  #TopSlider .glide__bullet--active::before {
    border: 2px solid var(--color-4);
  }
}

/*Counter*/

#counter-container {
  background-image: url("../img/counter-bg-mob.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 7em 0 5em 0;
}

.counter-main {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  max-width: 350px;
  padding: 0 5%;
  margin: 0 auto;
}

.counter-main div {
  align-items: center;
  padding: 2em 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
}

.counter-main div div {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: flex-start;
  width: 100%;
}

.counter-main figure {
  height: 100%;
  margin: 0 2em 0 0;
}

.counter-main img {
  width: 40px;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.counter-main p:first-child {
  font-size: 1em;
  font-weight: 400;
  padding: 0;
  width: 100%;
  text-align: left;
}

.counter {
  line-height: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  margin-top: 0.4em;
  height: 2rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.counter > span {
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  line-height: 1;
  font-family: "Metropolis Bold", sans-serif;
  transition: transform 1.5s ease;
  -webkit-transition: transform 1.5s ease;
  -moz-transition: transform 1.5s ease;
  -ms-transition: transform 1.5s ease;
  -o-transition: transform 1.5s ease;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.counter > span span {
  flex: 0 0 100%;
  height: 100%;
}
.counter:nth-child(1) > span {
  transition-delay: 0s;
}
.counter:nth-child(2) > span {
  transition-delay: 0.375s;
}
.counter:nth-child(3) > span {
  transition-delay: 0.75s;
}
.counter:nth-child(4) > span {
  transition-delay: 1.125s;
}
.counter:nth-child(5) > span {
  transition-delay: 1.5s;
}
.counter:nth-child(6) > span {
  transition-delay: 1.875s;
}
.counter:nth-child(7) > span {
  transition-delay: 2.25s;
}
.counter:nth-child(8) > span {
  transition-delay: 2.625s;
}
.counter:nth-child(9) > span {
  transition-delay: 3s;
}
.counter:nth-child(10) > span {
  transition-delay: 3.375s;
}
.counter:nth-child(11) > span {
  transition-delay: 3.75s;
}
.counter:nth-child(12) > span {
  transition-delay: 4.125s;
}
.counter:nth-child(13) > span {
  transition-delay: 4.5s;
}
.counter:nth-child(14) > span {
  transition-delay: 4.875s;
}
.counter:nth-child(15) > span {
  transition-delay: 5.25s;
}
.counter:nth-child(16) > span {
  transition-delay: 5.625s;
}
.counter:nth-child(17) > span {
  transition-delay: 6s;
}
.counter:nth-child(18) > span {
  transition-delay: 6.375s;
}
.counter:nth-child(19) > span {
  transition-delay: 6.75s;
}
.counter:nth-child(20) > span {
  transition-delay: 7.125s;
}

@media only screen and (min-width: 767px) {
  #counter-container {
    padding: 2em 2em;
  }

  #counter-container {
    background-image: url("../img/counter-bg.webp");
  }

  .counter-main {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    max-width: 1400px;
  }

  .counter-main div {
    flex-direction: column;
    padding: 4em 0;
    justify-content: center;
  }

  .counter-main div div {
    align-items: center;
  }

  .counter-main img {
    width: 65px;
    height: auto;
  }

  .counter-main figure {
    margin: 0;
  }

  .counter-main p:first-child {
    padding: 1em 0 0 0;
    text-align: center;
  }
}

@media only screen and (min-width: 992px) {
  #counter-container {
    padding: 2em 0;
  }
}

/*Headline*/

.headline {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0 0 1em 0;
  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);
  margin-bottom: 1em;
}

.headline::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0%;
  height: 2px;
  bottom: 0px;
  background-color: var(--color-3);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  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);
}

#featured-project.show .headline::after,
#about-container.show .headline::after,
#customers-say.show .headline::after,
#projects-container.show .headline::after,
#services-container.show .headline::after,
#services-management-container.show .headline::after,
#services-development-container.show .headline::after,
#services-technology-container.show .headline::after,
#contact-map-container.show .headline::after,
#contact-job-container.show .headline::after {
  width: 90%;
}

@media only screen and (min-width: 767px) {
  #featured-project.show .headline::after,
  #about-container.show .headline::after,
  #customers-say.show .headline::after,
  #projects-container.show .headline::after,
  #services-container.show .headline::after,
  #services-management-container.show .headline::after,
  #services-development-container.show .headline::after,
  #services-technology-container.show .headline::after,
  #contact-map-container.show .headline::after,
  #contact-job-container.show .headline::after {
    width: 75%;
  }
}

/*Featured project*/
#featured-project,
#about-container,
#customers-say,
#projects-container,
#services-container,
#services-management-container,
#services-development-container,
#services-technology-container,
#contact-map-container,
#contact-job-container {
  background-color: var(--color-6);
  padding: 6em 0;
  width: 100%;
}

.featured-project-main,
.about-main,
.customers-main,
.projects-main,
.services-main,
.projects-personal-main,
.contact-main {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

#ProjectSlider,
#CustomersSlider {
  width: 96%;
  cursor: inherit;
  margin: 0 auto;
}

#ProjectSlider .glide__bullet,
#CustomersSlider .glide__bullet {
  bottom: -2.5em;
}

#ProjectSlider .glide__slide,
#CustomersSlider .glide__slide {
  position: relative;
  width: 100%;
  height: 300px;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
  margin: 20px 0;
}

#CustomersSlider .glide__slide {
  height: inherit;
  min-height: 300px;
}

#ProjectSlider .glide__slide {
  position: relative;
  width: 100%;
  height: 300px;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
  margin: 20px 0;
  overflow: hidden;
}

#ProjectSlider .glide__slide .featured-project-name {
  position: absolute;
  width: 101%;
  padding: 1em 1em;
  bottom: 0;
  z-index: 2;
  color: var(--color-1);
  font-size: 1.4em;
  font-weight: 400;
  text-transform: uppercase;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  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);
  pointer-events: none;
}

#ProjectSlider .glide__slide:hover .featured-project-name {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}

#ProjectSlider .glide__slide::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
  pointer-events: none;
  background: -moz-linear-gradient(
    top,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00333333', endColorstr='#b3333333',GradientType=0 );
}

#ProjectSlider .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glide__arrow {
  position: absolute;
  display: none;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: inherit;
  border-radius: 0px;
  box-shadow: inherit;
  text-shadow: inherit;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  line-height: 1;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.glide__arrow--left {
  left: -60px;
}

.glide__arrow--right {
  right: -60px;
}

.glide__arrow--left::before,
.glide__arrow--left::after,
.glide__arrow--right::before,
.glide__arrow--right::after,
.projects-personal-btn.prev a::before,
.projects-personal-btn.prev a::after,
.projects-personal-btn.next a::before,
.projects-personal-btn.next a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 5px;
  top: 50%;
  left: 0;
  background-color: var(--color-5);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: background-color 150ms ease-in-out;
  -webkit-transition: background-color 150ms ease-in-out;
  -moz-transition: background-color 150ms ease-in-out;
  -ms-transition: background-color 150ms ease-in-out;
  -o-transition: background-color 150ms ease-in-out;
}

.projects-personal-btn.next a::before,
.projects-personal-btn.next a::after {
  left: inherit;
  right: 12px;
}

.glide__arrow--left::before,
.projects-personal-btn.prev a::before {
  transform: translate(calc(0% + 4px), calc(-50% + 1px)) rotate(-45deg);
  -webkit-transform: translate(calc(0% + 4px), calc(-50% + 1px)) rotate(-45deg);
  -moz-transform: translate(calc(0% + 4px), calc(-50% + 1px)) rotate(-45deg);
  -ms-transform: translate(calc(0% + 4px), calc(-50% + 1px)) rotate(-45deg);
  -o-transform: translate(calc(0% + 4px), calc(-50% + 1px)) rotate(-45deg);
  transform-origin: bottom left;
}

.glide__arrow--left::after,
.projects-personal-btn.prev a::after {
  transform: translate(calc(0% + 4px), calc(-50% - 1px)) rotate(45deg);
  -webkit-transform: translate(calc(0% + 4px), calc(-50% - 1px)) rotate(45deg);
  -moz-transform: translate(calc(0% + 4px), calc(-50% - 1px)) rotate(45deg);
  -ms-transform: translate(calc(0% + 4px), calc(-50% - 1px)) rotate(45deg);
  -o-transform: translate(calc(0% + 4px), calc(-50% - 1px)) rotate(45deg);
  transform-origin: top left;
}

.glide__arrow--right::before,
.projects-personal-btn.next a::before {
  transform: translate(calc(100% - 10px), calc(-50% + 1px)) rotate(45deg);
  -webkit-transform: translate(calc(100% - 10px), calc(-50% + 1px))
    rotate(45deg);
  -moz-transform: translate(calc(100% - 10px), calc(-50% + 1px)) rotate(45deg);
  -ms-transform: translate(calc(100% - 10px), calc(-50% + 1px)) rotate(45deg);
  -o-transform: translate(calc(100% - 10px), calc(-50% + 1px)) rotate(45deg);
  transform-origin: bottom right;
}

.glide__arrow--right::after,
.projects-personal-btn.next a::after {
  transform: translate(calc(100% - 10px), calc(-50% - 1px)) rotate(-45deg);
  -webkit-transform: translate(calc(100% - 10px), calc(-50% - 1px))
    rotate(-45deg);
  -moz-transform: translate(calc(100% - 10px), calc(-50% - 1px)) rotate(-45deg);
  -ms-transform: translate(calc(100% - 10px), calc(-50% - 1px)) rotate(-45deg);
  -o-transform: translate(calc(100% - 10px), calc(-50% - 1px)) rotate(-45deg);
  transform-origin: top right;
}

.glide__arrow--left:hover::before,
.glide__arrow--left:hover::after,
.glide__arrow--right:hover::before,
.glide__arrow--right:hover::after,
.projects-personal-btn.prev a:hover::before,
.projects-personal-btn.prev a:hover::after,
.projects-personal-btn.next a:hover::before,
.projects-personal-btn.next a:hover::after {
  background-color: var(--color-2);
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: inherit;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.featured-project-more {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-top: 2em;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  color: var(--color-3);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media only screen and (min-width: 767px) {
  .glide__arrow {
    display: block;
  }
  #ProjectSlider .glide__bullets,
  #CustomersSlider .glide__bullets {
    display: none;
  }

  #ProjectSlider,
  #CustomersSlider {
    width: calc(100% - 160px);
    max-width: 100%;
  }

  .glide__arrow--left {
    left: -40px;
  }

  .glide__arrow--right {
    right: -40px;
  }
}

@media only screen and (min-width: 992px) {
  #ProjectSlider .glide__slide .featured-project-name {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }

  #ProjectSlider .glide__slide::after {
    height: 100%;
    bottom: inherit;
    top: 0;
    opacity: 0;
    background-color: var(--color-2);
  }

  #ProjectSlider .glide__slide:hover::after {
    opacity: 0.8;
  }

  #ProjectSlider .glide__slide a img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    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);
  }

  #ProjectSlider .glide__slide:hover a img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

@media only screen and (min-width: 1530px) {
  #ProjectSlider,
  #CustomersSlider {
    width: calc(100% + 120px);
    max-width: 1400px;
  }

  .glide__arrow--left {
    left: -60px;
  }

  .glide__arrow--right {
    right: -60px;
  }
}

/*Aboutcontainer*/
#about-container {
  background-color: var(--color-1);
}

.about-main ul,
.services-main ul,
.contact-main ul {
  width: 90%;
  margin: 0 auto;
  padding-top: 3em;
}

.about-main ul li,
.services-main ul li,
.contact-main ul li {
  display: flex;
  flex-direction: column;
  margin-bottom: 5em;
  background-color: var(--color-6);
  padding: 1em;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.services-main ul li,
.contact-main ul li {
  background-color: var(--color-1);
}

#services-development-container .services-main ul li {
  background-color: var(--color-6);
}

.about-main ul li figure,
.services-main ul li figure,
.contact-main ul li figure {
  width: 100%;
  display: flex;
  margin-bottom: 1.5em;
}

.about-main ul li figure img,
.services-main ul li figure img,
.contact-main ul li figure img {
  width: 45px;
  height: auto;
  margin: -3em auto 0 auto;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  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);
}

.about-main ul li.show figure img,
.services-main ul li.show figure img,
.contact-main ul li.show figure img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.about-main ul li div p,
.services-main ul li div p,
.contact-main ul li div p {
  text-align: justify;
}

.about-main ul li div p:first-child,
.services-main ul li div p:first-child,
.contact-main ul li div p:first-child {
  padding-bottom: 0.5em;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1.3em;
}

.about-main .about-container-map {
  width: 100%;
  margin: 3em auto 0 auto;
}

.about-main .about-container-map img {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.about-main .about-container-map.show img {
  opacity: 1;
}

.contact-main ul strong {
  font-weight: 600;
}

.contact-main ul li ul {
  padding: 0;
  margin: 1em 0 1.5em 0;
  width: 100%;
}

.contact-main ul li ul li {
  padding: 0 0 0 1.3em;
  margin-bottom: 0.8em;
  position: relative;
}

.contact-main ul li ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--color-3);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  top: 6px;
  left: 0;
}

.contact-main ul li ul li:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 767px) {
  .about-main ul,
  .services-main ul,
  .contact-main ul {
    width: 70%;
    padding-top: 1em;
  }

  .about-main ul li figure,
  .services-main ul li figure,
  .contact-main ul li figure {
    width: initial;
    display: flex;
    margin-bottom: 0;
  }

  .about-main ul li figure img,
  .services-main ul li figure img,
  .contact-main ul li figure img {
    width: 35px;
    margin: 0 4em 0 0;
  }

  .about-main ul li,
  .services-main ul li,
  .contact-main ul li {
    flex-direction: row;
    margin-bottom: 2em;
    background-color: var(--color-1);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 0;
  }

  .services-main ul li,
  .contact-main ul li {
    background-color: var(--color-6);
  }

  #services-development-container .services-main ul li {
    background-color: var(--color-1);
  }

  .about-main .about-container-map {
    width: 85%;
  }

  .about-main ul li div p:first-child,
  .services-main ul li div p:first-child,
  .contact-main ul li div p:first-child {
    text-align: left;
  }
}

/*Customers say container*/
#customers-say {
  background-image: url("../img/customers-bg-mob.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-1);
}

.customers-main .glide__slide {
  background-color: var(--color-1);
  padding: 3em;
  height: inherit;
}

.customers-main .glide__slide > p:nth-child(1) {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
  width: 100%;
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 0.5em;
}

.customers-main .glide__slide > p:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-5);
  bottom: 0;
  left: 0;
}

.customers-main .glide__slide > p:nth-child(2) {
  color: var(--color-3);
  font-size: 0.9em;
  margin-bottom: 1.5em;
}

.customers-main .glide__slide div {
  padding: 0 0 0 2.5em;
  display: flex;
  /*height: 100%;*/
  align-items: flex-start;
}

.customers-main .glide__slide div p {
  position: relative;
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: justify;
}

.customers-main .glide__slide div p::after {
  content: "\201D";
  position: absolute;
  top: 0;
  left: -0.6em;
  font-size: 3.8em;
  font-family: "Metropolis Semi Bold", sans-serif;
  font-weight: 700;
}

@media only screen and (min-width: 767px) {
  #customers-say {
    background-image: url("../img/customers-bg.webp");
  }

  .customers-main .glide__slide {
    padding: 2em;
  }
}

@media only screen and (min-width: 992px) {
  .customers-main .glide__slide {
    padding: 3em;
  }
}

/*projektek-oldal*/
.projects-main {
  padding: 0 0%;
}

.projects-menu-container {
  position: relative;
  margin: 4em 0 4em calc(5% - 15px);
  width: calc(90% + 30px);
}

.projects-menu-container::before,
.projects-menu-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15px;
  height: 100%;
  z-index: 1;
}

.projects-menu-container::before {
  left: 0;
  background: -moz-linear-gradient(
    left,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 30%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 30%,
    rgba(255, 255, 255, 0) 100%
  );
}

.projects-menu-container::after {
  right: 0;
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 70%,
    rgb(255, 255, 255) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 70%,
    rgb(255, 255, 255) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 70%,
    rgb(255, 255, 255) 100%
  );
}

.projects-personal-main .projects-menu-container::before,
.projects-personal-main .projects-menu-container::after {
  display: none;
}

.projects-menu {
  width: 100%;
  overflow-x: scroll;
  position: relative;
}

.projects-menu {
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-menu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.projects-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}

.projects-personal-list ul {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.projects-menu ul li {
  display: inline;
  white-space: nowrap;
  padding: 0.5em 15px 0.5em 15px;
}

.projects-menu ul li a {
  text-transform: uppercase;
  font-size: 1.1em;
  cursor: pointer;
}

.projects-menu ul li a.active {
  font-weight: 600;
  /*pointer-events: none;*/
}

.projects-personal-list ul li {
  text-transform: uppercase;
  font-size: 1.1em;
  display: none;
}

.projects-personal-list ul li.active {
  display: block;
}

.js-isotope {
  width: 90%;
  padding: 0 5%;
}

.isotope__item {
  width: 100%;
  margin: 0 0 15px 0;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
  overflow: hidden;
}

.isotope__item.lock {
  pointer-events: none;
}

.isotope__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
  pointer-events: none;
  background: -moz-linear-gradient(
    top,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(51, 51, 51, 0) 0%,
    rgba(51, 51, 51, 0) 31%,
    rgba(51, 51, 51, 0.7) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00333333', endColorstr='#b3333333',GradientType=0 );
}

.isotope__item figcaption {
  position: absolute;
  width: 101%;
  padding: 1em 1em 1em 1em;
  bottom: 0;
  z-index: 2;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  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);
  pointer-events: none;
}

.isotope__item:hover figcaption {
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}

.isotope__item figcaption p {
  color: var(--color-1);
  font-weight: 400;
}

.isotope__item figcaption p:nth-child(1) {
  text-transform: uppercase;
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

.isotope__item figcaption p:nth-child(2) {
  display: none;
}

.isotope__item a {
  display: block;
}

.isotope__item a img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
}

@media only screen and (min-width: 450px) {
  .isotope__item {
    width: calc(50% - 15px);
  }

  .projects-menu-container {
    padding: 0;
  }

  .js-isotope {
    width: calc(100% - 15px);
    padding: 0 0 0 15px;
  }
}

@media only screen and (min-width: 767px) {
  .projects-main {
    width: 700px;
    padding: 0;
  }

  .projects-menu-container {
    position: relative;
    margin: 4em 0 3em 0;
    width: 100%;
  }

  .projects-menu ul {
    list-style: none;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .projects-menu ul:after {
    content: "";
    flex: auto;
  }

  .projects-personal-list ul {
    justify-content: flex-end;
  }

  .projects-personal-list ul:after {
    content: "";
    flex: inherit;
  }

  .projects-menu ul li {
    padding: 0 15px 0.5em 15px;
  }

  .projects-menu-container::before,
  .projects-menu-container::after {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .projects-menu ul li a:hover {
    color: var(--color-3);
  }

  .isotope__item figcaption {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }

  .isotope__item::after {
    height: 100%;
    bottom: inherit;
    top: 0;
    opacity: 0;
    background-color: var(--color-2);
  }

  .isotope__item:hover::after {
    opacity: 0.6;
  }

  .isotope__item figcaption p:nth-child(2) {
    display: block;
  }

  .isotope__item figcaption {
    padding: 1em 1em 2em 1em;
  }

  .isotope__item a img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    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);
  }

  .isotope__item:hover a img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

@media only screen and (min-width: 1200px) {
  .projects-main {
    width: 1100px;
  }

  .isotope__item {
    width: calc(33.33333% - 15px);
  }
}

@media only screen and (min-width: 1450px) {
  .projects-main {
    width: 100%;
  }

  /*.projects-menu ul li:first-child {
    padding: 0 15px 0.5em 0;
  }

  .projects-menu ul li:last-child {
    padding: 0 0 0.5em 15px;
  }

  .js-isotope {
    width: calc(100% + 15px);
    padding-left: 0;
  }
}

@media only screen and (max-width: 1450px) {
  /*.projects-menu ul:after {
    content: "";
    flex: auto;
  }*/

  .projects-personal-list ul:after {
    flex: none;
  }
}

/*egyedi projekt oldal*/
#projects-container {
  background-color: var(--color-1);
}

#projects-container.show .projects-personal-main .headline::after {
  width: 100%;
}

.projects-personal-main {
  width: 90%;
}

.projects-personal-gray {
  background-color: var(--color-6);
  padding: 1.3em;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.projects-personal-main .headline {
  text-align: left;
}

.projects-personal-btn a {
  text-transform: uppercase;
  font-size: 1.1em;
  color: var(--color-5);
  position: relative;
}

.projects-personal-btn a:hover {
  color: var(--color-3);
}

.projects-personal-btn.back {
  position: relative;
}

.projects-personal-btn.back::after,
.projects-personal-btn.back::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: var(--color-5);
  left: 0;
  top: 50%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.projects-personal-btn.back::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform-origin: top left;
  margin-top: -1px;
}

.projects-personal-btn.back::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform-origin: bottom left;
  margin-top: -2px;
}

.projects-personal-btn.back a {
  padding: 0 0 0 60px;
}

.projects-personal-btn.back a::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 3px;
  background-color: var(--color-5);
  left: 0;
  top: 50%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.projects-personal-btn-container {
  display: flex;
  flex-flow: row wrap;
  margin: 6em 0 2em 0;
}

.projects-personal-btn-container {
  width: 100%;
}

.projects-personal-btn.prev,
.projects-personal-btn.next {
  width: 50%;
}

.projects-personal-btn.prev a {
  padding: 0 0 0 30px;
}

.projects-personal-btn.next a {
  padding: 0 30px 0 0;
  float: right;
}

#ProjectBigSlider {
  width: 100%;
  position: relative;
  margin-top: 3em;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
}

#ProjectBigSlider {
  width: 100%;
  cursor: inherit;
  position: relative;
}

#ProjectBigSlider .glide__slide {
  position: relative;
  width: 100%;
  /*height: 230px;*/
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16 / 9) {
  #ProjectBigSlider .glide__slide::before {
    float: left;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    content: "";
  }

  #ProjectBigSlider .glide__slide::after {
    display: block;
    content: "";
    clear: both;
  }
}

#ProjectBigSlider .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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%);
}

/* glide fade*/
#ProjectBigSlider .glide__slides {
  transform: none !important;
  width: auto !important;
  display: grid;
  grid-template-areas: "slide"; /*create a 1x1 grid where the single cell is called slide*/
}

#ProjectBigSlider .glide__slide {
  position: relative;
  opacity: 0;
  grid-area: slide;
  transition: opacity 0.8s ease;
  -webkit-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  -ms-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
}

#ProjectBigSlider .glide__slide--active {
  z-index: 1;
  opacity: 1;
}
/* glide fade end*/

#ProjectSmallSlider {
  width: 90%;
  cursor: inherit;
  margin: 7px auto 0 auto;
  position: relative;
}

#ProjectSmallSlider .glide__slide {
  position: relative;
  width: 100%;
  /*height: 100px;*/
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
@supports not (aspect-ratio: 16 / 9) {
  #ProjectSmallSlider .glide__slide::before {
    float: left;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    content: "";
  }

  #ProjectSmallSlider .glide__slide::after {
    display: block;
    content: "";
    clear: both;
  }
}

#ProjectSmallSlider .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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%);
}

#ProjectSmallSlider .glide__slide img {
  opacity: 0.6;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#ProjectSmallSlider .glide__slide--active img {
  opacity: 1;
}

#ProjectBigSlider .glide__arrows,
#ProjectBigSlider .glide__arrow[disabled] {
  display: none;
}

@media only screen and (min-width: 550px) {
  /*#ProjectBigSlider .glide__slide {
    height: 400px;
  }

  #ProjectSmallSlider .glide__slide {
    height: 170px;
  }*/
}

@media only screen and (min-width: 767px) {
  .projects-personal-main {
    width: 690px;
  }

  /*#ProjectBigSlider .glide__slide {
    height: 500px;
  }
   #ProjectSmallSlider .glide__slide {
    height: 210px;
  }
  */

  #ProjectSmallSlider {
    width: 690px;
  }

  .projects-personal-gray {
    background-color: var(--color-1);
    padding: 0;
  }
}

@media only screen and (min-width: 992px) {
  .projects-personal-main {
    width: 860px;
  }

  /*#ProjectBigSlider .glide__slide {
    height: 630px;
  }*/

  #ProjectSmallSlider {
    width: calc(100% + 60px);
    width: 860px;
    margin: 24px auto 0 auto;
  }

  #ProjectSmallSlider .glide__slide {
    /*height: 265px;*/
    cursor: pointer;
  }

  #ProjectBigSlider .glide__arrows {
    display: block;
  }

  #ProjectSmallSlider .glide__slide:hover img {
    opacity: 1;
  }
}

@media only screen and (min-width: 1200px) {
  .projects-personal-main {
    width: 1100px;
  }

  /*#ProjectBigSlider .glide__slide {
    height: 785px;
  }

  #ProjectSmallSlider .glide__slide {
    height: 330px;
  }*/

  #ProjectSmallSlider {
    width: calc(100% + 60px);
    width: 1100px;
  }

  #ProjectSmallSlider .glide__arrow--left {
    left: -30px;
  }

  #ProjectSmallSlider .glide__arrow--right {
    right: -30px;
  }
}

@media only screen and (min-width: 1580px) {
  .projects-personal-main {
    width: 100%;
  }

  /*#ProjectBigSlider .glide__slide {
    height: 1000px;
  }
  #ProjectSmallSlider .glide__slide {
    height: 430px;
  }
  */

  #ProjectSmallSlider {
    width: calc(100% + 120px);
    max-width: 1400px;
  }

  #ProjectSmallSlider .glide__arrow--left {
    left: -60px;
  }

  #ProjectSmallSlider .glide__arrow--right {
    right: -60px;
  }
}

/*szolgáltatás-oldal*/
#services-management-container,
#services-development-container,
#services-technology-container {
  padding: 1em 0 0 0;
}

#services-container {
  background-image: url("../upload/services/services_bg-mob.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-1);
}

#services-development-container {
  background-color: var(--color-1);
}

.services-trio {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.services-trio a {
  width: calc(33.33333% - 6px);
  flex-grow: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.services-trio a figure {
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
  overflow: hidden;
}

.services-trio a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  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);
}

.services-trio a figure:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.services-trio a p {
  width: 100%;
  font-size: 0.9em;
  text-align: center;
  padding: 2em 0 0 0;
  margin: 2em 0 0 0;
  position: relative;
  text-transform: uppercase;
  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);
}

.services-trio a p:hover {
  color: var(--color-3);
}

.services-trio a p::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  top: 4px;
  left: 50%;
  background-color: var(--color-5);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.services-flex {
  display: flex;
  flex-direction: column;
}

.services-main-img {
  width: 90%;
  height: auto;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
  margin: 4em 0 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.services-main ul {
  margin: 3em auto 0 auto;
}

.services-main .subline,
.contact-main .subline {
  width: 90%;
  font-weight: 500;
  font-size: 1.2em;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media only screen and (min-width: 767px) {
  #services-container {
    background-image: url("../upload/services/services_bg.webp");
  }
  #services-management-container,
  #services-development-container,
  #services-technology-container {
    padding: 6em 0;
  }

  .services-trio a p {
    font-size: 1.2em;
  }

  .services-flex {
    flex-direction: column;
  }

  .services-main-img {
    margin: 3em 0 0 0;
  }

  .services-main ul {
    margin: 4em auto 0 auto;
  }
}

@media only screen and (min-width: 992px) {
  .services-trio {
    width: 100%;
  }

  .services-trio a p {
    font-size: 1.4em;
    line-height: 1.4em;
  }
}

@media only screen and (min-width: 1400px) {
  .services-main-img {
    width: 100%;
  }

  .services-main .subline,
  .contact-main .subline {
    width: 100%;
  }
}

/*kapcsolat-oldal*/
#contact-map-container {
  background-image: url("../upload/contact/contact-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-1);
}

.contact-map {
  display: flex;
  flex-flow: column-reverse nowrap;
  width: 90%;
  margin: 4em auto 0 auto;
}

.map {
  width: 100%;
  height: 350px;
}

#google-map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 0px 18px -5px rgba(83, 83, 83, 0.4);
}

button.gm-ui-hover-effect {
  visibility: hidden;
}

.gm-style iframe + div {
  border: none !important;
}

.contact-info {
  width: 100%;
  padding: 0 0 4em 0;
}

.contact-info div {
  margin: 0 0 3em 0;
}

.contact-info-headline {
  font-size: 1.2em;
  padding: 0 0 1em 0;
  text-align: center;
}

.e-level {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-3);
}

.e-level:hover {
  color: var(--color-4);
}

.e-level:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.contact-info-tel {
  font-weight: 600;
  padding: 0.3em 0 0 0;
}

.contact-main-btn,
form button {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  margin: 3em 0;
  cursor: pointer;
}

.contact-main-btn.open {
  border: 2px solid var(--color-3);
  background-color: var(--color-6);
  color: var(--color-3);
}

form {
  margin: 0 auto;
  max-width: 460px;
  width: 90%;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 350ms ease-in-out;
  -webkit-transition: max-height 350ms ease-in-out;
  -moz-transition: max-height 350ms ease-in-out;
  -ms-transition: max-height 350ms ease-in-out;
  -o-transition: max-height 350ms ease-in-out;
}

form p {
  text-transform: uppercase;
  font-size: 1.4em;
  margin: 0 0 2em 0;
  padding-top: 0.5em;
}

.footer-nav div.open {
  padding: 0 0 1.5em 0;
  position: relative;
}

input,
textarea,
.select-selected {
  padding: 1em 1em 1em 1.5em;
  width: 100%;
  outline: none;
  color: var(--color-3);
  font-size: 1.2em;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  border: 1px solid var(--color-3);
  background-color: var(--color-1);
  border-radius: 5px;
  opacity: 0.2;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input:focus,
input:valid,
textarea:focus,
textarea:valid,
select:focus,
select:valid,
input:not(:placeholder-shown),
.select-selected.select-arrow-active,
.select-selected.select {
  opacity: 1;
}

.form-item {
  margin: 0 0 2.2em 0;
  position: relative;
}

input[type="text"] ~ label,
input[type="email"] ~ label,
textarea ~ label {
  color: var(--color-3);
  font-size: 1.2em;
  font-weight: 300;
  position: absolute;
  pointer-events: none;
  left: 1.5em;
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

input[type="text"]:focus ~ label,
input[type="text"]:not(:placeholder-shown) ~ label,
input[type="text"]:valid ~ label,
input[type="email"]:focus ~ label,
input[type="email"]:not(:placeholder-shown) ~ label,
input[type="email"]:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label {
  top: -0.8em !important;
  opacity: 1;
  font-size: 0.9em;
}

textarea {
  min-height: 170px;
  resize: none;
}

textarea ~ label {
  top: 15% !important;
}

input[type="file"] {
  z-index: -1;
  position: absolute;
  opacity: 0;
}

input[type="file"] + label {
  position: absolute;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 60px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input[type="file"] + label:hover {
  opacity: 1;
}

input[type="file"] + label img {
  position: absolute;
  width: 60%;
  height: auto;
  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%);
}

#file-upload-filename {
  pointer-events: none;
}

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  cursor: pointer;
}

.select-selected:after,
.select-selected:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 12px;
  height: 1px;
  background-color: var(--color-3);
}

.select-selected:after {
  right: 23px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.select-selected:before {
  right: 15px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.select-selected.select-arrow-active:after {
  right: 15px;
}

.select-selected.select-arrow-active:before {
  right: 23px;
}

.select-items div {
  color: var(--color-3);
  padding: 1em 1em 1em 1.5em;
  font-size: 1.2em;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.select-items {
  position: absolute;
  border: 1px solid var(--color-3);
  background-color: var(--color-1);
  border-radius: 5px;
  margin-top: 0.5em;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 0px 14px -3px rgba(104, 158, 213, 0.5);
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--color-3);
  color: var(--color-1) !important;
}

@media only screen and (min-width: 767px) {
  .contact-map {
    flex-flow: row wrap;
    width: 75%;
    margin: 4em auto 0 auto;
  }

  .map {
    width: 60%;
  }

  .contact-info {
    width: 40%;
    padding: 0 2em;
  }

  .contact-info-headline {
    text-align: left;
  }

  form {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .map {
    width: 70%;
    height: 400px;
  }

  .contact-info {
    width: 30%;
    padding: 0 4em;
  }
}

/*footer*/

footer {
  background-color: var(--color-2);
  width: 100%;
  position: relative;
  --footer-logo-width: 130px;
  --footer-logo-left: 50%;
  --footer-logo-top: 25px;
  --footer-logo-height: 49px;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--footer-logo-top) + var(--footer-logo-height));
  width: calc(var(--footer-logo-left) - (var(--footer-logo-width) / 2));
  height: 1px;
  background-color: var(--color-7);
}

footer::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(var(--footer-logo-top) + var(--footer-logo-height));
  width: calc(var(--footer-logo-left) - (var(--footer-logo-width) / 2));
  height: 1px;
  background-color: var(--color-3);
}

.footer-logo {
  width: var(--footer-logo-width);
  position: absolute;
  margin: var(--footer-logo-top) 0 0
    calc(var(--footer-logo-left) - (var(--footer-logo-width) / 2));
  top: 0;
  z-index: 1;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  padding: calc(var(--footer-logo-top) + var(--footer-logo-height) + 3em) 5% 2em
    5%;
  width: 100%;
  position: relative;
}

.footer-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-8);
}

.footer-nav div {
  width: 100%;
  position: relative;
  margin: 0.5em 0;
}

.footer-nav div.open {
  padding: 0 0 1.5em 0;
  position: relative;
}

.footer-nav div ul {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 350ms ease-in-out;
  -webkit-transition: max-height 350ms ease-in-out;
  -moz-transition: max-height 350ms ease-in-out;
  -ms-transition: max-height 350ms ease-in-out;
  -o-transition: max-height 350ms ease-in-out;
  margin: 1em 0 0 0;
}

.footer-nav div ul li {
  padding: 0.2em 0;
}

.footer-nav-btn {
  display: block;
  position: relative;
  padding: 0 0 calc(0.5em - 4px) 0;
  margin: 0 !important;
}

.footer-nav div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-8);
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-nav-btn::after,
.footer-nav div:last-child::after {
  display: none;
}

.footer-nav ul li a,
.footer-nav-btn a {
  color: var(--color-1);
  cursor: pointer;
}

.footer-nav-btn a {
  pointer-events: none;
  text-transform: uppercase;
  display: block;
  position: relative;
}

.footer-nav-btn a::before,
.footer-nav-btn a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 4px;
  height: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background-color: var(--color-8);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform-origin: bottom left;
  margin-right: 0.6em;
}

.footer-nav-btn a::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform-origin: bottom right;
  margin-right: 0.5em;
}

.footer-nav div.open .footer-nav-btn a::before {
  transform-origin: top right;
  bottom: -3px;
}

.footer-nav div.open .footer-nav-btn a::after {
  transform-origin: top left;
  bottom: -3px;
  margin-right: 0.7em;
}

.footer-nav ul li a:hover,
.footer-nav-btn a:hover {
  color: var(--color-3);
}

.footer-nav div:last-child {
  margin-left: auto;
  margin-right: 0;
}

.footer-nav div:last-child ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
  max-height: inherit !important;
  margin: 1em 0 0 0;
  overflow: inherit;
}

.footer-nav div:last-child ul li {
  padding: 0 0.7em;
}

.footer-nav div:last-child ul li a img {
  width: 30px;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 5));
  -webkit-filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

.footer-nav div:last-child ul li a:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

footer p {
  color: var(--color-8);
  padding: 1.5em 5%;
  text-align: center;
}

@media only screen and (min-width: 767px) {
  footer {
    --footer-logo-left: 5%;
  }

  footer::before {
    width: var(--footer-logo-left);
  }

  footer::after {
    right: initial;
    left: calc(var(--footer-logo-width) + var(--footer-logo-left));
    width: calc(100% - (var(--footer-logo-width) + var(--footer-logo-left)));
  }

  .footer-logo {
    margin: var(--footer-logo-top) 0 0 var(--footer-logo-left);
  }

  .footer-nav {
    flex-direction: row;
    padding: calc(var(--footer-logo-top) + var(--footer-logo-height) + 2em) 2em
      2em var(--footer-logo-left);
  }

  .footer-nav div {
    margin: 0 3% 0 0;
    max-width: 175px;
    width: initial;
  }

  .footer-nav div.open::after {
    opacity: 0;
  }

  .footer-nav-btn {
    margin: 0 0 1em 0 !important;
    padding: 0;
  }

  .footer-nav div::after,
  .footer-nav-btn a::before,
  .footer-nav-btn a::after {
    display: none;
  }

  .footer-nav-btn a {
    pointer-events: all;
    display: inline-block;
  }

  .footer-nav div ul {
    max-height: inherit !important;
    overflow: inherit;
    margin: 0;
  }

  .footer-nav div:last-child ul {
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
  }

  .footer-nav div:last-child ul li {
    padding: 0;
  }

  footer p {
    padding: 1.5em var(--footer-logo-left);
    text-align: left;
  }
}

@media only screen and (min-width: 992px) {
  footer {
    --footer-logo-left: 9%;
  }

  .footer-nav {
    flex-direction: row;
    padding: calc(var(--footer-logo-top) + var(--footer-logo-height) + 2em) 5em
      2em var(--footer-logo-left);
  }

  .footer-nav div {
    margin: 0 5% 0 0;
    max-width: 200px;
  }
}
