:root {
  --primary-500: #a95d00;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Open Sans Condensed";
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Open Sans", "Open Sans Condensed";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Style the header */

.nav-container {
  width: 100%;
  background-color: var(--primary-500);
}

.navbar {
  display: grid;
  grid-template-columns: 0.2fr 2fr;
  align-items: center;
  height: 100px;
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
  align-content: center;
}

.nav-menu {
  display: grid;
  grid-template-columns: repeat(4, auto);
  list-style: none;
  text-align: center;
  width: 50%;
  margin-left: 200px;
}

.nav-menu img {
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
}

.logo {
  width: 276.223px;
  height: 49.72px;
  cursor: pointer;
  display: block;
  justify-self: start;
}

.menu-toggle {
  display: block;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  /* display: none; */
  background: white;
}

li{
  color: #32404c;
}

/* Text Styles */
p {
  color: #32404c;
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}

.body-lm {
  color: black;
  font-size: 18px;
  font-family: "Open Sans";
  font-weight: 600;
}

.body-l {
  color: #32404c;
  font-size: 18px;
  font-family: "Open Sans";
  font-weight: 400;
  line-height: 28px;
  word-wrap: break-word;
}

.body-s {
  color: black;
  font-size: 14px;
  font-family: Open Sans;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}

.body-r {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.caption-body {
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

h1 {
  font-size: 40px;
  text-transform: uppercase;
  font-family: "Open Sans Condensed";
}

/* Body Style: Home Page */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.tb-section2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.tb-section2 h3 {
  justify-content: center;
  display: flex;
}

.tb-section2 p {
  justify-content: center;
  margin: 12px 0 100px 0;
  align-items: center;
  display: flex;
  padding: 12px;
}

.tb-section2 img {
  margin-left: 6px;
}

.tb-section2 p a {
  color: #000;
  margin: 0 4px;
  text-decoration: underline;
}

.tb-section2 p a:hover {
  color: #3d4851;
}

.main-link p a {
  color: var(--Accents-Indigo-Indigo-600, #4f46e5);
  text-decoration: underline;
}

.main-link p a:hover {
  color: var(--Accents-Indigo-Indigo-700, #3730a3);
  text-decoration: underline;
}

.main-link p {
  color: var(--Accents-Indigo-Indigo-600, #4f46e5);
}

.column-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 85px;
  width: 100%;
}

.column-left h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  font-family: "Open Sans Condensed";
}

.container2-columns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
}

.column-right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.column-left2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.column-right2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 85px;
}

.section {
  display: contents;
  margin-bottom: 50px;
}

/* .hero {
  margin: 20px;
} */

/* Mobile Flow */

.hero-container2 h2 {
  align-items: center;
  display: inline-block;
  text-align: center;
}

.hero-container2 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.hero-container2 p {
  max-width: 300px;
  margin-top: 8px;
}

.hero-container2 {
  margin-bottom: 100px;
  justify-content: center;
  align-items: flex-start;
  /* margin-top: 50px; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 1280px) {
  .hero-container2 {
    grid-template-columns: 1fr;
  }

  .nav-container {
    position: relative;
  }

  .nav-menu {
    position: absolute;
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    top: 100px;
    left: -100%;
    opacity: 0;
    /* transition: all 0.5s ease; */
  }

  .logo {
    margin-left: 20px;
  }

  .nav-menu.active {
    background-color: #a95d00;
    left: 0;
    opacity: 1;
    transition: all 0.5s ease;
  }

  .nav-links {
    text-align: center;
    line-height: 60px;
    width: 100%;
    display: table;
  }

  .nav-links:hover {
    background-color: #7a4300;
  }

  .nav-links:active {
    background-color: #663801;
  }

  .navbar {
    display: grid;
    grid-template-columns: 0.2fr 2fr 0.2fr;
    width: 100%;
  }

  .menu-toggle .bar {
    display: block;
    margin-right: 20px;
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .tb-section2 p {
    justify-content: center;
    display: inline;
    text-align: center;
    margin: 12px 12px 100px 12px;
  }

  .tb-section2 p a {
    margin: 0 4px 0 0;
  }

  .column-right {
    margin: 24px 0;
  }

  .column-left {
    text-align: center;
    align-items: center;
    padding: 0 15vw;
  }

  .column-right2 {
    align-items: center;
    text-align: center;
    padding: 0 10vw;
  }
}

@media screen and (max-width: 768px) {
  .links a {
    font-size: 2vw;
  }

  .logo {
    max-width: 220px;
  }
}

@media screen and (max-width: 640px) {
  .column-left h1 {
    font-size: 12vw;
    font-family: "Open Sans Condensed";
  }

  /* .column-left p{
    font-size: small;
  } */

  /* .column-right2 p{
    padding: ;
  } */
}

/* Body Style: Policy Pages */

.content {
  /* position: relative; */
  min-height: 1px;
  width: 100%;
  flex-direction: column;
  float: left;
  padding: 4vh 9vw;
  gap: 16px;
  display: inline-flex;
  align-items: flex-start;
}

.contact-container {
  display: inline flex;
  width: 100%;
  padding: 96px 32px;
  flex-direction: column;
  align-items: center;
}

section {
  display: block;
}

.content section p {
  font-size: 16px;
  line-height: 1.53333333em;
  margin: 8px 0 8px 0;
}

.content section h3 {
  font-size: 18px;
  line-height: 1.27777778em;
  margin: 16px 0 0 0;
  font-weight: 700;
}

.content section a {
  color: #a95d00;
}

/* Style the footer */

#footer {
  background-color: #a95d00;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

#footer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

#footer .links {
  display: flex;
  height: 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px; /* 114.286% */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 36px;
  gap: 36px;
}

.footer-hr{
  display: flex;
  width: 100%;
  height: 1px;
  justify-content: center;
  align-items: center;
  background-color: white;
}

hr {
  color: black;
  display: flex;
  width: 100%;
  height: 1px;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  align-self: stretch;
  justify-content: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 30px;
}

.footer-copyright p {
  color: white;
  font-size: 12px;
}

a:link,
a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: white;
}

