/*
Colors:
567c86 sötétkék
8ad1e3 világoskék
21252908 szürke
*/

/* Main HTML Tags*/
body {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  height:100%;
}

hr{
  color:#567c86;
}

p {
  font-size: 20px;
}

a:link {
  color: #8ad1e3;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #8ad1e3;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #8ad1e3;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #8ad1e3;
  background-color: transparent;
  text-decoration: underline;
}

/* Main website sections */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  /* Full viewport height */
  text-align: center;
}
#vision {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 700px;
  /* Full viewport height */
  text-align: center;
}
#meettheteam {
  min-height: 600px;
}
#howitworks {
  min-height: 200px;
}
/* align to middle */
.midlane {
  align-self: center;
}
/* Menu font */
li {
  font-size: 20px;
}
/* Backgrounds */
#basebackground{
  background-color: #21252908;

}
#herobackground{
  background-color: #21252908;
  background-image: url('pics/forma_01.png');
  background-size: cover;
}
#servicesbackground{
  background-color: #ffffff;
}
#visionbackground{
  background-color: #21252908;
  background-image: url('pics/forma_03_flipped.png');
  background-size: cover;
}
#joinbackground{
  background-color: #8ad1e3;
}
#footerbackground{
  background-color: #8ad1e3;
  margin-bottom:0px;
  padding-bottom: 0%;
}
#meettheteamimage{
  width: 150%;
  height: 150%;
  align: center;
}

/* Cards setup */
.card {
  width: 100%;
}

.card-header {
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
}

.card-height {
  height: 150px;
  display: flex;
  align-items: center;
  text-align: justify;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters>[class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.steps {
  background-color: #8ad1e3;
  border: #8ad1e3;
  border-radius: 50px;
  padding: 15px;
  width: 100%;
  display: table-caption;
  font-size: 2em;
  color: #333;
}

/*Images*/

img {
  transform: scale(1.5);
  transform-origin: 40% 20%;
} 

/*Animations*/

@keyframes enter-animation {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .image-animation {
    animation: enter-animation 0.8s 1;
  }
}

