@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
/*Global styles*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-font: 'Source Sans Pro', sans-serif;
  --secondary-font: 'Herr Von Muellerhoff', cursive;
  --body-font: 'Cabin', sans-serif;
  --main-font-color-dark: #252525;
  --secondary-font-color: #ffffff;
  --body-font-color: #515151;
  --red-font-color: #520f0f;
}

html {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}
body{
  overflow-x: hidden;
}

section {
  padding: 3.9rem 0;
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

.container {
  width: 100%;
}

/* header-styles */

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.logo{
  color: white;
  font-size: 40px;
}
.flag{
  width: 30px;
  height: 20px;
  margin-left: 30px;
}
.logo-flags{
  align-content: left;;
}

.sign2{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2;
  left: 50%;
  top: 50%;
  font-family: "Clip";
  text-transform: uppercase;
  font-size: 3em;
  color: #ffffff;
  
  margin-right: 50px;
}
.sign {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2;
  left: 50%;
  top: 50%;
  font-family: "Clip";
  text-transform: uppercase;
  font-size: 3em;
  color: #ffffff;
  text-shadow: 0 0 0.6rem #ffffff, 0 0 1.5rem #00f7ff,
    -0.2rem 0.1rem 1rem #17afb4, 0.2rem 0.1rem 1rem #38f8ff,
    0 -0.5rem 2rem #00d1d8, 0 0.5rem 3rem #00aeb4;
  animation: shine 2s forwards, flicker 3s infinite;
  margin-right: 50px;
}

@keyframes blink {
  0%,
  22%,
  36%,
  75% {
    color: #ffffff;
    text-shadow: 0 0 0.6rem #ffffff, 0 0 1.5rem #02c4ca,
      -0.2rem 0.1rem 1rem #047a7e, 0.2rem 0.1rem 1rem #00bfc5,
      0 -0.5rem 2rem #1df7ff, 0 0.5rem 3rem #2bdee4;
  }
  28%,
  33% {
    color: #17bac0;
    text-shadow: none;
  }
  82%,
  97% {
    color: #058d92;
    text-shadow: none;
  }
}

.flicker {
  animation: shine 2s forwards, blink 3s 2s infinite;
}

.fast-flicker {
  animation: shine 2s forwards, blink 10s 1s infinite;
}

@keyframes shine {
  0% {
    color: #ffffff;
    text-shadow: none;
  }
  100% {
    color: #ffffff;
    text-shadow: 0 0 0.6rem #ffffff, 0 0 1.5rem #00f7ff,
      -0.2rem 0.1rem 1rem #00f7ff, 0.2rem 0.1rem 1rem #00f7ff,
      0 -0.5rem 2rem #00f7ff, 0 0.5rem 3rem #00f7ff;
  }
}

@keyframes flicker {
  from {
    opacity: 1;
  }

  4% {
    opacity: 0.9;
  }

  6% {
    opacity: 0.85;
  }

  8% {
    opacity: 0.95;
  }

  10% {
    opacity: 0.9;
  }

  11% {
    opacity: 0.922;
  }

  12% {
    opacity: 0.9;
  }

  14% {
    opacity: 0.95;
  }

  16% {
    opacity: 0.98;
  }

  17% {
    opacity: 0.9;
  }

  19% {
    opacity: 0.93;
  }

  20% {
    opacity: 0.99;
  }

  24% {
    opacity: 1;
  }

  26% {
    opacity: 0.94;
  }

  28% {
    opacity: 0.98;
  }

  37% {
    opacity: 0.93;
  }

  38% {
    opacity: 0.5;
  }

  39% {
    opacity: 0.96;
  }

  42% {
    opacity: 1;
  }

  44% {
    opacity: 0.97;
  }

  46% {
    opacity: 0.94;
  }

  56% {
    opacity: 0.9;
  }

  58% {
    opacity: 0.9;
  }

  60% {
    opacity: 0.99;
  }

  68% {
    opacity: 1;
  }

  70% {
    opacity: 0.9;
  }

  72% {
    opacity: 0.95;
  }

  93% {
    opacity: 0.93;
  }

  95% {
    opacity: 0.95;
  }

  97% {
    opacity: 0.93;
  }

  to {
    opacity: 1;
  }
}
.nav {
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  transition: .6s ease background-color;
}

.menu_toggle {
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1500;
}

.fa-times {
  display: none;
}

.nav_list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  z-index: 1250;
  background: var(--main-font-color-dark);
  padding: 4.4rem;
  transform: translateX(-100%);
  transition: transform 0.5s;
  margin-right: 25px;
}

.nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s;
}

.open .fa-times {
  display: block;
}

.open .fa-bars {
  display: none;
}

.open .nav_list {
  transform: translateX(0);
}

.open .nav::before {
  opacity: 1;
  transform: scale(1);
}

