:root {
  --main-title-font: Panton Online;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: roboto;
  line-height: 1.5em;
  margin: 0;
  background: #f9f7f7;
}

.outer_wrapper {
  position: relative;
  padding-top: 8em;
}

.outer_wrapper::before,
.outer_wrapper::after {
  content: "";
  position: absolute;
  width: calc((100% - (800px + 4em)) / 2);
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../resources/gradient.png);
  background-size: 100% auto;
  image-rendering: pixelated;
  opacity: 0.9;
  z-index: -1;
}

.outer_wrapper::after {
  left: unset;
  right: 0;
  background-image: url(../resources/gradient_rev.png);
}
@media (min-width: 120em) {
  .outer_wrapper::before,
  .outer_wrapper::after {
    max-width: 400px;
  }
}

@media (max-width: 1200px) {
  .outer_wrapper::before,
  .outer_wrapper::after {
    opacity: 0.2;
    width: 10%;
    min-width: 100px;
    background-size: calc(4 / 3 * 100%) auto;
  }
}
@media (max-width: 700px) {
  .outer_wrapper::before,
  .outer_wrapper::after {
    display: none;
  }
}

section {
  padding: 0 4em;
  padding-bottom: 6em;
  margin: auto;
  margin-bottom: 6em;
  width: 100%;
  max-width: calc(800px + 8em);
  box-sizing: border-box;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 3px;
  transform: translateX(-50%);
  max-width: 800px;
  background: #0000000f;
}

.title_logo {
  margin-left: -1em;
  width: 70%;
  max-width: 20em;
}

.main_title {
  font-size: 5em;
  font-weight: 600;
  line-height: 1.15em;
}

h1 {
  font-family: var(--main-title-font);
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.15em;
}

h2 {
  font-family: var(--main-title-font);
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1.25em;
  position: relative;
  margin-top: 2em;
  cursor: pointer;
}

.heading_mark {
  position: absolute;
  top: 50%;
  left: -0.5em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #fe5000;
  transform: translate(-100%, -50%);
  transition: transform 0.3s;
  cursor: pointer;
}

.heading_mark.pulse {
  animation: pulse 0.5s 1;
}

.heading_mark::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../resources/link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  border-radius: 50%;
  background-color: #fe5000;
  transition: opacity 0.3s;
  opacity: 0;
}

h2:hover .heading_mark {
  transform: translate(-100%, -50%) scale(2);
}

h2:hover .heading_mark::after {
  opacity: 1;
}

h1 + h2 {
  margin-top: 0;
}

h3 {
  font-family: var(--main-title-font);
  font-size: 1.85em;
  font-weight: 700;
  line-height: 1.25em;
  margin: 1.5em 0;
}

h4 {
  font-family: var(--main-title-font);
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.25em;
  font-style: italic;
  margin: 0.75em 0;
}

h1 + h4 {
  margin-top: -2em;
}

h2 + h4 {
  margin-top: -1.5em;
}

h3 + h4 {
  margin-top: -1em;
}

h3 + p {
  margin-top: -1.25em;
}

h2 + h4 + p {
  margin-top: 2em;
}

p {
}

a {
  font-weight: 500;
  color: #fe5000;
}

.button {
  display: block;
  text-decoration: none;
  font-family: var(--main-title-font);
  font-size: 1.15em;
  font-weight: 600;
  color: #ffffff;
  background: #fe5000;
  width: fit-content;
  padding: 1.15em 1.5em;
  border-radius: 10px;
  margin: 1.5em 0;
  transition: background 0.3s, transform 0.3s;
  line-height: 1em;
}

.button:hover {
  background: #ff703c;
  transform: scale(1.025);
}

h4 a {
  color: black;
  font-weight: 400;
  transition: color 0.3s;
}

h4 :hover {
  color: #fe5000;
}

.firstcharacter {
  font-family: var(--main-title-font);
  color: #fe5000;
  float: left;
  font-size: 3.15em;
  font-weight: 500;
  line-height: 0.8em;
  padding-right: 0.1em;
  transform: translateY(0.1em);
}

.list {
  padding: 0 0 0 0.75em;
  border-left: 0.35em solid #fe5000;
  color: #174475;
  margin: 2em 0;
}

.col-2 .list {
  padding: 0.5em 0 0 0.75em;
  margin: 0;
}

