/* Outtcome starts */

.outcomes {
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.parallax-bg {
  width: 100%;
  height: 100%;
  will-change: transform;
  position: relative;
}

.parallax-item {
	overflow: hidden;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: -0.063rem;
  left: 0;
  background: linear-gradient(0deg, rgba(247, 249, 255, 0) 0, #f7f9ff 60%);
  opacity: 1;
  width: 100%;
  height: 18rem;
  z-index: 99;
}

.parallax-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(117.56deg, #004e97 0.68%, #ad3673 97.25%);
  opacity: 1;
  mix-blend-mode: overlay;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
}

.parallax-bg .wave2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.floating_title {
  position: absolute;
  top: 8rem;
  left: 0;
}

.solution_in_action_section {
  background: #000;
  position: relative;
  padding-bottom: 4rem;
}

.solution_section .selected-value {
	color: #000000;
}

.solution_in_action_section .content_block_ {
  text-align: left;
}

.solution_in_action_section .content_block_ .eyebrow {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  display: flex;
  /* // */
  align-items: center;
}

.solution_in_action_section .content_block_ .eyebrow svg {
  margin-right: 0.5rem;
  width: 1.125rem;
  height: 1.125rem;
}

.solution_in_action_section .content_block_ .title {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: #ffffff;
}

.solution_in_action_section .content_block_ p {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  width: 50%;
}

.solution_in_action_section .action_cta {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #004e97;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  width: fit-content;
  text-decoration: none;
  border: 0.063rem solid transparent;
  transition: all 0.3s ease-in-out;
}

.solution_in_action_section .action_cta svg {
  transform: translateX(0%) scale(-1);
  margin-left: 0.375rem;
  transition: all 0.3s ease-in-out;
  width: 0.625rem;
  height: auto;
}

.solution_in_action_section .action_cta:hover {
  background: transparent;
  color: #ffffff;
  border: 0.063rem solid #ffffff;
  transition: all 0.3s ease-in-out;
}

.solution_in_action_section .action_cta:hover svg {
  transform: translateX(50%) scale(-1);
  transition: all 0.3s ease-in-out;
}

.solution_in_action_section .action_cta:hover svg g path {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 18.75rem;
  max-width: 100%;
}

.select-button {
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5625rem 1rem;
  border: 0.063rem solid #caced1;
  border-radius: 0;
  background-color: white;
  cursor: pointer;
  font-family: "halyard-display", sans-serif !important;
}

.select-button .arrow-down {
  width: 2rem;
  height: 2rem;
}

.select-button .arrow-down svg {
  width: 100%;
  height: 100%;
}

.arrow {
  border-left: 0.313rem solid transparent;
  border-right: 0.313rem solid transparent;
  border-top: 0.375rem solid #000;
  transition: transform ease-in-out 0.3s;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: none;
  /* border-radius: 0.25rem; */
  background-color: white;
  list-style: none;
  margin: 0.625rem 0 0;
  box-shadow: 0 0.625rem 1.563rem rgba(0, 0, 0, 0.2);
  max-height: 12.5rem;
  /*max-height: 20rem;*/
  overflow-y: auto;
  z-index: 2;
}

.select-dropdown::-webkit-scrollbar {
  width: 0.438rem;
}

.select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1.563rem;
}

.select-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 1.563rem;
}

/* // */
.select-dropdown li {
  padding: 0.5625rem 1rem;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  justify-content: space-between;
  border-bottom: 0.063rem solid #ececec;
  font-size: 1rem;
  font-weight: 300;
}

.select-dropdown li::after {
  content: "";
  background: url(../../../images/check.svg);
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}

/* Highlight the selected option */
.select-dropdown li.selected {
  background-color: #004e97;
  color: #ffffff;
  border-color: #004e97;
}

.select-dropdown li.selected::after {
  opacity: 1;
}

.select-dropdown li.selected:hover,
.select-dropdown li.selected:focus {
  background-color: #004e97;
  color: #ffffff;
  border-color: #004e97;
}

.select-dropdown li:hover,
.select-dropdown li:focus {
  background-color: #d9e4ef;
  border-color: #d9e4ef;
}

.select-dropdown.hidden {
  display: none;
}

/* // */

