@media screen and (min-width: 1200px) {

  .only-desktop {
    display: block;
  }
  .only-mobile {
    display: none;
  }

  header {
    position: fixed;
    width: 100%;
    height: 90px;
    overflow: visible;
    border-bottom: solid rgba(60,60,60) 1px;
  }
  header .logo {
    position: relative;
    top: -5px;
    width: 230px;
    line-height: 90px;
    z-index: 99999;
    cursor: pointer;
    user-select: none;
  }
  header .logo h1 {
    font-size: 32px;
    font-weight: 500;
  }
  header .hamburger {
    display: none;
  }
  header nav {
    margin-top: 0;
    width: 1200px;
    line-height: 90px;
  }
  header nav .links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  header nav .left, .right {
    display: flex;
    flex-wrap: wrap;
  }
  header nav .left {
    margin-left: 0;
    width: 500px;
  }
  header nav .right {
    margin-right: 0;
    width: 370px;
  }
  header nav ul {
    width: 100px;
  }
  header nav .hide {
    width: 100px;
    height: 80px;
    transition: all .3s;
    background: #FFFF;
    border: solid #FFFF 1px;
  }
  header nav .hide:hover {
    position: relative;
    width: 100px;
    height: 190px;
    border: solid rgba(60,60,60) 1px;
  }
  /* header nav .hide:first-of-type:hover {
    position: relative;
    width: 100px;
    height: 240px;
    border: solid rgba(60,60,60) 1px;
  } */
  header nav ul li:hover {
    text-decoration: underline;
  }
  header nav .hide li:nth-of-type(2) {
    margin-top: -20px;
    line-height: 50px;
  }
  header nav .hide li:nth-of-type(3) {
    position: relative;
    line-height: 50px;
  }
  header nav .hide li:nth-of-type(4) {
    position: relative;
    line-height: 50px;
  }
  header nav .special {
    margin-top: 20px;
    width: 170px;
    height: 40px;
    transition: all .3s;
  }
  header nav .special:hover {
    margin-top: 10px;
  }

  main {
    width: 100%;
  }
  main .main-header {
    padding-top: 130px;
    padding-bottom: 130px;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
  }
  main .main-header .first {
    width: 570px;
  }
  main .main-header h2 {
    margin-top: 30px;
    font-size: 92px;
    line-height: 1;
    font-weight: 500;
  }
  main .main-header p {
    padding-top: 10px;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 300;
  }
  main .main-header .button-wrapper {
    margin-left: 0;
    width: 570px;
    display: flex;
    flex-wrap: wrap;
  }
  main .main-header .button-wrapper .button {
    position: relative;
    top: -5px;
    margin-top: 50px;
    width: 230px;
    line-height: 50px;
    font-size: 18px;
    transition: all .3s;
  }
  main .main-header .button-wrapper .button:hover {
    top: -15px;
  }
  main .main-header .button-wrapper .normal-button {
    position: static;
    margin-left: -90px;
    width: 230px;
  }
  main .main-header .logo-wrapper {
    margin-top: 30px;
    margin-left: 0;
    width: 570px;
  }
  main .main-header .logo-wrapper .item-holder:after {
    content: '';
    position: absolute;
    top: 1%;
    left: 1%;
    width: 97%;
    height: 97%;
    background: rgba(60,60,60);
    box-sizing: border-box;
    z-index: -1;
  }
  main .main-header .logo-wrapper .item-holder .item {
    margin: .5px;
    width: 188px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #FFFF;
  }
  main .main-header .logo-wrapper .item-holder .item img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: grayscale(1);
    user-select: none;
  }
  main .second {
    width: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .second .block {
    position: relative;
    top: 0;
    margin-top: 0;
    padding: 50px 40px;
    width: 430px;
    height: 570px;
    box-shadow: 20px 20px 20px 2px rgba(0,0,0,.1);
    transition: all .7s;
    cursor: pointer;
  }
  main .second .block:hover {
    top: -30px;
  }
  main .second .block:after {
    position: absolute;
    content: '';
    top: 210px;
    left: 170px;
    width: 300px;
    height: 400px;
    background: var(--orange);
    box-shadow: 20px 20px 20px 2px rgba(0,0,0,.1);
    z-index: -1;
  }
  main .second h2 {
    font-size: 42px;
    line-height: 1.3;
  }
  main .second p {
    padding-top: 30px;
    font-size: 24px;
    line-height: 1.3;
  }
  main .second .button {
    margin-top: 30px;
    width: 270px;
    height: 50px;
    background: #FFFF;
    line-height: 50px;
  }
  main .second .button a {
    color: rgba(60,60,60);
    font-size: 18px;
  }

  main .container {
    width: 1200px;
  }
  main .container .first {
    padding-top: 70px;
    padding-bottom: 130px;
    width: 1200px;
  }
  main .container .first .block {
    width: 100%;
  }
  main .container .first .block h2 {
    font-size: 72px;
    line-height: 1.7;
  }
  main .container .first .block p {
    padding-top: 30px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
  }
  main .container .first .block .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  main .container .first .block .wrapper .item {
    position: relative;
    top: 0;
    margin-top: 70px;
    width: 370px;
    transition: all .3s;
  }
  main .container .first .block .wrapper .item:hover {
    top: -30px;
    box-shadow: 18px 18px 1px 1px var(--orange);
  }
  main .container .first .block .wrapper .item span {
    font-size: 72px;
    color: var(--orange);
  }
  main .container .first .block .wrapper .item h3 {
    padding-top: 30px;
    font-size: 32px;
    font-weight: 500;
  }

  main .container .second {
    padding-top: 130px;
    padding-bottom: 130px;
    width: 1200px;
  }
  main .container .second .block {
    height: 470px;
  }
  main .container .second .info-block {
    width: 570px;
  }
  main .container .second .info-block {
    width: 570px;
  }
  main .container .second .info-block h2 {
    font-size: 72px;
    line-height: 1.7;
  }
  main .container .second .info-block p {
    padding-top: 30px;
    font-size: 24px;
  }

  .faq .heading-over {
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq .wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
}
.faq .faq-heading {
    width: 550px;
}
.faq h2 {
    font-size: 72px;
    user-select: none;
}
.faq .over {
    width: 550px;
    max-width: 550px;
    padding: 0;
    margin-top: 0;
    border-bottom: solid rgba(150,150,150,1) 1px;
}
.faq .entry .text {
    margin-left: 30px;
}
.faq .over.active h2 {
    color: #FFFF !important;
}
.faq .over.active p {
    color: #FFFF !important;
}
.faq .over.active span {
    color: #FFFF !important;
}
.faq .over.active .number {
    color: #FFFF !important;
}
.faq .entry .number {
    position: relative;
    top: 10px;
    font-size: 18px;
}
.faq .entry .text h2 {
    padding-top: 20px;
    font-size: 32px;
    padding-bottom: 30px;
}
.faq .entry .span {
    width: 50px;
    height: 50px;
}
.faq .entry .span span {
    line-height: 50px;
    font-size: 24px;
}
.faq .entry .span.span-active {
    transform: rotate(-180deg);
    background-color: var(--orange);
}
.faq .faq-text {
    padding-bottom: 0;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    line-height: 1.7;
}
.faq .faq-text.faq-active {
    padding: 10px 0 !important;
    max-height: 300px !important;
}

.white-faq {
  width: 1200px;
  padding: 30px;
  box-sizing: border-box;
}
.white-faq .small {
  font-size: 32px;
}
.white-faq h2 {
  margin-top: 30px;
  font-size: 92px;
  user-select: none;
}
.white-faq .over {
  margin-top: 20px;
  border-bottom: none;
  padding: 15px 30px !important;
  box-sizing: border-box !important;
  border-radius: 15px;
}
.white-faq .over.active {
  margin: 20px auto;
  padding: 50px !important;
  background-color: rgba(0,0,0,.05);
}
.white-faq .entry .text h2 {
  font-size: 32px;
}
.white-faq .entry .span {
  width: 50px;
  height: 50px;
  user-select: none;
  cursor: pointer;
}
.white-faq .entry .span span {
  line-height: 50px;
}
.white-faq .faq-text {
  font-size: 20px;
}
.white-faq .faq-text.faq-active {
  padding: 10px 0 !important;
  max-height: 90px !important;
}

.phone-link span {
  position: relative;
  top: 7px;
  margin-right: 5px;
}

.container.black-container {
  padding: 70px 0;
  min-width: 1200px;
  width: 90%;
  max-width: 1400px;
}
.container.black-container .wrapper {
  width: 1150px;
  display: flex;
  flex-wrap: wrap;
}
.container.black-container h2 {
  font-size: 112px;
  line-height: 2;
}
.container.black-container .block {
  margin-top: 40px;
  width: 90%;
  max-width: 350px;
  padding: 50px 30px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 15px;
  color: rgba(20,20,20,1);
  transition: all .3s;
}
.container.black-container .block:nth-child(10) {
  margin-left: 16px !important;
}
.container.black-container .block:hover h2 {
  font-size: 38px;
}
.container.black-container .block:hover p {
  font-size: 20px;
}
.container.black-container .block:nth-child(odd) {
  background-color: var(--orange);
  color: #FFFF;
}
.container.black-container .block h2 {
  font-size: 32px;
  transition: all .3s;
  font-weight: 900;
}
.container.black-container .block p {
  padding-top: 30px;
  line-height: 1.7;
  font-size: 18px;
  transition: all .3s;
}

  main .calculator {
    padding-bottom: 130px;
    margin-top: 30px;
    width: 1200px;
  }
  main .calculator .wrapper {
    width: 540px;
  }
  main .calculator h2 {
    width: 100%;
    font-size: 72px;
  }
  main .q {
    margin-top: 10px;
  }
  main .calculator .box {
    position: relative;
    top: 0;
    margin-top: 40px;
    padding: 20px;
    width: 250px;
    height: 250px;
    transition: all .3s;
  }
  main .calculator .box:hover {
    top: -10px;
    box-shadow: 8px 8px 1px 1px var(--orange);
  }
  main .calculator .box:nth-of-type(odd) {
    margin-left: 0;
  }
  main .calculator .box:nth-of-type(even) {
    margin-right: 0;
  }
  main .calculator .box h3 {
    font-weight: 300;
    font-size: 20px;
  }
  main .calculator form {
    width: 540px;
  }
  main .calculator form input {
    margin-top: 20px;
    padding: 0 20px;
    width: 540px;
    height: 70px;
    font-size: 18px;
  }
  main .calculator form button {
    margin-top: 20px;
    width: 540px;
    height: 70px;
    font-size: 18px;
  }
  .calendly-popup {
    margin-top: 50px;
    max-width: 1200px !important;
    max-height: 700px;
  }

  .footer .contact {
    width: 1200px;
  }
  .footer .contact h2 {
    text-align: center;
    font-size: 72px;
  }
  .footer .contact form {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .contact form input {
    margin-top: 10px;
    padding: 0 20px;
    width: 590px;
    height: 70px;
    background: #FFFF;
  }
  .footer .contact form input:last-of-type {
    margin-left: 605px;
  }
  .footer .contact form textarea {
    margin-top: -70px;
    margin-left: 5px;
    padding: 0 20px;
    width: 590px;
    height: 150px;
  }
  .footer .contact form button {
    margin-top: 10px;
    width: 590px;
    height: 70px;
    line-height: 50px;
  }
  .footer .links .size-converter {
    padding: 0 200px;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .footer .links .header {
    position: relative;
    top: 0;
  }
  .footer .links .header:hover {
    top: -10px;
  }

  main .imprint {
    padding-top: 190px;
    width: 700px;
    color: rgba(120,120,120);
  }
  main .imprint h1 {
    font-size: 52px;
    color: rgba(60,60,60);
  }
  main .imprint h2 {
    padding-top: 30px;
    font-size: 38px;
    color: rgba(60,60,60);
  }
  main .imprint p {
    padding-top: 30px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
  }

  .contentt .wrapper {
    max-width: 1400px;
  }
  .contentt h2 {
    font-size: 72px !important;
  }
  .contentt .block {
    margin-top: 70px;
    padding: 0;
    top: 0;
    box-shadow: 8px 8px 1px 1px var(--orange);
    transition: all .3s;
  }
  .contentt .block h2 {
    width: 100% !important;
    font-size: 24px !important;
  }
  .contentt .left {
    width: 650px;
  }
  .contentt .left img {
    width: 650px;
  }
  .contentt .right {
    margin-top: 50px;
  }
  .contentt .right h2 {
    margin-left: 0;
    text-align: left;
  }
  .contentt .right p {
    text-align: left;
  }
  .contentt .right .button {
    margin-left: -250px;
  }
  .contentt .block:hover {
    top: -30px;
    box-shadow: 18px 18px 1px 1px var(--orange);
  }

  #enigmachat {
    margin-top: 70px;
    padding-top: 130px;
    margin-bottom: -30px;
  }

  .scroller-parent {
    padding-bottom: 30px;
    padding-top: 110px;
    width: 100%;
    margin-top: 0;
    overflow-x: hidden;
    display: flex;
    position: sticky;
    top: 130px;
}
.sticky-container.first .scroller-parent {
    top: 130px;
}
.scroller-parent section {
    margin: 0 30px;
    min-width: 380px;
    width: 380px;
    max-width: none;
}

.centered-h2 {
  position: fixed;
  top: 130px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 10px 20px;
  z-index: 999; /* Ensure it appears above other content */
  display: none; /* Initially hide it */
}

.centered-h2 h2 {
  font-size: 52px;
  margin: 0;
  color: var(--black);
}

.sticky-background {
  margin-top: 130px;
  padding: 70px;
  width: 100%;
  box-sizing: border-box;
}
.sticky-container.first section {
  padding: 0;
  flex: 0 0 auto;
  width: 900px;
  height: auto;
  max-height: 700px;
  margin-right: 20px;
  background: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.sticky-container.first section:nth-child(1) {
  margin-left: 70px;
}
.sticky-container.first section img {
  padding: 0;
  border: solid rgba(230,230,230,1) 5px;
  border-radius: 35px;
  min-height: 600px;
  max-height: 600px;
  object-position: top;
}
.par-sticky-container {
        width: 1200px;
        max-width: 1200px;
        padding-bottom: 130px;
    }

    .par-sticky-container h2 {
        font-size: 92px;
    }
      
    .par-sticky-element {
        position: sticky;
        top: calc(50vh - 200px);
        width: 1200px;
        text-align: center;
        z-index: -1;
        color: var(--black);
    }
    
    .par-sticky-container .block {
        margin-top: 230px;
        width: 530px;
        height: 530px;
        overflow: hidden;
    }

    .par-sticky-container .block:nth-child(odd) {
        margin-left: 10px;
    }
    .par-sticky-container .block:nth-child(even) {
        margin-right: 10px;
    }

    .par-sticky-container .block img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
}

@media screen and (min-width: 1400px) {
  header nav {
    width: 1400px;
  }
  header nav .left {
    margin-left: -90px;
  }
  main .main-header {
    width: 1400px;
  }
  main .main-header .first {
    width: 670px;
  }
  main .main-header .second {
    width: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .container {
    width: 1400px;
  }
  main .container .first {
    width: 100%;
  }
  main .container .second {
    width: 100%;
  }
  main .calculator {
    width: 1400px;
  }

  .logos {
    margin: 30px 0 10px 0;
    overflow: hidden;
    padding: 0;
    background: #FFFF;
    white-space: nowrap;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
  }  
  .logos:before,
  .logos:after {
      position: absolute;
      top: 0;
      width: 250px;
      height: 100%;
      content: "";
      z-index: 2;
  }  
  .logos:before {
      left: 0;
      background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }  
  .logos:after {
      right: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  .logos:hover .logos-slide {
      animation-play-state: paused;
  }
  .logos-slide {
      display: inline-block;
      animation: 35s slide infinite linear;
  }
  .logos-slide img {
      height: 110px;
      margin: 0 40px;
      user-select: none;
      -webkit-user-drag: none;
  }
}
