/* basic */
html {
  scroll-behavior: smooth;
}
h1 {
  font-size: 96px;
  font-family: "narkiss-yair-variable", sans-serif;
  font-variation-settings: "MONO" 0, "wght" 400;
  color: #ffffff;
}
h2 {
  font-size: 64px;
  font-family: "narkiss-yair-variable", sans-serif;
  font-variation-settings: "MONO" 0, "wght" 400;
  color: #ffffff;
}
h3 {
  font-size: 48px;
  font-family: "narkiss-yair-variable", sans-serif;
  font-variation-settings: "MONO" 0, "wght" 400;
  color: #ffffff;
}
p,
li {
  font-size: 24px;
  font-family: "narkiss-yair-variable", sans-serif;
  font-variation-settings: "MONO" 0, "wght" 400;
  color: #ffffff;
  line-height: normal;
}
body {
  background-color: #021826;
  margin: 0;
}
section {
  margin-bottom: 150px;
}

.socialmedia {
  display: flex;
  justify-content: center;
  align-items: center;
}
.socialmedia img {
  width: 50px;
  padding-left: 20px;
}

/*footer{
	border: 2px solid #0f8d8c ;
}*/

/* header */

.navigation {
  display: flex;
  justify-content: space-between;
  align-self: baseline;
  position: sticky;
  top: 0;
}

