main > section:not(:first-child){
    padding: 0 1rem;
    margin-bottom: 4rem;
}

main > section > h2{
    text-align: center;
}


/* All Sections overall */

main > section > h2::after,
main > section > h2::before{
    display: inline-block;
    content: '';
    margin: 0 14px 14px 14px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.4);
    width: 100px;
}

@media screen and (max-width: 1800px) {
    main > section > h2::after,
    main > section > h2::before{
        display: none;
    }
}

main > section > p{
    text-align: center;
}

/* ============================================= */
/* <section id="start_section">       */
/* ============================================= */

#start_section{
    position: relative;

}

#start_section .img-wrap{
    height: calc(100vh - 64px);
    overflow: hidden;
}

#start_section picture{

    filter: grayscale(50%);
    opacity: 0.35;
    top: -250px;
    z-index: -1;
}

#start_section figure{

}

#start_section .content{
    position: absolute;
    top: 0;
    height: 100%;
}

#start_section .content > *{
    height: 100%;
}

#start_section .content .text{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#start_section .content .text .wrapper{
    margin-top: -60px;
}

#start_section .content .text .wrapper h1{
    margin: -80px 0 0 0;
}

#start_section .content .text .wrapper .sub{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

#start_section .content .text .wrapper p{
    color: var(--col-prim);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

#start_section .line-svg{
    position: absolute;
    height: 200px;
    right: 20px;
    bottom: 10%;
    fill: none;
    transform: rotate(-12deg);
}

#start_section .line-svg .line{
    stroke: var(--col-prim);
}

#start_section .line-svg .arrow{
    fill: var(--col-prim);
}

#start_section .probieren-txt{
    position: absolute;
    right: 300px;
    bottom: 20%;
    transform: rotate(-5deg);
    white-space: nowrap;
}

@media screen and (max-width: 1250px) {
    #start_section .line-svg{
        height: 120px;
        bottom: 13%;
    }
    #start_section .probieren-txt{
        right: 150px;
        transform: rotate(-10deg);
        bottom: 18%;
    }
}

#start_section .kippen.btn,
#start_section .fullscreen-demo{
    position: absolute;
    bottom: 80px;
    right: 50px;
    transform: rotate(-5deg);
}

#start_section .fullscreen-demo{
    bottom: 30px;
}

@media screen and (max-width: 1000px) {
    #start_section .probieren-txt,
    #start_section .line-svg,
    #start_section .fullscreen-demo{
        display: none;
    }
}

/* https://marvelapp.github.io/devices.css/ */
.marvel-device.ipad{
    margin-top: 40px;
    --s: 460px;
    width: var(--s);
    height: calc(var(--s)*1.3333333);
    transform: rotateZ(6deg);
    opacity: 0.95;
    transition-duration: 0.2s;
}
@media screen and (max-height: 900px) {.marvel-device.ipad{--s: 420px;}}
@media screen and (max-height: 800px) {.marvel-device.ipad{--s: 360px;}}
@media screen and (max-height: 750px) {.marvel-device.ipad{--s: 340px;}}
@media screen and (max-height: 700px) {.marvel-device.ipad{--s: 320px;}}

@media screen and (max-width: 1400px) {.marvel-device.ipad{--s: 360px;}}
@media screen and (max-width: 1100px) {
    .marvel-device.ipad{--s: 320px;}
    #start_section .kippen.btn{display: none;}
}

.marvel-device.ipad:hover,
.marvel-device.ipad:focus{
    transform: rotateZ(0deg);
    opacity: 1;
}

.marvel-device.ipad .screen{
    position: relative;
}

.marvel-device .preloader-wrapper{
    position: absolute;
    z-index: -1;
    left: 40%;
    top: 45%;
}

.marvel-device.ipad .screen iframe{
    margin-top: -2px;
    margin-left: -2px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

#start_section .marvel-device.landscape{
    margin-top: 120px;
    margin-left: -150px;
    height: var(--s);
    width: calc(var(--s)*1.3333333);
}

@media screen and (max-width: 1400px) {#start_section .marvel-device.landscape{margin-left: -200px;}}

@media screen and (max-width: 992px) {
    #start_section .marvel-device{
        transform: scale(0.7) rotateZ(6deg);
        margin-left: 350px;
    }

    #start_section .device-wrapper{
        position: absolute;
        top: 20%;
    }
}

@media screen and (max-width: 992px) {
    @media screen and (max-height: 700px) {
        #start_section .device-wrapper{
            top: 15%;
        }
    }
}

@media screen and (max-width: 800px) {
    #start_section .device-wrapper{
        display: none;
    }
    #start_section .content .text .wrapper{
        margin-top: 0;
    }
}

/* ============================================= */
/* <section id="start_section">       */
/* ============================================= */
/*                   E  N  D                     */
/* _____________________________________________ */
/* ------------------------------------------------------------------------------------ */
/* ============================================= */
/* <section id="explainer_section">       */
/* ============================================= */

#explainer_section{
    background-color: var(--col-prim);
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

#explainer_section h2{
    color: white;
}

#explainer_section h2::after,
#explainer_section h2::before{
    border-color: rgba(255, 255, 255, 0.5);
}

