/* =========================
   1. Box sizing
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   2. Remove default margins
   ========================= */
* {
  margin: 0;
  padding: 0;
}

/* =========================
   3. HTML & body defaults
   ========================= */
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background-color: #ffffff;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-family: 'Outfit-Regular';
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

.wrapper{
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mainTitle{
  font-weight: 300;
  font-size: 9.2vw;
  line-height: 110%;
  text-transform: uppercase;
  text-align: left;
  color: #000;
  font-family: 'Antonio-Bold';
}

.mainTitle .mainTitle-gray{
  display: inline;
  font-weight: 300;
  font-size: 9.2vw;
  line-height: 110%;
  text-transform: uppercase;
  text-align: left;
  color: #289797;
  font-family: 'Antonio-Bold';
}

.mainTitle span{
  font-size: 8.2vw;
}



.mainTitle span{
  color: #000;
}


@media(min-width: 800px){
  .mainTitle{
    font-size: 4vw !important;
    text-align: left !important;
    padding-bottom: 2vw !important;
    margin-bottom: 0 !important;
  }

  .mainTitle .mainTitle-gray{
    font-size: 4vw !important;
  }

  .mainTitle span{
    font-size: 4.6vw;
  }
}

.wrapper{
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* =========================
   4. Media elements
   ========================= */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
   5. Forms
   ========================= */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* =========================
   6. Links
   ========================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   7. Lists
   ========================= */
ul,
ol {
  list-style: none;
}

/* =========================
   8. Headings & text
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: 'Antonio-Bold';
}

p {
  overflow-wrap: break-word;
  font-family: 'Outfit-Regular';
}

/* =========================
   9. Tables
   ========================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================
   10. Accessibility & UX
   ========================= */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* =========================
   11. Reduced motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
