:root {
  --white: #ffffff;
  --black: #000000;
  --light-grey: #6a6b6c;
  --orange: rgb(255, 77, 0);
  --blue: #002364;
  --backdrop: rgba(0, 0, 0, 0.4);
  --success: #7CCF91;
  --error: #CF7D7D;
  --text-color: var(--black);
  --subtext-color: var(--light-grey);
  --highlight-color: var(--orange);
  --background-color: var(--white);
  --border-color: var(--light-grey);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Variable.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Smooch";
  src: url("./fonts/Smooch_Sans/SmoochSans-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
:root {
  font-size: 10px;
  --title-font: "Satoshi";
  --text-font: "Smooch";
  font-family: var(--text-font);
  color: var(--text-color);
  background: var(--background-color);
}

.light-text {
  color: var(--subtext-color);
}

h1 {
  font-family: var(--title-font);
}

* {
  color: var(--text-color);
}

.footer {
  color: var(--text-color);
  padding: 10% 0 10vh;
}

.body {
  --body-height: 100vh;
  --wrapper-h-padding: 40px;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0;
  width: 100vw;
  height: var(--body-height);
}

.body.logged-in {
  --body-height: calc(100vh - 32px);
}

.nav {
  width: 100%;
  height: var(--body-height);
}

.main-container {
  overflow-y: scroll;
  height: 100%;
  width: 100%;
}

.main {
  min-height: 100vh;
}

.cover,
.contain {
  width: 100%;
  height: 100%;
}

.cover {
  object-fit: cover;
}

.contain {
  object-fit: contain;
}

.wrapper {
  padding: 0 var(--wrapper-h-padding);
}

.infinite-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.infinite-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, white, transparent 4rem), linear-gradient(to left, white, transparent 4rem);
}
.infinite-scroll .scroll-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}
.infinite-scroll .scroll-list > * {
  flex-shrink: 0;
}

.service-tag {
  --text-color: var(--subtext-color);
  padding: 1rem 2rem;
  border: solid 1px var(--text-color);
  border-radius: 2rem;
}
.service-tag p {
  font-size: 1.6rem;
}

.page-template-homepage .hero {
  margin-bottom: 5vh;
}
.page-template-homepage .hero .hero-title {
  font-size: clamp(5rem, 15vw, 27rem);
  text-transform: uppercase;
}
.page-template-homepage .hero .services {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.page-template-homepage .hero .services .services-list {
  flex: 1;
}
.page-template-homepage .huge-pic .huge-pic-fig {
  height: 100vh;
  width: 100%;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}
.page-template-homepage .clients {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3rem;
  padding: 5vh;
}
.page-template-homepage .clients .infinite-scroll {
  flex: 1;
}
.page-template-homepage .clients .client-fig {
  height: 3rem;
  width: auto;
}

.call-to-action {
  background: var(--highlight-color);
  color: var(--white);
  align-content: center;
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem 3rem;
  position: relative;
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */