/* Font Face: Replace with your actual font file paths */
@font-face {
  font-family: 'cicular';
  src: url('/assets/CircularStd-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;

}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
      letter-spacing: .01em;
}


html, body {
  overflow-x: hidden;
}


/* Global Styles */
body {
  font-family: 'cicular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #FFFEF6;
  max-width: 100vw;
}

/* Main container */
main {
  background-color: #FFFEF6;
}



h1 {
  font-family: 'cicular', sans-serif;
  font-size: calc(1em + 6.25vmin);
  color: #383834;
  line-height: 1.4em;
  font-weight: 400;
}

h2 {
  font-family: 'cicular', sans-serif;
  font-weight: 400;
}

h3 {
  font-family: 'cicular', sans-serif;
  font-size: calc(1em + 3vmin);
  color: #8C8C85;
  line-height: 1.2em;
  font-weight: 400;
}

h4 {
  font-family: 'cicular', sans-serif;
}

h5 {
  font-family: 'cicular', sans-serif;
}

h6 {
  font-family: 'cicular', sans-serif;
}

p {
  font-family: 'cicular', sans-serif;
  font-size: 1.25em;
  color: #383834;
  line-height: 1.4em;
  font-weight: 400;
}

a {
  font-family: 'cicular', sans-serif;
  color: #903336;
  text-decoration: none
}


.basic-link {
  border-bottom: 2px solid transparent;
  transition: 500ms ease all;
}

.basic-link:hover {
  border-bottom: 2px solid #903336;
}



.logo {
  max-width: 600px;
    width: 100%;
  height: auto;
}

.logo-cont {
  max-width: 600px;
    width: 100%;
  height: auto;
}


.body-cont {
  width: 100%;
  height: 100vh;
  max-width: 100vw;
}

.body-cont-inner {
  padding: 5vh;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  justify-content: space-between;
}

.logo-cont {
  padding-top: 20px;
  padding-bottom: 20px;
}



.contact-cont {
  padding-top: 20px;
  padding-bottom: 20px;
}






@media (max-width: 900px) {
  .logo-cont {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  h3 {
    text-align: center;
  }

  .contact-cont {
    text-align: center;
  }

  .logo-cont {
    padding-top: 0px;
    padding-bottom: 10px;
  }

  .contact-cont {
    padding-top: 10px;
    padding-bottom: 10px;
  }


.bodycopy-cont{    padding-top: 10vh;
    padding-bottom: 10vh;}



  .logo {
    max-width: 450px;
  }

  .logo-cont {
    max-width: 450px;
  }
  
.body-cont-inner{justify-content: center; }



}