.list li {
  list-style-type: none;
  margin: 1em 0;
}

.list li:first-of-type {
  margin-top: 0;
}

.list li:last-of-type {
  margin-bottom: 0;
}

ol {
  list-style-type: none;
  counter-reset: li;
  padding-left: 2em;
}

ol li::before {
  content: counter(li) ".";
  font-family: var(--main-title-font);
  font-size: 1.5em;
  font-weight: 700;
  color: #fe5000;
  float: left;
  width: 1em;
  margin: 0 0 0 -1.25em;
  font-style: normal;
}

ol li {
  counter-increment: li;
  font-weight: bold;
  color: #174475;
  font-style: italic;
  margin: 0 0 1em 0;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.need_card_wrapper {
  width: calc(100vw - 20px - 8em);
  max-width: 1000px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.need_card {
  background: white;
  box-shadow: inset 0 0 0 3px #fe500044;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.need_card {
  flex: 0 0 calc((100% - 4em) / 3);
  margin: 1em;
}

.need_card:nth-of-type(3n + 1) {
  margin-left: 0;
}

.need_card:nth-of-type(3n) {
  margin-right: 0;
}

.need_card:hover {
  transform: scale(1.05);
}

.need_card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.85em;
  height: 0.85em;
  background: #fe5000bb;
  margin: 0.75em;
  border-radius: 50%;
}

.need_card .top_section {
  padding-top: min(56.25%, 200px);
  background: #fe5000;
  position: relative;
}

.need_card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.need_card .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fe5000;
  opacity: 0.4;
}

.need_card .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffc7ae;
  mix-blend-mode: color;
  opacity: 1;
}

.need_card .title {
  font-size: 1.5em;
  line-height: 1.35em;
  font-family: var(--main-title-font);
  font-weight: 600;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  text-shadow: 0 0 5px #fe5000;
}

.need_card .text {
  padding: 2em;
}

.grid-2 {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2em;
}

.col-2 {
}

/*
.grid-3{
   display:grid;
   gap:2em;
   grid-template-columns:repeat(3,1fr);
}

*/

.grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-4 {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(4, 1fr);
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.media_wrapper {
  margin: 2em 0;
}

.media_image {
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.media_image:hover {
  transform: scale(1.05);
}

.media_image div {
  width: 100%;
  padding-top: min(56.25%, 200px);
  background-size: cover;
  background-position: center;
}

.media_video_wide {
  padding-top: calc(56.25% + 35px);
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: -1em;
}

.media_video_wide div,
.media_video_wide iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.font_selection {
  padding: 0.75em 1em;
  box-shadow: inset 0 0 0 3px #fbcab5;
  border-radius: 6px;
}

.font_selection div {
  font-size: 0.8em;
}

.font_selection.panton {
  font-family: panton online;
}
.font_selection.roboto {
  font-family: roboto;
}
.font_selection.garamond {
  font-family: garamond;
  font-size: 1.1em;
}
.font_selection.helvetica {
  font-family: helvetica;
}
.font_selection.arial {
  font-family: arial;
}
.font_selection.open_sans {
  font-family: open sans;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.dropdown_wrapper {
  border: 3px solid #fe500044;
  border-radius: 10px;
  transition: padding 0.4s, background 0.3s;
  margin: 2em 0;
  position: relative;
}

.dropdown_wrapper:hover:not(.max) {
  background: #ffe9e0;
}

.max.dropdown_wrapper {
  padding-bottom: 2em;
}

.dropdown_wrapper .title {
  position: relative;
  margin-bottom: 0;
  font-size: 1.15em;
  font-family: var(--main-title-font);
  font-weight: 500;
  transition: margin 0.3s;
  box-sizing: border-box;
  width: 100%;
  padding: calc(1em / 1.15);
  padding-right: calc(2em / 1.15);
  cursor: pointer;
  user-select: none;
}

.dropdown_wrapper .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(1em / 1.15);
  width: 0.5em;
  height: 0.5em;
  border-left: 3px solid #fe5000;
  border-top: 3px solid #fe5000;
  transform: translateY(-75%) rotate(-135deg);
  transition: transform 0.3s;
}

.max.dropdown_wrapper .title::after {
  transform: translateY(-25%) rotate(45deg);
}

.max.dropdown_wrapper .content {
  max-height: 1000px;
}

.dropdown_wrapper .content {
  max-height: 0;
  transition: max-height 0.3s;
  overflow: hidden;
  position: relative;
  padding: 0 1em;
}

.dropdown_wrapper .close {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10em;
  height: 2em;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  cursor: pointer;
}

.max.dropdown_wrapper .close {
  opacity: 1;
  pointer-events: auto;
}

.dropdown_wrapper .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #fe5000;
  border-left: 3px solid #fe5000;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.5;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.expanding_section_wrapper {
  margin: 2em 0;
  border-bottom: 3px solid #fe500044;
  border-top: 3px solid #fe500044;
  transition: padding 0.4s, border 0.3s;
  position: relative;
}

.expanding_section_wrapper:hover:not(.max) {
  border-bottom: 3px solid #fe5000;
  border-top: 3px solid #fe5000;
}

.max.expanding_section_wrapper {
  padding-bottom: 2em;
}

.max.expanding_section_wrapper .title {
  border-bottom: 3px solid #dce0e6;
}

.expanding_section_wrapper .title {
  position: relative;
  margin-bottom: 0;
  font-size: 1.15em;
  line-height: 1.65em;
  font-family: var(--main-title-font);
  font-weight: 500;
  transition: margin 0.3s;
  width: calc(100% - 3em);
  padding: 1em 2em 1em 1em;
  cursor: pointer;
  border-bottom: none;
  user-select: none;
}

.expanding_section_wrapper .title::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-left: 3px solid #fe5000;
  border-top: 3px solid #fe5000;
  transform: translateY(0) rotate(-135deg);
  transition: transform 0.3s;
}