a:active {
  color: white;
}

.content .caption-body {
  margin: 8px 0 0 0;
}

.content ol a {
  text-decoration-line: underline;
  color: black;
}

.content ol {
  padding: 18px;
  color: black;
}

/* Contact Page */

.contact-container a {
  text-decoration-line: underline;
  color: black;
}

.content ol a:hover {
  color: #3d4851;
}

.contact-container a:hover {
  color: #3d4851;
}

.contact-content {
  display: inline flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-fields {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #d6d8d9;
  background: white;
}

.form-fields:hover {
  border-color: #7f4bc5;
}

input[type="text"],
textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 8px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin: 0 0 0 0;
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

.contact-content p {
  margin: 16px 0 48px 0;
  line-height: 24px;
  text-align: center;
  width: 100%;
}

input[type="submit"] {
  background-color: #4f46e5;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin: 24px 0 0 0;
}

input[type="submit"]:hover {
  background-color: #4338ca;
}

input[type="submit"]:focus {
  background-color: #3730a3;
}

label {
  color: var(--Light-Mode-Text-lm-text-body, #32404c);
  text-align: center;
}

input[type="checkbox"] {
  border-radius: 4px;
  border: 1px solid var(--Components-Light-Mode-lm-divider, #d6d8d9);
  border-color: #d6d8d9;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
  gap: 8px;
}

/** Icons */

.home-icon {
  background-image: url(https://www.figma.com/file/JXlVBa8RshCoUBARYBIlFC/Tickets-Component-Library?type=design&node-id=926-688&mode=design&t=pUq0uKb5wDwaV27j-4);
  color: white;
}
