html {
  scroll-padding-top: 127px;
}

h1 {
  font-size: 40px;
  font-weight: 400;
  color: #F6A312;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  color: #F6A312;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #024453;
}

span.orange {
  color: #D96B00;
  font-weight: 700;
}

p a {
  font-weight: 700;
  color: #D96B00;
}

.green_callout {
  border: 2px solid #1C9953;
  border-radius: 10px;
}

.green_callout img {
  align-self: center;
  max-width: 84px;
}

.green_callout .col-2, .green_callout .col-10 {
  display: flex;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
}

.green_callout .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.green_callout .content p {
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 10px !important;
}

.green_callout .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.green_callout .col-12.column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.green_callout .col-12.img {
  justify-content: center;
  align-items: center;
}

.green_callout .col-12.img img {
  max-width: 100%;
  padding: unset;
  margin: unset;
  margin-top: 10px;
  margin-bottom: 10px;
}

.green_callout .col-12 p {
  margin: 0;
  padding: 0;
  /*padding-left: 20px;
  padding-right: 60px;*/
}

.green_callout .col-12 img {
  /*padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
  margin-bottom: 20px;*/
  padding: 0;
  margin: 0;
  max-width: 100%;
  height: auto;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.orange_container {
  background-color: #FBF0E5;
}

.dark_orange_container {
  background-color: #D96B00;
}

.dark_orange_container h3 {
  text-align: center;
  color: white;
  font-size: 40px;
  font-weight: 700;
}

.orange_bg {
  padding: 40px;
  background-color: #D96B00;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.white_row {
  background-color: white;
  border-radius: 8px;
}

.align_top {
  justify-content: flex-start !important;
}

.white_row ul li p {
  padding: 0;
  margin: 0;
}

.white_row p a {
  font-weight: 700;
  color: #D96B00;
}

.white_row h3 {
  color: #F4A212;
  font-weight: 700;
  font-size: 26px;
  padding-top: 15px;
}

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

.orange_bg button, .button {
  background-color: white;
  border: 2px solid white;
  border-radius: 8px;
  color: black;
  font-size: 15px;
  text-align: center;
  width: 40%;
  font-weight: 700;
  padding: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.orange_bg button:hover, .button:hover {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  transition: all 0.2s ease;
}

.orange_bg h3 {
  color: white;
}

.orange_bg p {
  color: white;
}

.orange_box {
  background-color: #FBF0E5;
  border-radius: 10px;
}

.unavailable {
  opacity: 0.7;
  cursor: default;
}

.homepage {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-position: center top;
}

#homepage_hero_inner {
  justify-content: center;
  align-items: center;
}

.ontrack_logo {
  background-image: url(../img/logo-ontrack.png);
  background-size: 174px 35px;
  max-width: 174px;
  width: 174px;
  height: 35px;
  margin-left: 24px;
}

.homepage_hero h1 {
  color: white;
  font-size: 68px;
  font-weight: 300;
}

.homepage_hero p {
  color: #FCD603;
  font-size: 24px;
  font-weight: 400;
}

.download_boxes {
  display: grid;
  grid-template-columns: 49% 49%;
  grid-auto-rows: 1fr;
}

.homepage_cards {
  /*row-gap: 10px;*/
  display: grid;
  grid-template-columns: 50% 50%;
  grid-auto-rows: 1fr;
  grid-row-gap: 20px;
  /*grid-column-gap: 10px;*/
}

.homepage_boxes {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-auto-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.homepage_box {
  height: 100%;
}

.homepage_card_inner {
  background-color: #EBF1F3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.homepage_card h5 {
  text-align: center;
  color: black;
  font-size: 32px;
  font-weight: 300;
}

.homepage_card p {
  text-align: center;
  color: black;
  font-size: 16px;
  font-weight: 400;
}

.homepage_card button {
  background-color: #FCD603;
  color: #02161A;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #FCD603;
  padding: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.homepage_card button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.hero_row {
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
}

.hero_row_navigating {
  background-image: url(../img/hero-navigating.png);
  height: 430px;
}

.hero_row_home {
  background-image: url(../img/hero-homepage.jpg);
  border-radius: 12px;
  background-size: auto 100%;
  height: 430px;
  background-position: right center;
}

.homepage_hero_white_box {
  background-color: white;
  border-radius: 12px;
  max-width: 50%;
  padding: 20px;
}

.homepage_hero_white_box h1 {
  color: #0F1D22 !important;
  font-size: 42px !important;
  font-weight: 700 !important;
}

.homepage_hero_white_box p {
  color: #D96B00 !important;
  font-size: 22px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  max-width: 75%;
}

.hero_row_resources {
  background-image: url(../img/hero-resources.png);
  height: 430px;
}

.hero_row_receiving {
  background-image: url(../img/hero-receiving.png);
  height: 430px;
}

.hero_row_about {
  background-image: url(../img/hero-about.png);
  height: 430px;
  border-radius: 10px;
}

.hero_row_expect {
  background-image: url(../img/hero-expect.png);
  height: 430px;
}

.bsg {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.no-gutter-desktop {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bsg_p {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

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

.hero_text {
  padding: 20px;
  bottom: 50%;
  position: absolute;
  width: 45%;
  max-height: 50%;
}

.hero_row h1 {
  color: white;
  font-weight: 700;
  font-size: 58px;
  font-style: normal;
}

.hero_row p {
  color: white;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
}

.container_row {
  flex-direction: row;
  display: flex;
  justify-content: flex-end;
}

.disclaimer_row {
  min-height: 34px;
  background-color: #FBF0E5;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.disclaimer_row .disclaimer_inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.disclaimer_inner p {
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.disclaimer_row .disclaimer_inner .col-lg-8 {
  padding-left: 0px;
}

.disclaimer_row p {
  color: #0F1D22;
  font-weight: 400;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.disclaimer_row p b {
  font-weight: 700;
}

.disclaimer_row a {
  color: #0F1D22;
  font-weight: 700;
  text-decoration: none;
}

.disclaimer_row a:hover {
  text-decoration: underline;
}

#top_nav_container {
  /*margin-left: 34px;*/
  /*margin-right: 34px;*/
  padding-left: 0px;
  padding-right: 0px;
}

#dd_lang {
  display: flex;
  justify-content: flex-end;
}

.lang_selector .dropdown-menu {
  background-color: white;
  z-index: 1030;
  padding: 20px;
  width: 290px;
  transform: unset !important;
  inset: unset !important;
}

.lang_selector button {
  color: white;
}

.lang_selector .dropdown-menu .dropdown-item {
  font-size: 18px;
}

.update_country_button {
  background-color: #FCD603;
  width: 100%;
  color: #02161A !important;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
  border: 1px solid #FCD603;
  padding: 10px;
  border-radius: 7px;
}

span.dropdown-item {
  cursor: default;
}

.lang_selector .dropdown-menu p {
  color: black;
  font-size: 18px;
  font-weight: 400;
}

.lang_selector .form-check {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.lang_selector .dropdown-menu img {
  width: 70px;
}

/*.lang_selector button
{
  color: white;
  font-size: 13px;
  font-weight: 400;
}*/
.lang_selector img {
  margin-right: 5px;
}

.desktop_subnav {
  z-index: 1010;
}

#navbarSupportedContent {
  flex-grow: unset !important;
}

.top_nav_row {
  min-height: 78px;
  background-color: transparent;
}

.top_nav_row.transparent {
  background-color: transparent;
}

.resources {
  min-width: 419px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #EBF1F3;
}

.resources p {
  margin: 0;
  padding: 0;
}

.resources p a {
  color: #024453;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

.download-row {
  border-radius: 10px;
}

.download-row:hover {
  background-color: #024453;
}

.download-row:hover p a {
  color: white;
}

.download-row:hover img {
  filter: brightness(0) invert(1);
}

.download-icon {
  margin: 0 auto;
  display: block;
  display: flex;
  justify-content: center;
}

#top_nav {
  z-index: 1050;
  transition: background 0.5s ease;
}

#top_nav.isTop {
  background-color: white;
  transition: background 0.5s ease;
}

#top_nav .nav-link {
  color: #1C1818;
  font-weight: 700;
}

#top_nav .nav-item.active {
  background-color: #D96B00;
  border-radius: 8px;
}

#top_nav .nav-item.active a {
  color: white;
}

#top_nav .nav-item {
  /*padding-left: 10px;
  padding-right: 10px;*/
}

#navbarNav {
  justify-content: flex-end;
}

