* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    text-rendering: optimizeLegibility;
}

html, body {
  overscroll-behavior: none;
}

@font-face {
  font-family: "SuisseIntl-Regular";
  font-style: normal;
  font-format: opentype;
  font-weight: 400;
  src: url("./font/suisseintl-regular.otf") ;
}

.txt-headline {
  font-size: 1.5rem;
  font-family: "SuisseIntl-Regular";
  line-height: 1.25;
}
 
.txt-std {
  font-size: 1.15rem;
  font-family: "SuisseIntl-Regular";
  line-height: 1.25;
}
 
.txt-soon {
  font-size: 0.85rem;
  text-align: right;
  font-family: "SuisseIntl-Regular";
}
 
.img-logo {
  width: 100%;
  object-fit: cover;
}
 
.main {
  height: 100vh;
  display: flex;
  padding: 25px;
  align-items: center;
  justify-content: center;
}
 
.content {
  gap: 80px;
  display: flex;
  max-width: 991px;
  flex-direction: column;
}
 
.content-top {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
}
 
.content-bottom {
  gap: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 4fr 5fr;
}
 
.content-contacts {
  gap: 40px;
  display: flex;
}
 
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 
@media(max-width: 991px) {
  .txt-std {
    font-size: 1rem;
  }
  .txt-soon {
    font-size: 0.75rem;
  }
  .content-top {
    gap: 40px;
  }
}
 
@media(max-width: 767px) {
  .txt-std {
    font-size: 0.85rem;
  }
  .content {
    gap: 60px;
  }
  .content-bottom {
    gap: 40px;
    width: 70vw;
    grid-template-columns: 1fr;
  }
}
 
@media(max-width: 479px) {
  .txt-soon {
    grid-row: 1;
    text-align: left;
  }
  .content-top {
    grid-template-columns: 1fr;
  }
  .content-bottom {
    width: 90%;
  }
}