.max.expanding_section_wrapper .title::after {
  transform: translateY(50%) rotate(45deg);
}

.max.expanding_section_wrapper .content {
  max-height: 2500px;
  padding-bottom: 1em;
}

.expanding_section_wrapper .content {
  max-height: 0;
  transition: max-height 0.3s, padding-bottom 0.4s;
  overflow: hidden;
  position: relative;
}

.expanding_section_wrapper .close {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3em;
  height: 2em;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  cursor: pointer;
}

.max.expanding_section_wrapper .close {
  opacity: 1;
  pointer-events: auto;
}

.expanding_section_wrapper .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #fe5000;
  border-left: 3px solid #fe5000;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.5;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.left_nav {
  position: fixed;
  max-width: 400px;
  max-height: 90vh;
  top: 50%;
  left: 0;
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 0 3em 0.25em #fe5000;
  font-family: var(--main-title-font);
  font-weight: 500;
  color: #184475;
  overflow: hidden;
  transition: max-width 0.3s, max-height 0.3s, box-shadow 0.3s, background 0.3s,
    transform 0.3s;
  transform: translateY(-50%);
  border: 2px solid #fe500044;
  box-sizing: border-box;
  border-left: none;
  z-index: 10000;
}

.left_nav.hidden {
  max-width: 3em;
  max-height: 8em;
  cursor: pointer;
  background: #fe5000;
  box-shadow: 0 0 1.5em 0 #fe500130;
  overflow: hidden;
}

.nav_scroll_wrapper {
  max-height: 90vh;
  overflow-y: scroll;
}

.hidden .nav_scroll_wrapper {
  overflow-y: hidden;
}

.nav_options_wrapper {
  margin: 4em 4em 4em 3em;
  max-width: 100%;
  overflow: hidden;
  transition: max-width 0.3s;
}

.hidden .nav_options_wrapper {
  max-width: 0;
}

.nav_option {
  cursor: pointer;
  user-select: none;
  opacity: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.left_nav.hidden .nav_option {
  opacity: 0;
}

.nav_option.major {
  font-weight: 300;
  font-size: 1.25em;
  margin: 1em 0 0.25em 0;
}

.nav_option:not(.major) {
  border-left: 3px solid #fe5000;
  padding: 0.5em 0 0 0.75em;
}

.nav_option.major:first-of-type {
  margin-top: 0;
}

.nav_option.scroll_link.sel {
  color: #fe5000;
  font-weight: 600;
}

.nav_handle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  max-width: 3em;
}

.hidden .nav_handle {
  opacity: 1;
}