.yellow_box_container {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  grid-auto-rows: 1fr;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}

.yellow_box_container.signs {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-auto-rows: 1fr;
  grid-row-gap: 10px;
}

.yellow_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 0px 10px;
}

.yellow_box p, .yellow_box_v p {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.yellow_box p b, .yellow_box_v p b {
  font-weight: 700;
}

.yellow_box_row {
  height: 100%;
  width: 100%;
  background-color: #FFF3DC;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.yellow_box_v {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*padding-left: 20px;
  padding-right: 20px;*/
}

.yellow_box_row_v {
  height: 100%;
  width: 100%;
  background-color: #FFF3DC;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.yellow_box_row_v p {
  text-align: center;
  color: #02161A;
  font-size: 16px;
  font-weight: 700;
}

.signs_inner {
  background-color: #FFF3DC;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sub_nav {
  border-bottom: 1px solid #024453;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#sub_nav .nav-item {
  padding-left: 8px;
  padding-right: 8px;
}

#sub_nav .nav-item:nth-child(1) {
  padding-left: 0px;
}

#sub_nav .nav-link {
  font-size: 18px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#sub_nav .nav-link.active {
  font-weight: 700;
  border-bottom: 4px solid #024453;
}

.image_row {
  background-color: #EBF1F3;
  border-radius: 10px;
  padding-bottom: 30px;
}

