html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  background-color: #E9E9E9;
    font-family: "Montserrat", sans-serif;
}
body > * {
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}
img, .mockup, .mockup img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1{
  font-weight: 800;
  font-size: 90px;
  margin: 0px;
  margin-bottom: -10px;
  margin-top: -20px;
  color: #0D0D0D;
}
h5{
  font-weight: 700;
  font-size: 17px;
  margin: 0px;
  padding-bottom: 20px;
  color: #0D0D0D;
}

p{
  margin-block-start: 0px;
  margin-block-end: 0px;
}

.title {
  text-align: left;
  position: absolute;
  bottom: 70%;
  left: 10%;
}

.description-container {
  position: absolute;
  bottom: 54.5%;
  left: 12%;
  width: 350px;
  z-index: 10;
}

.short-description {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.titlechild{
display: inline-block;
padding: 1rem 1rem;
vertical-align: middle;
}
.titlechild a{
  text-decoration: none;
}
.logo img{
  width: 350px;
}
.logotext{
  text-align: left;
  font-weight: 300;
  font-size: 19px;
  margin-left: -10px;
}
.mockup{
  text-align: right;
  position: absolute;
  left: 45%;
  bottom: 25%;
}
.boundingbox{
    width: 450px;
    position: absolute;
    bottom: 30%;
    left: 10%;
    overflow: visible;

}
.newsbox{
    padding:30px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
    color: #4A4A4A;
    line-height: 150%;
    box-shadow: -3px -3px 6px 0px rgba(255,255,255,0.19),
-1px -1px 2.5px 0px rgba(255,255,255,0.36),
1px 1px 2px 0px rgba(0,0,0,0.16),
4px 4px 7px 0px rgba(0,0,0,0.05);
background: rgba( 233, 233, 233, 0.8 );
backdrop-filter: blur( 3px );
-webkit-backdrop-filter: blur( 3px );

}

input[type=email] {
  background-color: white;
  color: black;
  padding: 16px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 10px;
  cursor: text;
  width: 250px;
  margin-top: 0px;
}

input[type=email]::placeholder{
  color: lightgrey;
  font-style: italic;
}


.button{
background-color: #0D0D0D;
margin-left: -10px;
margin-top: -2px;
border: none;
border-radius: 0 10px 10px 0;
color: white;
padding: 14px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
font-weight: 800;
letter-spacing: 1px;
vertical-align: middle;
cursor: pointer;
transition: all 0.5s ease;
z-index: 9;
}

.button:hover{
  background: linear-gradient(to right, #FF61B8, #FFA630);
  background-size: 200% auto;
  animation: gradient 0.5s ease;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.social{
  text-align: center;
  padding-top: 20px;
}

.link{
  display: inline-block;
  padding: 20px;
  font-weight: 500;
  font-size: 10px;
  color: #6C6C6C;
  cursor: pointer;
    margin-top: -10px;
}
.link a:hover{
  color: #4A4A4A;
}
.link a{
  font-weight: 500;
  font-size: 9px;
  color: #6C6C6C;

}

.link a img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.link a:hover img {
  opacity: 1;
}

.bottomlinks{
  text-align: left;
  position: absolute;
  bottom: 0%;
  left: 78%;
  width: 300px;
}

@media screen and (max-width:2000px) {
  .mockup{
    bottom: 13%;
    left: 38%;
  }
  .mockup img{
    max-width: 1100px;
  }
  .boundingbox{
    bottom: 20%;
  }
}

@media screen and (max-width:1565px) {
  .mockup{
    bottom: 55%;
    transform: translateY(55%);
    left: 45%;
  }
  .mockup img{
    max-width: 800px;
  }
  .boundingbox{
    bottom: 20%;
    transform: translateY(20%);
  }
  h1{
    font-size: 70px;
  }
  .titlechild{
    font-size: 15px;
  }
}

@media screen and (max-width:1100px) {
  .mockup img{
    max-width: 800px;
  }
  .mockup{
    bottom: 35%;
    left: 20%;
  }
  .boundingbox{
    bottom: 10%;
  }
  .title{
    bottom: 85%;
  }
}



@media screen and (max-width:1025px) {
  .mockup img{
    max-width: 500px;
  }
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title {
    order: 1;
    align-items: center;
    text-align: center;
  }
  .mockup {
    order: 2;
    position: absolute;
    margin: 20px 0;
    text-align: center;
    z-index: 10;
    left: unset;
    bottom: 65%;
  }
  .description-container {
    position: absolute;
    bottom: 35%;
    left: unset;
  }
  .short-description {
    order: 3;
    margin: 20px auto 0 auto;
    text-align: center;
    max-width: 90vw;
  }
  .boundingbox {
    order: 4;
    position: absolute;
    margin: 20px 0;
    left: unset;
    transform: unset;
    bottom: 4%;
  }
  .bottomlinks {
    order: 5;
    margin: 20px 0;
    width: 100vw;
    left: unset;
    text-align: center;
  }
  .hero-button-container {
    text-align: center !important;
  }
}

@media screen and (max-width:550px) {
  h1{
    font-size: 50px;
  }
  .logotext{
    font-size: 12px;
  }
  .logo img{
    width: 130px;
  }
  .mockup img{
    max-width: 400px;
  }
  .mockup{
    bottom: 40%;
    left: 50%;
    transform: translateY(0%);
    margin-left: 0px;
  }
  .title{
    left: 50%;
    bottom: 78%;
    width: 330px;
  }
  .boundingbox{
    width: 80%;
    margin-left: 0px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
  }
  input[type=email] {
    width: 50%;
  }
  .link{
    padding: 10px;
  }
  .titlechild{
    font-size: 11px;
  }
  .description-container {
    position: static;
    text-align: center;
    margin: 20px auto;
    padding: 0 20px;
    width: auto;
    max-width: 350px;
  }
  .short-description {
    font-size: 14px;
  }
}

@media screen and (max-width:377px) {
  h1{
    font-size: 28px;
    padding: 0px;
  }
  .logotext{
    font-size: 0px;
  }
  .title{
    left: 50%;
    bottom: 85%;
  }
  .logo img{
    width: 50px;
  }
  .mockup img{
    max-width: 500px;
  }
  .mockup{
    bottom: 25%;

    left: 10%;
  }
  .button{
    font-size: 10px;
    padding: 10px;
  }
  input[type=email] {
    width: 60%;
    padding: 10px;
  }
  .newsbox{
    font-size: 10px;
  }
  h5{
    font-size: 14px;
  }
  .boundingbox{
    bottom: 0%;
  }
}

@media screen and (max-width:315px) {
  .mockup img{
    max-width: 300px;
  }
  .title{
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
  }
  .mockup{
    bottom: 50%;
  }
  .boundingbox{
    bottom: 5%;
  }
}

.privacypolicybody {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

.privacy {
    font-size: 32px;
    font-weight: 700;
    color: #0D0D0D;
    margin-bottom: 10px;
}

.policy {
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.privacypolicybody h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0D0D0D;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacypolicybody p {
    margin-bottom: 15px;
    color: #4A4A4A;
}

.privacypolicybody a {
    color: #0D0D0D;
    text-decoration: none;
}

.privacypolicybody a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
  body {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    margin: 0 !important;
  }
  .title {
    position: static !important;
    text-align: center !important;
    margin: 30px auto 0 auto !important;
    width: 100% !important;
    left: unset !important;
    bottom: unset !important;
    display: block !important;
  }
  .titlechild.logo {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .logo img {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    height: auto;
  }
  .mockup {
    position: static !important;
    margin: 20px auto 0 auto !important;
    text-align: center !important;
    left: unset !important;
    bottom: unset !important;
    width: 90vw !important;
    max-width: 90vw !important;
    display: block !important;
    padding-bottom: 20px;
  }
  .mockup img {
    max-width: 95vw;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .description-container {
    position: static !important;
    margin: 20px auto 0 auto !important;
    text-align: center !important;
    width: 90vw !important;
    max-width: 350px !important;
    display: block !important;
  }
  .short-description {
    font-size: 14px;
    color: #4A4A4A;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
  }
  .boundingbox {
    position: static !important;
    margin: 20px auto 0 auto !important;
    width: 80vw !important;
    left: unset !important;
    bottom: unset !important;
    transform: unset !important;
    display: block !important;
  }
  .bottomlinks {
    position: static !important;
    margin: 20px auto 0 auto !important;
    padding-top: 30px;
    width: 100vw !important;
    left: unset !important;
    bottom: unset !important;
    text-align: center !important;
    display: block !important;
  }
}

.hero-button-container {
  margin-top: 20px;
}

.hero-button {
  display: inline-block;
  background-color: #0D0D0D;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #0D0D0D;
}

.hero-button:hover {
  background-color: transparent;
  color: #0D0D0D;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(13, 13, 13, 0.2);
}