@font-face {
  font-family: Arial;
  src: url('../fonts/Arial.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Georgia;
  src: url('../fonts/Georgia.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-BoldItalic-02.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-MediumItalic-07.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-Regular-08.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-UltraLightItalic-12.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-Italic-05.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-Bold-01.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-UltraLight-11.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-Medium-06.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-HeavyItalic-10.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-Heavy-09.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-DemiBold-03.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Avenir Next;
  src: url('../fonts/AvenirNext-DemiBoldItalic-04.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Dejanireheadline;
  src: url('../fonts/DejanireHeadline-Bold.ttf') format("truetype"), url('../fonts/DejanireHeadline-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --quickbase-light-green: #82934b;
  --quickbase-blue: #1a6874;
  --white: white;
  --orange: #f25e30;
  --transparent: #0000;
  --light-green: #e2edd7;
  --light-yellow: #fffcee;
  --medium-green-blue: #2c9382;
  --light-blue: #47c5e0;
  --yellow: #ef9421;
  --dark-green: #1b2c17;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Dejanireheadline, Georgia, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Dejanireheadline, Georgia, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Dejanireheadline, Georgia, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Dejanireheadline, Georgia, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: var(--black);
  text-align: left;
  margin-top: 30px;
  margin-bottom: 0;
  font-family: Avenir Next, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

label {
  margin-bottom: 5px;
  font-family: Avenir Next, Arial, sans-serif;
  font-weight: 400;
  display: block;
}

.highlighted {
  color: var(--quickbase-light-green);
}

.button {
  border: 3px solid var(--quickbase-blue);
  background-color: var(--quickbase-blue);
  color: var(--white);
  cursor: pointer;
  margin-top: 30px;
  padding: 8px 25px;
  font-family: Avenir Next, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  transition: all .4s;
}

.button:hover {
  background-color: var(--white);
  color: var(--quickbase-blue);
}

.button.secondary {
  border-color: var(--quickbase-light-green);
  background-color: var(--white);
  color: var(--black);
}

.button.smaller {
  margin-top: 0;
  padding: 4px 12px;
  font-size: 16px;
}

.button.cta-orange {
  border-color: var(--orange);
  background-color: var(--transparent);
}

.button.cta-orange:hover {
  background-color: var(--orange);
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 30px 40px;
}

.container.small-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}

.container.small-padding.larger {
  max-width: 100%;
}

.container.more-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.container.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.light-green {
  background-color: var(--light-green);
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.image {
  width: 100%;
}

.flex {
  display: flex;
}

.flex.vertical {
  flex-flow: column;
  justify-content: center;
}

.flex.vertical.left {
  align-items: flex-start;
}

.flex.vertical.left.center, .flex.margin-top.center {
  justify-content: center;
}

.hero-image-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-right-boxes {
  height: 800px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-2 {
  width: auto;
  max-width: 80%;
  position: relative;
}

.yellow-bg {
  background-color: var(--light-yellow);
}

.yellow-bg.hide {
  display: none;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.smaller-link-block-text {
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
}

.subnavigation-link {
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.subnavigation-dropdown {
  padding: 0 40px 0 0;
}

.text-block {
  font-family: Avenir Next, Arial, sans-serif;
  font-weight: 600;
}

.icon {
  margin-right: 0;
}

.subnavigation {
  z-index: 1000;
  background-color: var(--light-yellow);
  position: sticky;
  top: 60px;
  box-shadow: 0 12px 12px 1px #0000001a;
}

.form-block {
  margin-bottom: 0;
}

.input {
  color: var(--black);
  margin-bottom: 0;
  font-family: Avenir Next, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.div-block {
  justify-content: center;
  display: flex;
}

.image-3 {
  z-index: 1000;
  position: sticky;
  top: 0;
}

.div-block-2 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-2.margin-top {
  margin-top: 30px;
}

.link-block, .paragraph {
  color: var(--quickbase-blue);
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

.grid-3.margin-top {
  margin-top: 60px;
}

.grid-3.flipped {
  grid-template-columns: 1fr 2fr;
}

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

.right-align {
  text-align: right;
}

.slider {
  background-color: var(--transparent);
  height: auto;
  margin-bottom: 30px;
}

.right-arrow, .left-arrow {
  display: none;
}

.div-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-4 {
  height: 26px;
  margin-bottom: 30px;
}

.quote-text {
  text-align: center;
  font-family: Dejanireheadline, Georgia, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.margin-top {
  width: 100%;
  margin-top: 30px;
}

.headshot {
  border-radius: 50px;
  width: 100px;
  height: 100px;
}

.quote-name {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
}

.div-block-4 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 20px;
  display: flex;
}

.quote-title {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-slide, .mask {
  height: auto;
}

.slide-nav {
  bottom: -30px;
}

.search-form {
  align-items: center;
  display: flex;
}

.code-embed {
  background-color: var(--quickbase-blue);
  width: 36px;
  height: 38px;
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 4px 6px;
  display: flex;
}

.code-embed.job-search-btn {
  cursor: pointer;
}

.locations-grid {
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
  width: 632px;
  max-width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.location-div {
  background-color: var(--medium-green-blue);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 100%;
  height: 300px;
  padding: 0;
  text-decoration: none;
  display: none;
  position: relative;
}

.location-div.w--current {
  border-style: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.location-div.sofia {
  border-color: var(--medium-green-blue);
  background-color: var(--light-blue);
}

.location-div.bangalore {
  border-color: var(--orange);
  background-color: var(--yellow);
}

.location-div.uk {
  background-color: var(--orange);
}

.location-div.show {
  display: block;
}

.dark-green-bg {
  background-color: var(--quickbase-blue);
}

.div-block-5 {
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.image-5 {
  object-fit: cover;
  width: 25%;
  min-height: 200px;
  max-height: 300px;
}

.div-block-6 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.image-6 {
  object-fit: cover;
  width: 25%;
  min-height: 200px;
  max-height: 300px;
}

.white {
  color: var(--white);
}

.white.name.value {
  font-size: 24px;
}

.relative {
  position: relative;
}

.win-together.relative {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}

.dropdown-list {
  inset: auto 0% 0%;
}

.dropdown-list.w--open {
  background-color: var(--white);
  border-radius: 8px;
  inset: 50px 0% auto;
  box-shadow: 0 2px 12px 1px #0003;
}

.image-7 {
  width: 150px;
}

.image-7.thumbnail-image.value {
  object-fit: cover;
  width: 300px;
  height: 300px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-8 {
  object-fit: cover;
  width: 95%;
  max-width: 95%;
  height: 95%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-8.top-left {
  inset: 0% auto auto 0%;
}

.div-block-8 {
  background-color: var(--orange);
  width: 95%;
  height: 95%;
}

.div-block-8.blue {
  background-color: var(--medium-green-blue);
}

.div-block-8.yellow {
  background-color: var(--yellow);
}

.div-block-8.bottom-left {
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-8.bottom-left.green {
  background-color: var(--quickbase-light-green);
}

.div-block-8.bottom-left.dark-blue {
  background-color: var(--quickbase-blue);
}

.grid-4 {
  grid-template-rows: auto;
}

.div-block-9 {
  background-color: var(--medium-green-blue);
  width: 95%;
  height: 95%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-10 {
  border: 3px solid var(--medium-green-blue);
  background-color: var(--white);
  width: 95%;
  height: 95%;
  padding: 20px;
  position: relative;
  inset: 0% 2% auto auto;
}

.div-block-11 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-12 {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.div-block-12.flex-top {
  justify-content: flex-start;
}

.grid-5 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  align-content: center;
}

.div-block-13 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.smaller-margin {
  margin-top: 10px;
}

.div-block-14 {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.div-block-14.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-2 {
  min-width: 300px;
}

.image-9 {
  margin-bottom: 10px;
}

.benefit-item {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.benefit-item.flex-top {
  text-align: center;
  justify-content: flex-start;
  display: none;
}

.benefit-item.flex-top.show {
  align-items: flex-start;
  display: flex;
}

.div-block-15 {
  align-items: center;
  display: flex;
}

.page-info.tagline.value, .page-info.hero-subtext {
  text-align: left;
}

.page-info.hero-subtext.value {
  font-size: 16px;
  line-height: 1.25;
}

.page-info.what-is-quickbase-description.value {
  margin-top: 0;
}

.value-item {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
  display: none;
}

.value-item.flex-top {
  justify-content: flex-start;
}

.value-item.show {
  display: block;
}

.div-block-16 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slug.value {
  padding: 4px;
}

.slug.value.boston {
  background-color: var(--light-blue);
}

.slug.value.sofia {
  background-color: var(--orange);
}

.slug.value.bangalore {
  background-color: var(--dark-green);
}

.slug.value.united-kingdom {
  background-color: var(--yellow);
}

.location-link {
  background-color: var(--medium-green-blue);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  padding: 0;
  text-decoration: none;
  display: none;
  position: relative;
}

.location-link.w--current {
  border-style: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.location-link.sofia {
  border-color: var(--medium-green-blue);
  background-color: var(--light-blue);
}

.location-link.bangalore {
  border-color: var(--orange);
  background-color: var(--yellow);
}

.location-link.uk {
  background-color: var(--orange);
}

.location-link.show {
  display: block;
}

.location-link.slug.value {
  width: 300px;
  max-width: 100%;
  height: 300px;
  display: block;
}

.what-is-quickbase-description.value {
  width: 100%;
  margin-top: 30px;
}

.dropdown-list-2 {
  border-radius: 1px;
}

.dropdown-list-2.w--open {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 9px 18px #0000001a;
}

.text-block-6 {
  color: #3d3d3d;
  padding-top: 12px;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.text-block-6.job-title {
  color: #1a574d;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 20px;
}

.text-block-6.job-title.title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.div-block-17 {
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  display: flex;
}

.dropdown-toggle {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 46px;
  padding: 20px 52px 20px 30px;
  transition: background-color .3s;
  display: flex;
  position: relative;
  inset: 0% 0% 0% auto;
}

.text-block-5 {
  color: #1c2c17;
  padding-right: 9px;
  font-family: Avenir Next, Arial, sans-serif;
  font-size: 18px;
  display: block;
}

.search-input {
  color: #bababa;
  object-fit: fill;
  background-color: #fff;
  border: 1px #000;
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 18px;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}

.search-input.big {
  color: #000;
  cursor: text;
  background-color: #fffcee;
  border-style: solid;
  border-color: #000;
  border-radius: 0;
  height: 46px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0 20px 16px;
  font-family: Avenir Next, Arial, sans-serif;
  font-size: 18px;
}

.search-input.big:focus {
  color: #1e1e1e;
}

.search-input.big::placeholder {
  color: #000;
  font-weight: 400;
}

.job-object {
  display: none;
}

.job-object.show {
  display: block;
}

.dropdown {
  flex: 0 auto;
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.text-block-7 {
  color: #8b8b8b;
  margin-bottom: 15px;
}

.text-block-7.department-name {
  color: #000;
  font-size: 18px;
}

.text-block-7.department-name.department {
  font-family: Avenir Next, Arial, sans-serif;
}

.text-block-7.location-name {
  color: #000;
  margin-bottom: 0;
  font-size: 18px;
}

.text-block-7.location-name.location {
  font-family: Avenir Next, Arial, sans-serif;
}

.heading {
  color: #1a574d;
  text-align: center;
  margin-top: 0;
  font-size: 62px;
  font-weight: 400;
  line-height: 64px;
}

.search-button {
  object-fit: fill;
  background-color: #0000;
  background-image: url('../images/ic_arrow_forward.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 16px;
  display: none;
  overflow: visible;
}

.grid-6 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 4.5fr 1fr 1fr;
  padding-top: 20px;
}

.no-jobs {
  display: none;
}

.link {
  text-decoration: none;
  display: block;
}

.grid-7 {
  grid-column-gap: 29px;
  cursor: pointer;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 5.75fr 1fr 1fr;
}

.search {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 16px;
  display: flex;
}

.search.big {
  text-align: left;
  border: 1px #000;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 0;
}

.menu-bound {
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 0;
  height: 46px;
  font-size: 18px;
}

.menu-bound.location-item, .menu-bound.department-item {
  color: #1c2c17;
  background-color: #fffcee;
}

.section-5 {
  padding-top: 47px;
  padding-bottom: 72px;
}

.section-5.padding {
  padding-top: 10%;
  padding-bottom: 10%;
}

.center {
  text-align: center;
}

.erg-item {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.erg-item.flex-top {
  text-align: center;
  justify-content: flex-start;
  display: none;
}

.erg-item.flex-top.show {
  align-items: flex-start;
  display: flex;
}

.hide {
  display: none;
}

.tc-submit-message {
  color: var(--medium-green-blue);
  font-size: 14px;
  font-weight: 600;
}

.navigation {
  z-index: 1000;
  background-color: var(--white);
  position: sticky;
  inset: 0% 0% auto;
}

.navigation-mobile, .navigation-mobile-hover {
  display: none;
}

@media screen and (max-width: 991px) {
  .heading {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .container-2 {
    overflow: hidden;
  }

  .section-5 {
    padding-top: 0;
  }

  .navigation-desktop {
    display: none;
  }

  .navigation-mobile {
    border-bottom: 2px solid var(--medium-green-blue);
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    display: flex;
  }

  .navigation-mobile-unhover, .navigation-mobile-hover {
    width: 45px;
  }

  .code-embed-2 {
    width: 100%;
    max-width: 170px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown-toggle {
    padding-left: 16px;
  }

  .dropdown {
    margin-top: 0;
  }

  .container-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid-6 {
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    grid-template-columns: 4.5fr;
  }

  .search.big {
    margin-top: 0;
  }

  .section-5.padding {
    width: auto;
  }
}

@media screen and (max-width: 479px) {
  .text-block-6 {
    padding-bottom: 4px;
    font-size: 15px;
  }

  .text-block-6.job-title {
    font-size: 18px;
    font-weight: 500;
  }

  .dropdown-toggle {
    width: 100%;
    margin-top: 11px;
  }

  .image-10 {
    text-align: left;
    object-fit: fill;
    width: auto;
    display: inline-block;
  }

  .dropdown {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: block;
  }

  .text-block-7.department-name {
    font-weight: 400;
  }

  .heading {
    font-size: 36px;
    line-height: 41px;
  }

  .grid-6 {
    clear: none;
    grid-template-rows: auto auto auto;
    grid-template-areas: ". . Area"
                         ". . ."
                         ". . .";
    justify-content: stretch;
    place-items: stretch stretch;
    padding-top: 0;
    display: block;
    position: static;
  }

  .search.big {
    align-items: center;
  }

  .section-5.padding {
    margin-bottom: 20px;
    padding-bottom: 10%;
    padding-left: 0;
    padding-right: 0;
  }
}

#w-node-_76b218ad-ce96-2c6f-7f95-eda8c8905d68-5413fd97 {
  justify-self: end;
}

#w-node-_76b218ad-ce96-2c6f-7f95-eda8c8905d82-5413fd97 {
  align-self: center;
}

#w-node-_76b218ad-ce96-2c6f-7f95-eda8c8905d85-5413fd97 {
  place-self: center;
}

#w-node-_7cbd5dcc-5fc4-ba4d-581b-3e6afa4b6aa2-bbc35c70 {
  justify-self: end;
}

#w-node-_7cbd5dcc-5fc4-ba4d-581b-3e6afa4b6abc-bbc35c70 {
  align-self: center;
}

#w-node-_7cbd5dcc-5fc4-ba4d-581b-3e6afa4b6abf-bbc35c70 {
  place-self: center;
}

#w-node-_9ce017d8-e72b-bba0-f473-ab71417ae3b9-a456efaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ffdc4ccb-728f-bd82-3be2-27c1546c4d67-94aff43e {
  justify-self: end;
}

#w-node-ffdc4ccb-728f-bd82-3be2-27c1546c4d81-94aff43e {
  align-self: center;
}

#w-node-ffdc4ccb-728f-bd82-3be2-27c1546c4d84-94aff43e {
  place-self: center;
}

#w-node-_9ce017d8-e72b-bba0-f473-ab71417ae3b9-5c0e95c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Arial';
  src: url('../fonts/Arial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/Georgia.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-BoldItalic-02.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-MediumItalic-07.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-Regular-08.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-UltraLightItalic-12.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-Italic-05.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-Bold-01.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-UltraLight-11.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-Medium-06.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-HeavyItalic-10.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-Heavy-09.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-DemiBold-03.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext-DemiBoldItalic-04.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dejanireheadline';
  src: url('../fonts/DejanireHeadline-Bold.ttf') format('truetype'), url('../fonts/DejanireHeadline-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}