.image_row_text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 30px;
}

.image_row h2 {
  color: #024453;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 20px;
}

.image_row p {
  font-size: 18px;
  color: black;
  line-height: 150%;
  font-weight: 400;
}

.image_row_left img {
  transform: translate(10px, -20px);
}

.image_row_right img {
  transform: translate(-10px, -20px);
}

.alert_row {
  /*min-height: 134px;*/
  background-color: #024453;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.alert_wrapper {
  background-color: #024453;
}

.grey_wrapper {
  background-color: #EBF1F3;
}

.grey_wrapper img {
  border-radius: 10px;
  transform: translate(0px, -30px);
}

.alert_row p {
  color: white;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  padding: 0;
  margin: 0;
}

.photo_row p {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding: 0;
  margin: 0;
}

.photo_row img {
  border-radius: 10px;
  transform: translate(0px, 40px);
}

.photo_row_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-container-row {
  justify-content: flex-end;
}

.footer_row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: space-between;
  margin-left: unset;
  margin-right: unset;
}

.footer_row p {
  color: #18292E;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 140%;
}

.footer p {
  font-size: 16px !important;
}

.footer p small {
  font-size: 14px !important;
}

.footer_links_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer_row .footer_links p {
  padding-top: 4px;
  padding-bottom: 4px;
}

.footer_row a {
  color: #18292E;
  text-decoration: none;
}

.footer_row a:hover {
  text-decoration: underline;
}

.footer_row h3 {
  color: #18292E;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.footer_links {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer_links p {
  font-size: 16px;
  color: #18292E;
}

.footer_links p a {
  color: #18292E;
  font-size: 16px;
  font-weight: 700;
}

.orangeTop {
  height: 12px;
  background-color: #F6A312;
}

.greenTop {
  height: 6px;
  background-color: #1C9953;
}

#eyes_block {
  background-color: #FFF3DC;
  border-radius: 10px;
}

#eyes_block h4 {
  text-align: center;
}

#eyes_block p {
  text-align: center;
}