.select-button[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.solution_in_action_section .solution_option_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p {
  padding: 1.125rem 2.675rem 1.125rem 1rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 132%;
  letter-spacing: 0;
  color: #ffffff;
  background: #f3eaec1a;
  border: 1px solid #0000001a;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}

.solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p::after {
  content: "";
  background-image: url("../../../images/white-arrow.svg");
  position: absolute;
  top: 0;
  width: 0.625rem;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translateX(0px);
  transition: all 0.5s;
  background-size: contain;
}

.solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p:hover {
  background: #004e97;
}

.solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p:hover::after {
  opacity: 1;
  transform: translateX(1rem);
}

.solution_in_action_container {
  position: absolute;
  z-index: 900;
  top: 24.813rem;
  left: 0;
  padding: 0 4rem 7.75rem 4rem;
  width: 100%;
}

.solution_in_action_section .tab_select {
  margin: 1rem 0 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottomLayer {
  width: 100%;
  height: 60%;
  /*background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 78, 151, 0.5) 60%,
      rgba(255, 255, 255, 0) 100%);*/
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 35%, rgba(0, 78, 151, 0.5) 60%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.floating_title {
  width: 100rem;
  left: -0.5rem;
}

.floating_title .desktop_titile {
  display: block;
}

.floating_title svg {
  width: 100%;
  height: 100%;
}

.select-button .arrow-down svg path {
  fill: #000000;
}

.floating_title .mobile_titile {
  display: none;
}

.select-dropdown li.dropdown_header {
  display: none;
}

#dropdown-button .arrow-down {
  transition: all 0.5s;
}

#dropdown-button:hover {
	background: #FFFFFF !important;
	border-color: #FFFFFF !important;
}

#dropdown-button.active .arrow-down {
  transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
  /* // */

  .floating_title {
    top: 11.5rem;
    left: 1.5rem;
    width: 60rem;
  }
  .solution_in_action_section .content_block_ p {
	  width: 100%;
	}
}

@media screen and (max-width: 768px) {
  html {
    font-size: unset;
  }

  .select-button {
    padding: 0.75rem 1rem;
  }

  .select-button .arrow-down {
    width: 1.5rem;
    height: 1.5rem;
  }

  .parallax-bg::before {
    background: linear-gradient(0deg, rgba(247, 249, 255, 0) 0, #f7f9ff 85%);
    /* // */
  }

  .floating_title .desktop_titile {
    display: none;
  }

  .floating_title .mobile_titile {
    display: block;
  }

  .solution_in_action_container {
    top: 16.938rem;
    padding: 0 1rem;
  }

  .solution_in_action_section .content_block_ .para {
    width: 100%;
    font-size: 1rem;
  }

  .solution_in_action_section .content_block_ .eyebrow {
    font-size: 1rem;
  }

  .solution_in_action_section .content_block_ .title {
    font-size: 1.875rem;
    line-height: 100%;
  }

  .solution_in_action_section .tab_select {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .custom-select {
    width: 100%;
  }

  .solution_in_action_section .solution_option_wrapper {
    flex-direction: column;
    gap: 0;
  }

  .solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p {
    text-align: left;
    background: none !important;
	/*background: rgba(255, 255, 255, 0.15);*/
    border: none;
    padding-left: 0;
    font-size: 1rem;
  }

  .solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p::after {
    opacity: 1;
    right: 0;
    width: 0.6rem;
  }

  .solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p:hover {
    background: transparent;
  }

  .solution_in_action_section .solution_option_wrapper .solutions_card .ribbon_content p:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  .solution_in_action_section {
    padding-bottom: 1rem;
  }

  .bottomLayer {
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 1) 53%,
        rgba(0, 78, 151, 0.9) 88%,
        rgba(255, 255, 255, 0) 100%);
  }

  .floating_title {
    width: 100%;
    top: 6rem;
    z-index: 3;
    left: 1rem;
  }

  .parallax-bg::before {
    z-index: 2;
  }

  .parallax-bg::after {
    z-index: 5;
    background: linear-gradient(33deg, #004e97 44.68%, #ad3673 133.25% 0.25%);
  }

  .parallax-bg .wave2 {
    z-index: 4;
  }

  .floating_title .mobile_titile svg {
    height: unset;
    width: unset;
  }

  .floating_title .mobile_titile {
    float: left;
  }

  .parallax-bg .wave2,
  .parallax-bg .wave1 {
    object-fit: cover;
    object-position: center -7rem;
  }

  .dropdowContainer.hidden {
    display: none;
  }

  .dropdowContainer {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
  }

  .dropdowContainer.show {
    background: #00000099;
  }

  .select-dropdown {
    /* min-height: 80%;
    height: 100%; */
    min-height: fit-content;
    height: fit-content;
    width: 100%;
    left: 0;
    /* top: 22%; */
    top: unset;
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
    transition: all 0.8s;
    transform: translateY(100%);
  }

  .dropdowContainer.show .select-dropdown {
    transform: translateY(0);
  }

  .select-dropdown .overFlow {
    padding-bottom: 2rem;
  }

  /* // */

  .select-dropdown li {
    border-bottom: 1px solid #ececec;
	padding-right: 0.6rem !important;
    /* margin-bottom: 0.5rem; */
  }

  .select-dropdown li.dropdown_header {
    font-weight: 300;
    font-size: 1rem;
    padding: 56px 0.6rem 14px 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #b2b2b2;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 99999;
  }
  .select-dropdown li.dropdown_header span:last-child {
	  width: 1.5rem;
  }

  .select-dropdown li.dropdown_header::after {
    content: "";
    height: 3px;
    width: 20%;
    background: #b2b2b2;
    position: absolute;
    top: 16px;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
  }

  /* // */

  .select-dropdown li.dropdown_header svg {
    width: 14px;
    height: 14px;
  }

  body.hidden {
    overflow: hidden;
  }

  body.hidden .outcomes {
    overflow: unset;
  }

  body.hidden .parallax-bg {
    overflow: hidden;
  }
}

@media screen and (max-width: 600px) {

  .parallax-bg .wave2,
  .parallax-bg .wave1 {
    object-position: center -8rem;
  }
}

@media screen and (max-width: 500px) {

  .parallax-bg .wave2,
  .parallax-bg .wave1 {
    object-position: center -9.8rem;
  }
}

@media screen and (max-width: 420px) {

  .parallax-bg .wave2,
  .parallax-bg .wave1 {
    object-position: center -10.8rem;
  }
}

@media screen and (max-width: 370px) {

  .parallax-bg .wave2,
  .parallax-bg .wave1 {
    object-position: center -11.8rem;
  }
}

/* Outtcome ends */