/* Fonts styles */

@font-face {
  font-family: "YogaSansWebPro";
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/ff-yoga-sans-regular.woff2") format("woff2");
}

@font-face {
  font-family: "YogaSansWebProBold";
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("fonts/ff-yoga-sans-bold.woff2") format("woff2");
}

/* Reset styles */

body {
  height: 100% !important;
  margin: 0;
  padding: 0;
  width: 100% !important;
}
table {
  border-collapse: collapse;
}
img,
a img {
  border: 0;
  outline: none;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* General */

body {
  background-color: #fff;
  color: #262626;
  margin: 0px;
  font-size: 16px;
  line-height: 1.5em;
  font-family: "YogaSansWebPro", Helvetica, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.hero-container,
.default-container,
.footer-container {
  width: 100%;
  height: auto;
}
.hero-container,
.footer-container {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fcd300;
  color: #262626;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.hero-container {
  padding: 40px 0 21px;
}
.hero-image {
  width: 100%;
  max-width: 100%; /* Ensure the image doesn't exceed its original size */
  max-height: 100%;
  object-fit: cover;
  object-position: top;
}
.default-container {
  padding: 84px 0 72px;
}
.footer-container {
  padding: 60px 0 24px;
}
.inner-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.footer-inner-container {
  display: flex;
  justify-content: space-between;
}
#logo img {
  width: 200px;
}
h1 {
  font-family: "YogaSansWebProBold", "YogaSansWebPro", Helvetica, "Helvetica Neue", Arial,
    sans-serif;
  font-size: 63px;
  line-height: 1.1em;
  letter-spacing: -0.025em;
  color: #3474e0;
  margin: 1.3em 0 0.65em -0.065em;
}
p {
  font-size: 16px;
  padding-bottom: 1.5em;
}
p.large {
  font-size: 18px;
  line-height: 1.45em;
  letter-spacing: 0.015em;
}
.large > small {
  padding-top: 20px;
}

p.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #3474e0;
}
a {
  text-decoration: none;
  color: #262626;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid #262626;
}
a:hover {
  background-color: #fff;
}
a.cta,
a.cta-secondary {
  display: inline-block;
  margin-top: 1.5em;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  margin-right: 1.5em;
  background-color: #3474e0;
  color: #ffffff;
  text-shadow: none;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: none;
}
a.cta-secondary {
  background-color: #fff;
  color: #3474e0;
  border: 1px solid #3474e0;
}
a:hover {
  color: #330000;
}
a.cta:hover {
  background-color: #ff0000;
  color: #fff;
}
a.cta-secondary:hover {
  color: #ff0000;
  border-color: #ff99cc;
}
.nowrap {
  white-space: nowrap;
}
.hero-container p a {
  color: #262626;
}
.hero-container p a:hover {
  color: #262626;
}
.footer-container .inner-container p {
  width: calc(50% - 80px);
}

.hero-container a.cta-secondary,
.footer-container a.cta-secondary {
  border: none;
}

.faq-paragraph {
  padding-bottom: 0;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

.fontfont-heading {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 35px;
}

/* Media Queries */

@media only screen and (max-width: 767px) {
  .default-container {
    padding: 72px 0 48px;
  }
  a.cta,
  a.cta-secondary {
    margin-right: 0em;
    width: 100%;
    text-align: center;
    padding: 0.75em 0;
  }
  #logo img {
    width: 200px;
  }
  h1 {
    font-size: 41px;
  }
  p.large {
    font-size: 19px;
  }
}

#logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo img {
  height: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-left: 10px; /* Adjust the margin as needed */
}

nav li::after {
  content: "|";
  margin-left: 5px;
  color: rgba(34, 32, 25, 0.5);
}

nav li:last-child::after {
  content: ""; /* Remove the pipe after the last item */
}

nav a {
  text-decoration: none;
  color: rgba(34, 32, 25, 0.5);
  border-bottom: none;
}

nav a.active {
  text-decoration: none;
  color: #262626;
  border-bottom: none;
}

nav a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #262626;
}

/* Adjust the styling for smaller screens if needed */
@media (max-width: 768px) {
  #logo {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-inner-container {
    flex-direction: column;
    align-items: flex-end;
  }

  nav {
    margin-top: 10px; /* Add some space between logo and nav for smaller screens */
  }

  nav ul {
    flex-direction: row;
    align-items: flex-start;
  }

  nav li {
    margin-left: 5px;
    margin-bottom: 5px; /* Add some space between nav items for smaller screens */
    font-size: 13px;
  }
  .footer-container .inner-container p {
    width: 100%;
  }
}

.text-404 {
  text-align: center;
}

.text-404-header {
  font-size: 150px;
  margin: 40px 0 40px 0;
}

.footer-navigation {
  margin-top: 10px;
  text-align: center;
  align-content: center;
  justify-content: center;
  display: flex;
}

.bottom-container {
  margin-top: 80px;
}

.mt-40 {
  margin-top: 40px;
}

a.speak-to-sales {
  margin-top: 0em;
}