.eye_img {
  display: block;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.what-causes {
  background-color: #EBF1F3;
}

.what-causes h4 {
  font-weight: 400;
  font-size: 34px;
  color: #024453;
}

.causes_icon {
  padding: 20px;
  background-color: white;
  border-radius: 100px;
}

.references_inner ol {
  margin: 0;
  padding-left: 1rem;
}

.references_inner p {
  padding: 0;
  margin: 0;
}

.references_inner p a {
  color: black;
  text-decoration: none;
  line-break: anywhere;
  font-weight: 400;
  text-decoration: underline;
}

.references_inner p a:hover {
  text-decoration: underline;
}

.accordion-body {
  padding-top: 0px;
}

.references_inner .accordion-body {
  padding-top: 0px;
}

.logo_wrapper {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-auto-rows: 1fr;
  grid-row-gap: 20px;
}

.logoCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logoCard img {
  display: block;
  margin: 0 auto;
  max-height: 43px;
}

.logoCard:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.logoCard:hover p a {
  text-decoration: underline;
}

.logoCard h5 {
  text-align: center;
  font-size: 22px;
  font-weight: 300;
}

.logoCard p {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.logoCard a {
  color: black;
  text-decoration: none;
}

.accordion-button, .references_inner {
  background-color: #FBF0E5 !important;
  box-shadow: unset !important;
}

#references_accordion {
  border: none !important;
  --bs-accordion-border-width: 0px;
}

.accordion-button h3 {
  color: #02161A;
  font-size: 24px;
  line-height: 140%;
  padding: 0;
  margin: 0;
}

.eye_block img {
  margin-top: 2rem;
}

.eye_block h4 {
  color: #024453;
  font-size: 24px;
  font-weight: 700;
}

.info_row {
  background-color: #FFF3DC;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.info_row p {
  padding: 0;
  margin: 0;
  color: #02161A;
  font-weight: 700;
  font-size: 16px;
}

.sub_nav_dropdown .dropdown-menu {
  background-color: white;
  width: 96%;
}

.sub_nav_dropdown .dropdown-menu li a:hover {
  background-color: #024453;
  border-radius: 6px;
  color: white;
}

.sub_nav_dropdown .dropdown-menu {
  inset: unset !important;
  transform: unset !important;
}

.dropdown_wrapper {
  display: flex;
  justify-content: center;
}

.dropdown-item {
  color: #024453;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  padding: 8px;
}

.dropdown-item li .row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.download-cards {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-auto-rows: 1fr;
  grid-column-gap: 13px;
}

.download-card-inner {
  background-color: #024453;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.download-card-inner img.icon {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 24px;
}

.download-card-inner .top_icon {
  display: flex;
  justify-content: center;
}

.download-card-inner .top_icon img {
  margin: 0 auto;
}

.download-card-inner h5 {
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 300;
}

.download-card-inner button {
  background-color: #FCD603;
  border-radius: 5px;
  width: 100%;
  height: 42px;
  border: 1px solid #FCD603;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.download-card-inner button:hover {
  background-color: transparent;
}

.lang_row:hover {
  background-color: #EBF1F3;
  border-radius: 10px;
}

.lang_row .dropdown-item:hover {
  background-color: transparent;
}

.download-card-inner button p {
  color: #02161A;
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}

.download-card-inner button:hover p {
  color: white;
}

.download-card-inner button img {
  display: block;
}

.download-card-inner button:hover img {
  filter: brightness(0) invert(1);
}

.mobile-nav {
  position: fixed;
  top: 0px;
  left: 110vw;
  transition: all 0.3s ease;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background-image: url(../img/mob-nav-bg.png);
  background-size: cover;
  background-position: left 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

.mobile-nav .accordion-button::after {
  /*margin-left: 10px !important;*/
  margin-top: 1px !important;
  background-image: url(../img/arrow-up.svg);
  background-size: 24px 24px;
  margin-right: 20px;
}

.mobile-nav.active {
  left: 0vw;
  opacity: 1;
  transition: all 0.3s ease;
}

.mobile-nav-item, .mobile-nav-item a {
  color: #0F1D22;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav .accordion-item, .mobile-nav button {
  background-color: transparent !important;
  border: none;
  margin: 0;
  padding: 0;
  color: white;
  font-size: 30px;
  font-weight: 400;
}

.mobile-nav .accordion-button:not(.collapsed) {
  color: white;
}

.mobile-nav-bottom {
  padding-top: 20px;
}

.mobile-nav-bottom p, .mobile-nav-bottom h3 {
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.mobile-nav-bottom a {
  color: white !important;
}

.mobile-nav-top {
  margin-top: 30px;
  margin-bottom: 120px;
}

.mobile-nav-top a small {
  font-size: 16px;
  color: white;
}

.mobile-nav-top .accordion a {
  text-decoration: none;
}

.mobile-nav-top .accordion a:hover {
  text-decoration: underline !important;
}

.orange_row {
  background-color: #FBF0E5;
  border-radius: 10px;
}

.orange_row .img, .white_row .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orange_row .img img {
  max-width: 80px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.white_row .img img {
  width: 130px;
}

.orange_row .content, .white_row .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.orange_row .content p, .white_row .content p {
  padding: 0;
  margin: 0;
}

.white_row .content ul {
  margin: 0;
  padding: 0;
  margin-left: 20px;
}

.img_box {
  border: 1px solid #FBF0E5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.img_box_img {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img_box_text {
  height: 150px;
  background-color: #FBF0E5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img_box p {
  padding: 0;
  margin: 0;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.curve_left_box {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  width: 100%;
}

.imgTop img {
  width: 100%;
}

.curve_right_box {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.no_pad {
  padding: 0;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  left: 33px;
  top: 50px;
  z-index: -1;
  content: "";
  width: 1px;
  height: 83%;
  background-color: #D96B00;
}

.timeline_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.timeline_row p {
  padding: 0;
  margin: 0;
  margin-left: 20px;
}

.timeline_row .fimg-fluid {
  background-color: white;
}

.img_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.waves_bg {
  background-image: url(../img/top-waves.svg);
  background-repeat: no-repeat;
  background-position: center -3%;
  background-size: 100% auto;
}

.img_header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.img_header img {
  max-height: 82px;
}

.img_header h2 {
  padding: 0;
  margin: 0;
  padding-left: 10px;
}

.bordered_col {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.bordered_wrapper {
  border: 1px solid #DCE7EA;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}

.bordered_col .content {
  padding: 10px;
}

.bordered_col .img img {
  max-width: 82px;
  padding: 10px;
}

.bordered_col .content p {
  font-size: 22px;
  font-weight: 700;
}

.bordered_col .content button {
  max-width: 126px;
  background-color: #D96B00;
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #D96B00;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.bordered_col .content button:hover {
  background-color: white;
  color: #D96B00;
  transition: all 0.3s ease;
}

.bottom_img_box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bottom_img_box .imgTop img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.bottom_img_box .textContent {
  background-color: #D96B00;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-self: stretch;
  padding: 20px;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.bottom_img_box .textContent h3 {
  color: white;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}

.bottom_img_box .textContent p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.bottom_img_box .textContent button {
  background-color: white;
  border-radius: 8px;
  text-align: center;
  color: #18292E;
  font-weight: 700;
  border: 2px solid white;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.2s ease;
  max-width: 170px;
  height: 42px;
}

.bottom_img_box .textContent button:hover {
  background-color: transparent;
  color: white;
  transition: all 0.2s ease;
}

.light_orange_img_box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
}

.light_orange_img_box .imgTop {
  background-color: #FBF0E5;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  justify-content: center;
}

.light_orange_img_box .imgTop img {
  max-width: 182px;
  margin-top: 20px;
}

.light_orange_img_box .textContent {
  background-color: #FBF0E5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-self: stretch;
  padding: 10px;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.light_orange_img_box .textContent h3 {
  text-align: center;
  color: #D96B00;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
}

.light_orange_img_box .textContent p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.light_orange_img_box .textContent button {
  background-color: #D96B00;
  border-radius: 8px;
  text-align: center;
  color: white;
  font-weight: 700;
  border: 2px solid #D96B00;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.2s ease;
  max-width: 334px;
  height: 42px;
  margin: 0 auto;
}

.light_orange_img_box .textContent button:hover {
  background-color: transparent;
  color: #D96B00;
  transition: all 0.2s ease;
}

.navigating_accordion button {
  background-color: transparent !important;
  font-size: 24px;
  font-weight: 700;
  color: #F3A112;
  padding-right: 40px;
  border: none !important;
}

.navigating_accordion .accordion-item {
  border: 1px solid #DCE7EA;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.navigating_accordion button img {
  margin-right: 20px;
}

.navigating_accordion .accordion-button:not(.collapsed) {
  color: #F3A112;
}

.navigating_accordion ul, .navigating_accordion ul li {
  margin: 0;
  padding: 0;
}

.navigating_accordion ul {
  margin-left: 13%;
  padding-right: 40px;
}

.psp_groups {
  border: 1px solid #FBF0E5;
  border-radius: 10px;
}

.psp_groups h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #D96B00;
}

.green_callout .stacked_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.green_callout .stacked_content h2 {
  text-align: left;
  width: 100%;
  color: #0F1D22;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
}

.green_callout .stacked_content p {
  font-size: 16px;
  color: #0F1D22;
}

.green_callout .stacked_content button {
  border-radius: 8px;
  background-color: #D96B00;
  border: 2px solid #D96B00;
  padding: 10px;
  max-width: 150px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  align-self: flex-start;
}

.green_link {
  color: #1C9953;
}

.adverse_events {
  background-color: #FBF0E5;
  border-radius: 10px;
}

.adverse_events h3 {
  color: #D96B00;
  font-size: 22px;
  font-weight: 700;
}

.adverse_events p {
  color: #0F1D22;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.adverse_events p small {
  font-size: 14px;
}

.modal-dialog {
  max-width: 60%;
}

.modal-header img {
  margin-right: 20px;
}

.modal-header h5 {
  color: #D96B00;
  font-size: 34px;
  line-height: 36px;
  font-weight: 700;
}

.modal-body ul li p {
  padding: 0;
  margin: 0;
}

.white_bordered {
  border: 1px solid #DCE7EA;
}

.legal-page h1 {
  color: #312C2C;
  font-weight: 700;
}

.legal-page h2 {
  color: #312C2C;
  font-weight: 400;
}

.legal-page a {
  color: #1C1818;
}

/*# sourceMappingURL=style.css.map */