#explainer_section .btn{
    margin-left: 1rem;
    background-color: var(--col-blue);
}

section nav > *{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
}

/* ============================================= */
/* <section id="explainer_section">       */
/* ============================================= */
/*                   E  N  D                     */
/* _____________________________________________ */
/* ------------------------------------------------------------------------------------ */
/* ============================================= */
/* <section id="features_section">       */
/* ============================================= */

/*                                  ---- Nice explainers Cards ----  */
ol.explainers-wrapper {
  margin-inline: auto;

  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;

  list-style: none;
  counter-reset: cardnr;
  justify-content: center;
}

.explainers-wrapper li {
  --frontColor: white;
  --width: 15em;
  --inlineP: 0.5rem;
  --borderR: 4rem;
  --arrowW: 2rem;
  --arrowH: 1.5rem;

  counter-increment: cardnr;
  width: calc(var(--width) - var(--inlineP) * 2);
  display: grid;
  grid-template:
    "icon" var(--borderR)
    "title"
    "descr" 1fr;
  margin-inline: var(--inlineP);
  margin-bottom: calc(var(--borderR));
  position: relative;
}

.explainers-wrapper li:nth-child(3){
    opacity: 0.5;
}

.explainers-wrapper li:nth-child(4){
    opacity: 0.5;
}

.explainers-wrapper li .icon,
.explainers-wrapper li .title,
.explainers-wrapper li .descr {
  background: var(--frontColor);
  padding-inline: 1rem;
  padding-bottom: 1rem;
}
.explainers-wrapper li .icon,
.explainers-wrapper li .title {
  color: var(--accent-color);
  text-align: center;
  padding-bottom: 0.5rem;
}

.explainers-wrapper li .title,
.explainers-wrapper li .descr {
  filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}
.explainers-wrapper li .icon {
  grid-area: icon;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--borderR) 0 0 0;
  position: relative;
}

.explainers-wrapper li .title {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: bold;
}

.explainers-wrapper li .descr {
  grid-area: descr;
  font-size: 0.85rem;
  text-align: center;
}
.explainers-wrapper li .descr::before {
  content: "";
  width: var(--arrowW);
  height: var(--arrowH);
  position: absolute;
  right: 1.5rem;
  top: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.explainers-wrapper li::after {
  content: counter(cardnr, decimal-leading-zero);
  position: absolute;
  z-index: -1;

  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  top: var(--borderR);
  bottom: calc(var(--borderR) * -1);

  display: flex;
  align-items: flex-end;
  background: var(--accent-color);
  background-image: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.25),
    transparent 25% 75%,
    rgba(0, 0, 0, 0.25)
  );
  border-radius: 0 0 var(--borderR) 0;

  --pad: 1rem;
  padding: var(--pad);
  font-size: calc(var(--borderR) - var(--pad) * 2);
  color: white;
}
.explainers-wrapper li::before {
  content: "";
  position: absolute;
  height: var(--borderR);
  top: calc(100% + var(--borderR) - 2px);
  left: calc(var(--inlineP) * -1);
  right: calc(var(--inlineP) * -1);
  border-radius: 0 var(--borderR) 0 0;

  background-image: linear-gradient(var(--accent-color), transparent 60%);
  opacity: 0.5;
  filter: blur(2px);
}

/* ============================================= */
/* <section id="features_section">               */
/* ============================================= */
/*                   E  N  D                     */
/* _____________________________________________ */
/* ------------------------------------------------------------------------------------ */
/* ============================================= */
/* <section id="steps_section">                  */
/* ============================================= */

#steps_section{}

#steps_section .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#steps_section article{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 300px;
}

#steps_section article .step-circle{
    --s: 50px;
    position: absolute;
    z-index: 10;
    left: calc(var(--s) / 2 *(-1));
    top: calc(var(--s) / 3 *(-1));
    border: 1px solid transparent;
    /* transform: translate(-50%); */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    height: var(--s);
    width: var(--s);
    font-size: 20px;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

#steps_section article .card-panel{
    width: 100%;
}

/* ============================================= */
/* <section id="steps_section">                  */
/* ============================================= */
/*                   E  N  D                     */
/* _____________________________________________ */
/* ------------------------------------------------------------------------------------ */
/* ============================================= */
/* <section id="newsletter_section">             */
/* ============================================= */

#newsletter_section{

}

#newsletter_section nav{
    text-align: center;
}

#newsletter_section form .content{
    padding: 2rem;
    background-color: white;
}

#newsletter_section h4{
    font-size: 20px;
}

#newsletter_submitt_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    width: 100%;
}

#newsletter_submitt_btn i{
    margin-right: 0.6rem;
}

#microsoft-form{
    height: 725px;
    width: 850px;
    overflow: hidden;
}

#microsoft-form iframe{
    position: relative;
    top: -50px;
    height: 1000px;
}

@media screen and (max-width: 900px) {
    #microsoft-form{
        width: 100%;
    }
    #microsoft-form iframe{
        position: static;
    }
}

@media screen and (max-width: 800px) {
    #microsoft-form{
        height: 570px;
    }
}

/* ============================================= */
/* <section id="newsletter_section">             */
/* ============================================= */
/*                   E  N  D                     */
/* _____________________________________________ */