.nav_handle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 20px;
  width: 20px;
  border-radius: 2px 3px 2px 0;
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  transform: translate(-75%, -50%) rotate(45deg);
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.image_highlight {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000ee;
  height: 100vh;
  width: 100vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.show.image_highlight {
  display: block;
}

.image_highlight .content {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000ee;
  height: auto;
  width: 90vw;
  transform: translate(-50%, -50%);
}

.image_highlight .exit {
  position: fixed;
  top: 0;
  right: 0;
  height: 3em;
  width: 3em;
  margin: 1em;
  transition: transform 0.3s;
}

.image_highlight .exit:hover {
  transform: scale(1.1);
}

.image_highlight .exit::before,
.image_highlight .exit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 60%;
  background: #fe5000;
  transform: translate(-50%, -50%) rotate(45deg);
}

.image_highlight .exit::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.color_selection {
  border-radius: 6px;
  font-family: var(--main-title-font);
  font-size: 1.25em;
  color: white;
  padding: 1em;
  transition: transform 0.3s;
}

.color_selection.inv {
  box-shadow: inset 0 0 0 1px #ccc;
  color: black;
}

.color_selection .color {
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background: inherit;
}

.color_selection .color::after {
  content: "Copied";
  opacity: 0;
  transition: opacity 0.6s;
  position: absolute;
  font-family: var(--main-title-font);
  font-style: italic;
  font-size: 1.5em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50%;
  background: inherit;
}

.color_selection .color:active::after {
  opacity: 1;
}

.color_selection .divider {
  width: 100%;
  margin: 0.75em 0;
  height: 1px;
  background: white;
}

.color_selection.inv .divider {
  background: black;
}

.color_selection .label {
  font-size: 0.75em;
  margin: 0;
}

.color_selection p {
  margin: 0;
  font-weight: 600;
}

.color_selection .label + p {
  margin: 0.25em 0 0.75em 0;
}

.color_selection p:last-of-type {
  margin-bottom: 0;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.contact_line {
  padding: 1em 0;
  font-family: var(--main-title-font);
  border-bottom: 3px solid #fe500044;
}

.contact_line + h3,
.contact_line + h4 {
  margin: 3em 0 0.5em 0;
}

.contact_line .img {
  display: inline-block;
  vertical-align: middle;
  width: 3em;
  height: 3em;
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.contact_line .name {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  font-size: 1.1em;
  font-weight: 600;
  width: calc((100% - 6em) * 0.3);
}

.contact_line .position {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  width: calc((100% - 6em) * 0.45);
  font-size: 0.9em;
  font-style: italic;
}

.contact_line .email {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  width: calc((100% - 7em) * 0.25);
  font-weight: 500;
  font-size: 0.9em;
  color: black;
  text-decoration: underline;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.ui_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #febca666;
  opacity: 0;
  transition: opacity 0.3s;
}

.ui_wrapper.visible {
  opacity: 1;
}

.ui_instructions {
  position: fixed;
  top: 50%;
  left: 10em;
  transform: translateY(-50%);
  background: #f9f7f7;
  border-radius: 10px;
  animation: wide_pulse 2s infinite;
  animation-delay: 3s;
  border: 3px solid #ffd2c4;
}

.ui_instructions .text {
  width: 11em;
  padding: 1.75em 2em;
  font-size: 1.75em;
  font-weight: 100;
  line-height: 1.5em;
  color: #fe5000;
  text-shadow: 0 0 10px #f9f7f7;
  user-select: none;
}

.ui_instructions .text .title {
  font-family: var(--main-title-font);
  font-size: 1.15em;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5em;
  color: #fe5000;
  text-shadow: 0 0 10px #f9f7f7;
  margin-bottom: 0.5em;
}

.ui_instructions .text .dismiss {
  font-family: var(--main-title-font);
  width: fit-content;
  font-size: 0.8em;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5em;
  color: #fe5000;
  text-shadow: 0 0 10px #f9f7f7;
  margin: 1em 0 0 auto;
  cursor: pointer;
}

.ui_instructions .arrow {
  position: absolute;
  top: 50%;
  left: calc(-5em - 2px);
  transform: translateY(-50%);
}

.ui_instructions .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5em;
  height: 3px;
  border-radius: 2px;
  background: #fe5000;
}

.ui_instructions .arrow_head {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 2em;
  height: 2em;
  transform: translateY(-50%) rotate(-45deg);
}

.ui_instructions .arrow_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fe5000;
  border-radius: 2px;
}