.nav_items {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.nav_link {
  display: block;
  color: var(--secondary-font-color);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-right: -2px;
  transition: color 0.5s;
}

.nav_link:hover {
  text-shadow: 5px 5px 10px black, 0 0 15px rgb(138, 138, 255), 0 0 15px rgb(0, 217, 255);
}

/* Hero */

.hero {
  width: 100%;
  height: 100vh;
  background: url('images/hero.jpg') center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.sub_headline {
  font-size: 8.5rem;
  font-family: var(--secondary-font);
  color: var(--secondary-font-color);
  font-weight: 100;
  line-height: 0.4;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeup 1s forwards;
  -moz-animation: fadeup 1s forwards; /* Firefox */
  -webkit-animation: fadeup 1s forwards; /* Safari and Chrome */
  -o-animation: fadeup 1s forwards; /* Opera */
  animation-delay: .5s;
}
.sub_headline_launch {
  font-size: 8.5rem;
  font-family: var(--secondary-font);
  color: black;
  font-weight: 100;
  line-height: 0.4;
  letter-spacing: 2px;
}

.first_letter {
  text-transform: uppercase;
  font-size: 10.3rem;
}

.headline {
  color: var(--red-font-color);
  font-size: 3.7rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5rem;
  margin-right: -0.5rem;
  animation: scale 0.5s forwards;
  -moz-animation: scale 0.5s forwards; /* Firefox */
  -webkit-animation: scale 0.5s forwards; /* Safari and Chrome */
  -o-animation: scale 0.5s forwards; /* Opera */
}

.seperator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 100%;
  max-width: 8.4rem;
  height: 0.25rem;
  background: #fff;
  position: relative;
  opacity: 0;
  animation: grow 2s forwards;
  -moz-animation: grow 2s forwards; /* Firefox */
  -webkit-animation: grow 2s forwards; /* Safari and Chrome */
  -o-animation: grow 2s forwards; /* Opera */
  animation-delay: .9s;
}

.line_right::before,
.line_left::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.6rem solid transparent;
  opacity: 0;
  animation: grow 0.5s forwards;
  -moz-animation: grow 0.5s forwards; /* Firefox */
  -webkit-animation: grow 0.5s forwards; /* Safari and Chrome */
  -o-animation: grow 0.5s forwards; /* Opera */
  animation-delay: 1.2s;
}

.line_left::before {
  border-left-color: #fff;
  left: 0;
}

.line_right::before {
  border-right-color: #fff;
  right: 0;
}

.asterisk {
  font-size: 1.3rem;
  color: var(--secondary-font-color);
  margin: 0 1.6rem;
  opacity: 0;
  animation: spin 1.5s forwards;
  -moz-animation: spin 1.5s forwards; /* Firefox */
  -webkit-animation: spin 1.5s forwards; /* Safari and Chrome */
  -o-animation: spin 1.5s forwards; /* Opera */
  animation-delay: 0.7s;
}
.single_animation{
  opacity: 0;
  opacity: 0;
  animation: fadedown 1s forwards;
  -moz-animation: fadedown 1s forwards; /* Firefox */
  -webkit-animation: fadedown 1s forwards; /* Safari and Chrome */
  -o-animation: fadedown 1s forwards; /* Opera */
  animation-delay: 1.5s;
}

.headline_drescription h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  margin-right: -3px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.cta_btn {
  font-size: 1.1rem;
  background: #fff;
  padding: 0.9rem 1.8rem;
  color: var(--body-font-color);
  border-radius: 0.4rem;
  transition: background 0.5s;
}

.cta_btn:hover,
.cta_btn:focus {
  color: #fff;
  background: var(--secondary-font-color);
}

.gloabl_headline {
  text-align: center;
  margin-top: 3.9rem;
}

.discover_our_story .gloabl_headline {
  margin-top: 6.9rem;
}

.gloabl_headline .asterisk {
  color: var(--body-font-color);
  margin: 2.4rem 0;
}

.headline_dark {
  color: var(--main-font-color-dark);
  letter-spacing: 0.7rem;
  margin-right: -0.7rem;
}

.gloabl_headline .sub_headline {
  letter-spacing: -1px;
  line-height: 0.42;
}

.container_info {
  text-align: center;
}

.container_drescription {
  margin-bottom: 3rem;
  margin-left: 5%;
  margin-right: 5%;
}

.container_drescription p {
  line-height: 1.6rem;
  margin-bottom: 2.4rem;
}

.body_btn {
  font-size: 1.5rem;
  color: var(--secondary-font-color);
  position: relative;
  transition: color 0.5s;
}
.techstack_btn{
  font-size: 1.5rem;
  color: rgb(151, 151, 151);
  position: relative;
  transition: color 0.5s;
}

.body_btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--secondary-font-color);
  transition: background 0.5s;
}
.techstack_btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--red-font-color);
  transition: background 0.5s;
}

.body_btn:hover,
.body_btn:focus,
.techstack_btn:hover,
.techstack_btn:focus {
  color: var(--main-font-color-dark);
}

body_btn:hover::before,
body_btn:focus::before {
  background: var(--main-font-color-dark);
}


/* About Us */

.our_services {
  background: url('images/nightlake.jpeg') center no-repeat;
  background-size: cover;
  background-position: bottom;
}