.page a {
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  /*padding-inline: 20px;*/
  padding-left: 20px;
  padding-right: 20px;
}
.page span:hover {
  text-decoration: overline 2px #0f8d8c;
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logoPhoto {
  width: 150px;
  height: 150px;
}

/* body */

/*main head*/

#head {
  background-image: url(../photo/mindwavchat-neuroflux-technologie-blau.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
}
.main-section {
  text-align: center;
}

/* container 3 columns */

.centerblock {
  display: block;
  text-align: center;
  /*margin-inline: 200px;*/
  margin-left: 200px;
  margin-right: 200px;
}
.three-spalte {
  display: block;
}

.three-spalte > * {
  padding: 60px;
}
.info-spalte {
  text-align: center;
  text-decoration: none;
}

footer .info-spalte {  
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-spalte-footer {
  display: flex;
  justify-content: center;
}

.three-spalte-footer > * {
  padding: 30px;
}

/*one column with text and photo*/

.onecolumn {
  display: block;
  text-align: center;
  /*padding-inline: 100px;*/
  padding-left: 100px;
  padding-right: 100px;
}
.onecolumn p {
  /* padding-inline: 200px;*/
  padding-left: 200px;
  padding-right: 200px;
}
.middlephoto {
  width: 100%;
  height: auto;
}

/*line h1 */

.line {
  width: 100%;
  max-width: 500px;
  height: 5px;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
  background-color: #0f8d8c;
}

/*section 2 columns*/

.photoformat {
  padding: 0;
  /*width: 100%;*/
  width: 1000px;
  height: 760px;
}
.text-photo,
.photo-text {
  display: block;
}
.text-photo > * {
  padding: 1rem;
}
.photo-text > * {
  padding: 1rem;
}
.textcolumn {
  /* padding-inline: 150px;*/
  padding-left: 150px;
  padding-right: 150px;
}

/*section photo is circle*/

.circle-image {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  border: 5px #0f8d8c;
  width: 700px;
  height: 700px;
  object-fit: cover;
}

/*footer*/

.footer-info {
  display: flex;
  justify-content: center;
}

/*.footer-info h3{
 text-decoration: overline 2px #0f8d8c;
}*/

/*login form try */

.ring {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ring i {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  transition: 0.5s;
}
.ring i:nth-child(1) {
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}
.ring i:nth-child(2) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}
.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}
.ring:hover i {
  border: 6px solid #0f8d8c;
  filter: drop-shadow(0 0 20px #0f8d8c);
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.contact {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.contact .inputBx {
  position: relative;
  width: 300px;
}
.contact .inputBx input {
  position: relative;
  /*width: 100%;*/
  width: 300px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 1.2em;
  color: #fff;
  box-shadow: none;
  outline: none;
}
.contact .inputBx input[type="submit"] {
  width: 342px;
  background: linear-gradient(45deg, #0f8d8c, #7ba7e0);
  border: none;
  cursor: pointer;
}
.contact .inputBx input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

#loading-img {
  display: none;
}
.response_msg {
  margin-top: 10px;
  font-size: 13px;
  background: #e5d669;
  color: #ffffff;
  width: 250px;
  padding: 3px;
  display: none;
}

.text-photo,
.photo-text{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.three-spalte {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

/* tablet breakpoint */

/*section tablet breakpoint -----

75% von Schriftgröße
abstand 50% 

---------------------------------*/

@media (min-width: 768px) and (max-width: 1200px) {
 /* .ring i {
    display: none;
    overflow: hidden;
  }*/

  .ring {
    width: 400px;
    height: 400px;
  }

  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 36px;
  }
  p,
  li {
    font-size: 22px;
  }

  section {
    margin-bottom: 70px;
  }

  .text-photo,
  .photo-text,
  .footer-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .three-spalte {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .logoPhoto {
    width: 100px;
    height: 100px;
  }

  #head {
    height: 500px;
  }

  /* container 3 columns */

  .centerblock {
    /*margin-inline: 100px;*/
    margin-left: 100px;
    margin-right: 100px;
  }
  .three-spalte > * {
    padding: 30px;
  }

  /*one column with text and photo*/

  .onecolumn {
    display: block;
    text-align: center;
    /* padding-inline: 50px;*/
    padding-left: 50px;
    padding-right: 50px;
  }
  .onecolumn p {
    /* padding-inline: 100px;*/
    padding-left: 100px;
    padding-right: 100px;
  }
  .middlephoto {
    width: 1000px;
    height: auto;
  }

  /*section 2 columns*/

  .photoformat {
    padding: 0;
    /*width: 100%;*/
    width: 700px;
    height: auto;
  }

  .textcolumn {
    /* padding-inline: 100px;*/
    padding-left: 100px;
    padding-right: 100px;
  }

  /*section photo is circle*/

  .circle-image {
    border-radius: 50%;
    height: 50px;
    width: 500px;
    height: 500px;
  }
}

/* handy breakpoint */

/*section handy breakpoint -----

50% von Schriftgröße
abstand 75% 

---------------------------------*/

@media (max-width: 767px) {
 /* .ring i {
    display: none;
    overflow: hidden;
  }*/
  .ring {
    width: 300px;
    height: 300px;
  }

  .ring:hover i {
    border: 3px solid #0f8d8c;
    filter: drop-shadow(0 0 20px #0f8d8c);
  }

  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  p,
  li {
    font-size: 16px;
  }

  .page a {
    font-size: 18px;
    /*padding-inline: 20px;*/
    padding-left: 5px;
    padding-right: 5px;
  }
  section {
    margin-bottom: 40px;
  }

  .text-photo,
  .photo-text,
  .footer-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .three-spalte {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .logoPhoto {
    width: 75px;
    height: 75px;
  }

  #head {
    height: 400px;
  }

  /* container 3 columns */

  .centerblock {
    /*     margin-inline: 20px;*/
    margin-left: 20px;
    margin-right: 20px;
  }
  .three-spalte > * {
    padding: 20px;
  }

  /*one column with text and photo*/

  .onecolumn {
    display: block;
    text-align: center;
    /* padding-inline: 20px;*/
    padding-left: 20px;
    padding-right: 20px;
  }
  .onecolumn p {
    /* padding-inline: 50px;*/
    padding-left: 50px;
    padding-right: 50px;
  }
  .middlephoto {
    width: 100%;
    height: auto;
  }

  /*section 2 columns*/

  .photoformat {
    padding: 0;
    /*width: 100%;*/
    width: 100%;
    height: auto;
  }

  .textcolumn {
    /* padding-inline: 70px; */
    padding-left: 70px;
    padding-right: 70px;
  }

  /*section photo is circle*/

  .circle-image {
    border-radius: 0;
    width: 85%;
    height: auto;
  }

  .socialmedia img {
    width: 25px;
    padding-left: 20px;
  }


  /*contact*/

  .contact {
    position: absolute;
    width: 100%;
  }
  
  .contact .inputBx {
     width: auto;
  }
  .contact .inputBx input {
    width: auto;
  }
  .contact .inputBx input[type="submit"] {
    width: 100%;
  }

}