.ui_instructions .arrow_head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #fe5000;
  border-radius: 2px;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 64em) {
  /*
   .grid-3{
      grid-template-columns:repeat(2,1fr);
   }
   */

  .need_card {
    flex: 0 0 calc((100% - 2em) / 2);
  }

  .need_card:nth-of-type(3n + 1) {
    margin-left: 1em;
  }

  .need_card:nth-of-type(3n) {
    margin-right: 1em;
  }

  .need_card:nth-of-type(2n + 1) {
    margin-left: 0;
  }

  .need_card:nth-of-type(2n) {
    margin-right: 0;
  }
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 44em) {
  .outer_wrapper {
    padding-top: 3em;
  }

  section {
    padding: 0 7%;
    padding-bottom: 6em;
  }

  section::before {
    width: calc(100% - 2em);
  }

  .title_logo {
    margin: 0;
  }

  .main_title {
    font-size: 3em;
    font-weight: 600;
    line-height: 1.15em;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
    padding-right: 0.75em;
  }

  .heading_mark {
    transform: translate(50%, -50%);
    left: unset;
    right: 0;
    width: 1em;
    height: 1em;
  }

  h2:hover .heading_mark {
    transform: translate(50%, -50%);
  }

  h2:active .heading_mark {
    transform: translate(50%, -50%);
  }

  .heading_mark::after {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.25em;
  }

  h2 + h4 {
    margin-top: -1em;
  }

  a.button {
    font-size: 1em;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .col-2:not(.col-2:last-of-type):not(.col-2:first-of-type) {
    margin: 0;
  }

  .col-2:first-of-type {
    margin-bottom: 0;
  }

  .col-2:last-of-type {
    margin-top: 0;
  }

  .col-2 + .col-2 .list {
    padding: 1em 0 0 0.75em;
  }

  /*
   .grid-3{
      grid-template-columns:1fr;
      width: 100%;
   }
   */

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .need_card_wrapper {
    width: 100%;
    max-width: 1000px;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .need_card {
  }

  .need_card {
    flex: 0 0 100%;
    margin: 1em 0 !important;
  }

  .need_card:hover {
    transform: unset;
  }

  .need_card::after {
  }

  .need_card .top_section {
    padding: 1.5em;
    padding-bottom: 1em;
    background: unset;
  }

  .need_card .bg {
    opacity: 0;
  }

  .need_card .bg::before {
  }

  .need_card .bg::after {
  }

  .need_card .title {
    color: #fe5000;
    position: relative;
    left: unset;
    width: 100%;
    transform: unset;
    font-size: 1.15em;
    text-shadow: unset;
  }

  .need_card .text {
    padding: 1.5em;
    padding-top: 0;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .media_video_wide {
    padding-top: 56.25%;
  }

  .font_selection {
    margin: 0.5em 0;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .expanding_section_wrapper {
    margin: 1.5em 0;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .left_nav {
    top: 0;
    right: 0;
    left: unset;
    width: fit-content;
    max-height: 95vh;
    max-width: 100%;
    font-size: 110%;
    border-radius: 0 0 0 10px;
    border: 2px solid #fe500044;
    border-left: none;
    border-top: none;
    transform: unset;
    transition: all 0.3s;
    z-index: 10000;
  }

  .left_nav.hidden {
    top: 0.5em;
    right: 0.5em;
    left: unset;
    max-width: 3em;
    max-height: 3em;
    background: #ffffff;
    border: 2px solid #fe500044;
    border-radius: 10px;
    cursor: pointer;
  }

  .nav_scroll_wrapper {
    max-height: 95vh;
    overflow-y: scroll;
  }

  .hidden .nav_scroll_wrapper {
    overflow-y: hidden;
  }

  .nav_options_wrapper {
    margin: 4em 3em 4em 4em;
  }

  .nav_exit {
    position: absolute;
    top: 0;
    right: 0;
    left: unset;
    width: 3em;
    height: 3em;
    opacity: 1;
    transition: opacity 0.1s;
    border-radius: 50%;
    margin: 0.5em;
  }

  .hidden .nav_exit {
    opacity: 0;
    pointer-events: none;
    margin: 0;
    transition: margin 0.3s;
  }

  .nav_exit::before,
  .nav_exit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55%;
    height: 3px;
    border-radius: 2px;
    background: #fe5000;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s;
  }

  .nav_exit::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hidden .nav_exit::before,
  .hidden .nav_exit::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .nav_handle {
    position: absolute;
    top: 0;
    right: 0;
    width: 3em;
    height: 3em;
    opacity: 1;
    transform: unset;
    transition: opacity 0.1s;
    border-radius: 50%;
    pointer-events: none;
  }

  .nav_handle::after {
    content: "";
    border: unset;
  }

  .hidden .nav_handle {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(3em - 4px);
    height: calc(3em - 4px);
    opacity: 1;
    transition: opacity 0.1s;
    border-radius: 50%;
    transform: unset;
    pointer-events: unset;
  }

  .hidden .nav_handle div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 37.5%;
    height: 3px;
    background: #fe5000;
    border-radius: 2px;
    transform: translate(-75%, -50%);
  }

  .hidden .nav_handle div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 150%;
    height: 3px;
    background: #fe5000;
    border-radius: 2px;
    transform: translateY(-300%);
  }

  .hidden .nav_handle div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120%;
    height: 3px;
    background: #fe5000;
    border-radius: 2px;
    transform: translateY(300%);
  }

  .hidden .nav_handle::after {
    border: unset;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .ui_instructions {
    position: fixed;
    top: 15em;
    left: 50%;
    width: 75%;
    transform: translateX(-50%);
    background: #f9f7f7;
    border-radius: 10px;
    border: 3px solid #ffd0bb;
    animation: none;
  }

  .ui_instructions .text {
    width: unset;
    padding: 1.5em;
    font-size: 1.15em;
    font-weight: 100;
    line-height: 1.5em;
    color: #fe5000;
    text-shadow: 0 0 10px #f9f7f7;
    user-select: none;
  }

  .ui_instructions .arrow {
    position: absolute;
    top: -3px;
    right: 10%;
    left: unset;
    transform: translateY(-100%);
    height: 12.5em;
    width: 40%;
    border-left: 3px solid #fe5000;
    border-top: 3px solid #fe5000;
    border-radius: 10px 0 0 0;
  }

  .ui_instructions .arrow::after {
    display: none;
  }

  .ui_instructions .arrow_head {
    top: 0;
    right: 3px;
    left: unset;
    transform: translateY(calc(-50% - 2px)) rotate(45deg);
  }

  .ui_instructions .arrow_head::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: unset;
    width: 100%;
    height: 3px;
    background: #fe5000;
    border-radius: 2px;
  }

  .ui_instructions .arrow_head::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: unset;
    width: 3px;
    height: 100%;
    background: #fe5000;
    border-radius: 2px;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .color_selection {
    font-size: 1.05em;
  }

  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
  /*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

  .contact_line {
    padding: 1em 0 1em 4.5em;
    font-family: var(--main-title-font);
    border-bottom: 3px solid #fe500044;
    width: fit-content;
    position: relative;
  }

  .contact_line .img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .contact_line .name {
    display: block;
    margin-left: 0;
    width: 100%;
    margin-bottom: 0.25em;
  }

  .contact_line .position {
    display: block;
    margin-left: 0;
    width: 100%;
    line-height: 1.25em;
  }

  .contact_line .email {
    display: block;
    margin-left: 0;
    width: 100%;
  }
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.footer {
  width: 100%;
  padding: 60px 0;
  background: #f9eae4;
}

.footer.before {
  height: 3px;
}

.footer_inner {
  padding: 0 4em;
  margin: auto;
  width: 100%;
  max-width: calc(800px + 8em);
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.footer_logo {
  margin: auto;
  width: 40%;
  margin-bottom: 20px;
}

.footer_logo img {
  width: 100%;
}

.footer_link {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}

.footer_link a {
  font-weight: 600;
  font-family: var(--main-title-font);
  text-decoration: none;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 6px;
  border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fe5000;
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

@-webkit-keyframes pulse {
  0% {
    outline: 0 solid rgba(254, 80, 0, 1);
  }
  70% {
    outline: 20px solid rgba(254, 80, 0, 0);
  }
  100% {
    outline: 0 solid rgba(254, 80, 0, 0);
  }
}

@-webkit-keyframes wide_pulse {
  0% {
    outline: 0 solid rgba(254, 80, 0, 1);
  }
  70% {
    outline: 50px solid rgba(254, 80, 0, 0);
  }
  100% {
    outline: 0 solid rgba(254, 80, 0, 0);
  }
}