.between {
  min-height: 65vh;
  display: flex;
  align-items: center;
}
.paragraph-justified{
  text-align: justify;
}
.flagspic {
  padding:1px;
  border:1px solid #021a40;
  background-color:rgb(255, 255, 255);
}

svg{
  background-image: url("images/flags.jpg");
  background-size:contain;
  background-repeat: no-repeat;
  width:100%; 
  height:50%;
  display:block;
}
text{
  font-size:5px;
  transition: font-size .7s ease-out, transform .7s ease-out;
  font-weight:900;
  font-family:arial;
  transform: scale(1);
}
svg:hover text{
  transition: font-size .7s ease-in, transform .7s ease-in;
  font-size: 185px;
  transform: scale(1.5);
}

/* Web App vs Website */

.image_group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.website_webapp .container_drescription {
  padding-top: 3rem;
  margin-bottom: 0;
}
.stroke-header {
  color: white;
}
.launch-cursive{
  color: white;
}

/* Launch and Team */

.Launch {
  background: url(images/rocket.jpg) no-repeat;
  object-fit: none;
  background-position: top;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 400px;
  perspective: 1000px;
  margin-bottom: 50px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  padding: 85px 0;
  background-color: white;
  color: black;
  transform: rotateY(180deg);
}
.dna{
  width: 70px;
  height: 70px;
  margin-top: 20px;
}
.cat-top{
  margin-top: 10px;
  width: 70px;
  height: 70px;
}
.cat-bottom{
  margin-top: 10px;
  width: 50px;
  height: 50px;
}

/* Footer */
footer {
  padding: 4rem 1rem 3rem 1rem;
  background: #121212;
  color: #fff;
  text-align: center;
  position: relative;
}

.wrapper {
  height: 100vh;
  /* This part is important for centering the content */
  display: flex;
  align-items: center;
  justify-content: center;
  /* End center */
  background: -webkit-linear-gradient(to right, #834d9b, #d04ed6);
  background: linear-gradient(to right, #834d9b, #d04ed6);
}

.wrapper a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  background-color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  color: #585858;
  font-family: 'Roboto', sans-serif;
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, .7);
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #d02d2c;
  }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}

.back_to_top {
  width: 7rem;
  height: 7rem;
  background: #121212;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.back_to_top i {
  display: block;
  color: #fff;
  font-size: 2rem;
  padding: 2rem;
  opacity: 0;
  animation: up 2s infinite;
  -moz-animation: up 2s infinite; /* Firefox */
  -webkit-animation: up 2s infinite; /* Safari and Chrome */
  -o-animation: up 2s infinite; /* Opera */
}

.footer_content {
  overflow: hidden;
}

.footer_content h4 {
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 3px;
  margin-bottom: 3rem;
}

.footer_content .asterisk {
  margin: 2.4rem 0;
}

.footer_content_about {
  margin-bottom: 5.4rem;
}

.footer_content p {
  line-height: 2;
}
/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (max-width: 700px)
{
  .stroke-header{
    font-size: 2rem;
  }
  .launch-cursive{
    font-size: 4rem;
  }
  .image_group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
    margin:auto;
  }
  .flag{
    width: 30px;
    height: 20px;
    margin-left: 5px;
  }
  .flip-card {
    margin-left: 10%;
  }

}
@media screen and (min-width: 900px) {
  section {
    padding: 7.9rem;
  }
  .menu_toggle {
    display: none;
  }
  .nav {
    justify-content: space-between;
  }
  .nav_list {
    position: initial;
    width: initial;
    height: initial;
    background: transparent;
    padding: 0;
    justify-content: initial;
    flex-direction: row;
    transform: initial;
    transition: initial;
  }
  .nav_items {
    margin: 1.24rem;
    border: none;
  }
  .nav_items:last-child {
    margin-right: 0;
  }
  .nav_link {
    font-size: 1.3rem;
  }
  .sub_headline {
    font-size: 10rem;
  }
  .first_letter {
    font-size: 12.2rem;
  }
  .headline {
    font-size: 4.7rem;
    letter-spacing: 0.8rem;
  }
  .line {
    max-width: 11.5rem;
  }
  .container_info {
    display: flex;
    align-items: center;
  }
  .container_info > div {
    flex: 1;
  }
  .padding_right {
    padding-right: 7rem;
  }
  .footer_content {
    max-width: 77.5rem;
    margin: auto;
  }
  .footer_content_about {
    max-width: 51.3rem;
    margin: 0 auto 5.4rem;
  }
  .footer_content_divider {
    display: flex;
    justify-content: center;
  }

}

/* animations */
@keyframes fadeup{
  0%{
    transform: translateY(4rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale{
  0%{
    transform: scale(1.3);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes grow{
  0%{
    width: 0;
  }
  100%{
    opacity: 1;
    width: 100%;
  }
}
@keyframes spin{
  0%{
    transform: rotate(0);
  }
  100%{
    opacity: 1;
    transform: rotate(-360deg);
  }
}
@keyframes fadedown{
  0%{
    transform: translateY(-1rem);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes up{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: translateY(-1rem);
  }
}