@font-face {
  font-family: 'gothammedium';
  src: url("fonts/gothammedium-webfont.woff2") format("woff2"), url("fonts/gothammedium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'gothambold';
  src: url("fonts/gothambold-webfont.woff2") format("woff2"), url("fonts/gothambold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'gothambook';
  src: url("fonts/gothambook-webfont.woff2") format("woff2"), url("fonts/gothambook-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
b,strong {
  font-family: 'gothambold';
}
#topheader,
.alertbar {
  display: none !important;
}

.button.dark {
  background-color: #000;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* .preparing .prebox {
  margin: 0!important;
  padding: 0!important;
  border: 0!important;
} */

body {
  font-family: "gothambook", sans-serif;
  font-size: 16px;
  color: #404040;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}

h1 {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

p {
  font-size: 18px;
  line-height: 1.7;
}

.lightpink {
  background-color: #FFF0F1;
}

a {
  color: #404040;
  text-decoration: underline;
}

.button {
  border-radius: 57.5px;
  background: #E5ADB3;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem 2rem;
  display: inline-block;
  border: none;
  font-size: 16px;
  transition: all .3s ease-in-out;
  line-height: 1.3;
}

@media (hover: hover) {
  .button:hover {
    background-color: #fff;
    color: #E5ADB3;
    transition: all .3s ease-in-out;
  }
}

@media screen and (max-width: 767px) {
  .button {
    padding: 22px 33px;
    font-size: 16px;
  }
}

.logowrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 30px;
}

.logowrap img {
  max-width: 100%;
  display: block;
  height: auto;
}

.main-menu {
  background-color: #FDE0E1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu-header-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 45px;
}
#menu-header-menu li {
  flex: 1;
}

@media screen and (max-width: 980px) {
  #menu-header-menu {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap:  1rem;
  }
}

@media screen and (max-width: 767px) {
  #menu-header-menu {
    padding: 30px;
    gap: 30px;
  }
}

#menu-header-menu a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #menu-header-menu a {
    line-height: 1.4;
  }
}

#menu-header-menu a:hover {
  color: #000;
  text-decoration: underline;
}

.hero {
  background-image: url(center/hero.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .hero {
    background-position: 60% center;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background: none;
  }
}

/* .hero:after {
  content: "";
  background: linear-gradient(90deg, #fff 0, white 20%, white 30%, rgba(255, 255, 255, 0) 80%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
} */

.hero .cntwrap {
/*   padding: 140px 30px; */
  position: relative;
  z-index: 3;
  padding-left: 140px;
}
@media screen and (max-width: 980px) {
  .hero .cntwrap {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .hero .cntwrap {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hero .heromobile {
    background-image: url(images/hero.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 16/9;
  }
  @supports not (aspect-ratio: 1 / 1) {
    .hero .heromobile {
      padding-top: 56%;
    }
  }
}

.hero .cnt {
  background: #fff;
  border: 10px solid #eaeaea;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  padding: 50px;
  max-width: 50%;
}

@media screen and (max-width: 767px) {
  .hero .cnt {
    max-width: 100%;
    padding: 30px;
  }
}

.hero h1 {
  text-align: center;
  display: block;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 22px;
  }
}

.hero .txt {
  font-size: 18px;
  line-height: 1.5;
}

.sectionone {
  padding: 70px 30px;
  /* Slider */
}
@media screen and (max-width: 767px) {
  .sectionone {
    padding:  30px;
  }
}

.sectionone h2 {
  text-align: center;
  margin-bottom: 68px;
}

@media screen and (max-width: 980px) {
  .sectionone h2 {
    margin-bottom: 45px;
  }
}

.insidepage .sectionone .container {
  max-width: 1330px;
  margin: 0 auto;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 767px) {
 .insidepage .sectionone .container {
    padding:0;
  }
}

.sectionone .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.sectionone .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.sectionone .slick-list:focus {
  outline: none;
}

.sectionone .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.sectionone .slick-slider .slick-track,
.sectionone .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sectionone .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  width: 3330px;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}

.sectionone .slick-track:before,
.sectionone .slick-track:after {
  display: table;
  content: '';
}

.sectionone .slick-track:after {
  clear: both;
}

.sectionone .slick-loading .slick-track {
  visibility: hidden;
}

.sectionone .slick-slide {
  display: none;
  float: left;
  height: unset;
  min-height: 1px;
}

.sectionone [dir='rtl'] .slick-slide {
  float: right;
}

.sectionone .slick-slide img {
  display: block;
}

.sectionone .slick-slide.slick-loading img {
  display: none;
}

.sectionone .slick-slide.dragging img {
  pointer-events: none;
}

.sectionone .slick-initialized .slick-slide {
  display: block;
}

.sectionone .slick-loading .slick-slide {
  visibility: hidden;
}

.sectionone .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  background-color: transparent;
  border: none;
}
.sectionone .slick-arrow.slick-hidden {
  display: none;
}

.sectionone .slick-prev.slick-arrow {
  position: absolute;
  left: calc(-52px / 2);
  top: 35%;
  z-index: 3;
  font-size: 0;

}

@media screen and (min-width: 1400px) {
  .sectionone .slick-prev.slick-arrow {
    left: -52px;
  }
}

.sectionone .slick-next.slick-arrow {
  position: absolute;
  right: calc(-52px / 2);
  top: 50%;
  z-index: 3;
  font-size: 0;
  top: 35%;

}

@media screen and (min-width: 1400px) {
  .sectionone .slick-next.slick-arrow {
    right: -52px;
  }
}

@media screen and (max-width: 980px) {
  .sectionone .slick-arrow {
    max-width: 40px;
  }
}

@media screen and (max-width: 767px) {
  .sectionone .slick-arrow {
    max-width: 30px;
  }
  .sectionone .slick-arrow img {
    max-width: 100%;
  }
}

.sectionone .carolcnt {
  display: flex;
  align-items: center;
  padding: 30px;
}

@media screen and (max-width: 980px) {
  .sectionone .carolcnt {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .sectionone .carolcnt {
    padding: 0;
  }
}

.sectionone .carolcnt .cimg {
  min-width: 315px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 980px) {
  .sectionone .carolcnt .cimg {
    min-width: unset;
    display: block;
    max-width: 50%;
    position: relative;
    top: 45px;
    margin-left: auto;
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .sectionone .carolcnt .cimg {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .sectionone .carolcnt .cimg:after {
    content: "";
    border: 5px solid #E5ADB3;
    max-width: 100%;
    max-height: 100%;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.sectionone .carolcnt img {
  border: 15px solid #eaeaea;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sectionone .carolcnt img {
    max-width: 100%;
    height: auto;
    border: none;
    box-shadow: unset;
  }
}

.sectionone .ctxt {
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  margin-left: -90px;
}

@media screen and (max-width: 980px) {
  .sectionone .ctxt {
    margin-left: 0;
  }
}

@media screen and (max-width: 980px) {
  .sectionone .ctxt {
    box-shadow: unset;
  }
}

.sectionone .ctxt .ctxtwrap {
  padding-top: 105px;
  padding-bottom: 105px;
  padding-left: 180px;
  padding-right: 90px;
}

@media screen and (max-width: 980px) {
  .sectionone .ctxt .ctxtwrap {
    padding: 60px 30px;
  }
}

.sectionone h3 {
  margin-bottom: 48px;
  line-height: 1.3;
}

.sectionone a {
  margin-top: 1em;
  color: #E5ADB3;
  display: block;
}

.preparing {
  padding: 90px 90px;
}

@media screen and (max-width: 980px) {
  .preparing {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .preparing {
    padding: 1rem;
  }
}

.preparing .prebox {
  border: 4px solid #eaeaea;
  padding: 100px;
  margin-bottom: 90px;
}
.preparing .prebox:last-of-type {
  margin-bottom: 0;
}
 @media screen and (max-width: 1300px) {
  .preparing .prebox {
    padding: 80px;
  }

}

@media screen and (max-width: 980px) {
  .preparing .prebox {
    padding: 60px 45px;
  }
}

@media screen and (max-width: 767px) {
  .preparing .prebox {
    padding: 30px;
  }
}

.preparing .precnt {
  display: flex;
  gap: 60px;
}
.preparing .btnwrap {
  display: flex;
  gap:  1rem;
  flex-wrap: wrap
}
.btnwrap p {
  display: flex;
  gap:  1rem;

}

@media screen and (max-width: 980px) {
  .preparing .precnt {
    flex-wrap: wrap;
  }
  .preparing .btnwrap {
   flex-wrap: wrap;

  }
  .btnwrap p {
     flex-wrap: wrap;
  }
}

.preparing .precnt h2 {
  text-align: left;
  color: #2e2e2e;
  margin-bottom: 30px;
}

/* .preparing .precnt .button {
  margin-top: 109px;
} */

@media screen and (max-width: 767px) {
  .preparing .precnt .button {
    margin-top: 60px;
  }
}

.preparing .preicon {
  min-width: 338px;
}
.preparing .preicon img{
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 980px) {
  .preparing .preicon {
    min-width: unset;
    display: flex;
    justify-content: center;
    order: -1;
    width: 100%;
  }
  .preparing .preicon img {
    max-width: 33vw;
  }
}

.halfblock {
  margin-bottom: 80px;
  color: #fff;
}

.halfblock .containerfull {
  display: flex;
}

@media screen and (max-width: 980px) {
  .halfblock .containerfull {
    flex-wrap: wrap;
  }
}

.halfblock .cntbox {
  width: 50%;
  background-color: #E5ADB3;
  color: #fff;
}

@media screen and (max-width: 980px) {
  .halfblock .cntbox {
    width: 100%;
  }
}

.halfblock .cntimg {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 980px) {
  .halfblock .cntimg {
    width: 100%;
  }
}

.halfblock .cntimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.halfblock .cntwrap {
  color: inherit;
  padding: 130px;
}

@media screen and (max-width: 767px) {
  .halfblock .cntwrap {
    padding: 30px;
  }
}

.halfblock h2 {
  margin-bottom: 80px;
  color: inherit;
}

@media screen and (max-width: 767px) {
  .halfblock h2 {
    margin-bottom: 30px;
  }
}

.halfblock .button {
  box-shadow: unset;
  border: 4px solid #fff;
  margin-top: 80px;
}

.btp {
  text-align: center;
  display: block;
  font-size: 18px;
  text-decoration-color: #FDE0E1;
  text-decoration-thickness: 3px;
  text-underline-offset: .5em;
  margin-bottom: 60px;
}

footer {
  background: #333333;
  color: #fff;
  padding: 90px;
  padding-bottom: 15px;
}

footer p {
  font-size: 14px;
}

footer a {
  color: #fff;
}

footer .birdfooterwrapper {
  margin: 1em auto;
  text-align: center;
}

footer .birdfooterwrapper p {
  margin-bottom: 5px;
}

footer .birdfooterwrapper a {
  text-decoration: none;
}

footer .birdfooterwrapper .stars {
  width: 15px;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}

footer .names {
  display: flex;
  justify-content: space-between;
}

footer .names a {
  text-decoration: none;
}

.insidepage .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
}

.insidepage .container.checkerform {
  padding-top: 0;
}

.checker h2 {
  text-align: center;
  margin-bottom: 40px;
}

.checker .lead {
  text-align: center;
}

.frm_style_formidable-style.with_frm_style .frm_rootline.frm_show_lines::before {
  display: none;
}

#form_checker .frm_rootline_group {
  margin-bottom: 0;
}

#form_checker .frm_html_container {
  display: none;
}

#form_checker .frm_section_heading {
  margin-top: 0;
  padding: 40px;
  border: 1px solid #FCD0D0;
  border-top: unset;
  border-bottom: unset;
}

#form_checker .vertical_radio:last-of-type:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  background-color: #FCD0D0;
  height: 1px;
  margin-top: 30px;
}

#form_checker .vertical_radio:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  background-color: #FCD0D0;
  height: 1px;
  margin-bottom: 30px;
}

#form_checker .frm_checkbox {
  margin-top: 15px;
  margin-bottom: 15px;
}

#form_checker .frm_primary_label {
  font-size: 24px;
}

#form_checker .frm_checkbox label {
  font-size: 20px;
}

#form_checker .frm_submit {
  display: flex;
  justify-content: space-between;
  border: 1px solid #FCD0D0;
  border-top: unset;
  padding: 40px;
  padding-top: 0;
}

#form_checker .frm_submit button {
  background-color: #FDE0E1;
  color: #fff;
  border: none;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #333;
  border-radius: 28.5px;
  padding: 21px 65px;
}

#form_checker .frm_rootline {
  list-style: none;
  margin: 0;
  width: 100%;
  display: flex;
  counter-reset: list-number;
}

#form_checker .frm_rootline li {
  border: 1px solid #FCD0D0;
  background-color: #FDE0E1;
  border-bottom: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  min-height: 220px;
  border-right: 1px solid #fff;
}

#form_checker .frm_rootline li.frm_current_page {
  background-color: #fff;
  min-height: 230px;
  margin-top: -10px;
  border-right-color: #FCD0D0;
  border-bottom: 1px solid #fff;
}

#form_checker .frm_rootline input[type="button"] {
  background: none;
  border: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  z-index: 3;
  border-radius: unset;
  font-size: 0;
}

#form_checker .frm_rootline .frm_rootline_title {
  font-size: 25px;
  color: #333;
  position: absolute;
  display: block;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 60px;
}

#form_checker .frm_rootline .frm_rootline_title:before {
  counter-increment: list-number;
  content: counter(list-number);
  display: block;
  font-size: 30px;
  color: #EDCFCF;
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.picker h2 {
  text-align: center;
  margin-bottom: 30px;
}
.insidepage .picker .container {
  padding: 0;
}
.picker p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 980px) {
  .picker p {
    margin-bottom: 20px;
  }
}

.picker .tabtop {
  list-style: none;
  display: flex;
}
@media screen and (max-width: 767px) {
  .picker .tabtop {
    flex-wrap: wrap;
  }
}

.picker .tabtop li {
  width: calc(100% / 4);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fcd0d0;
  background-color: #FFEFEF;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .picker .tabtop li {
   width: calc(100% / 2);
  }
}

.picker .tabtop li:nth-child(3), .picker .tabtop li:nth-child(2), .picker .tabtop li:nth-child(1) {
  border-right: 1px solid transparent;
}

.picker .tabtop li.is-active {
  background-color: #fff;
  border-right: 1px solid #fcd0d0;
  margin-top: -10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .picker .tabtop li.is-active {
    margin-top: 0;
  }
}

.picker .tabtop li span {
  display: block;
  font-size: 20px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .picker .tabtop li span {
    font-size: 13px;
    color: #000;
  }
}

.picker .tabtop li span:first-of-type {
  color: #FDE0E1;
  font-size: 30px;
  margin-bottom: 30px;
  display: block;
  width: 100%;
}

.picker button {
  width: unset;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
}

.tabbottom {
  padding: 0 30px;
  border: 1px solid #FDE0E1;
  border-top: 0;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tabbottom {
    padding: 1rem;
  }
}

.tabbottom .heading {
  text-align: left;
  font-size: 24px;
  padding-top: 2em;
}
@media screen and (max-width: 980px) {
  .tabbottom .heading {
    font-size: 1rem;
  }
}

.tabbottom .heading:before {
  content: "";
  background-color: #fcd0d0;
  display: block;
  width: 100%;
  height: 1px;
  position: relative;
  top: -1em;
}

.tabbottom label {
  font-size: 20px;
  display: grid;
  grid-template-columns: 15px 1fr;
  grid-gap: 1em;
}
@media screen and (max-width: 980px) {
  .tabbottom label {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.tabbottom .drugas {
  display: none;
}

.tabbottom .drugas.is-active {
  display: block;
}

.continuebutton {
  display: flex;
  justify-content: flex-end;
  margin: 30px auto;
  padding-top: 30px;
  border-top: 1px solid #fcd0d0;
}

.continuebutton button {
  border-radius: 28.5px;
  background: #fde0e0;
  cursor: pointer;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  color: #333;
  max-width: 220px;
  padding: 20px 3rem;
}
@media screen and (max-width: 767px) {
 .continuebutton button {
  font-size: 1rem;
  padding: 10px 16px;
 }
}

#continue {
  display: inline-block;
}

#finish {
  display: none;
}

#back {
  margin-right: auto;
  background: #fff;
  color: #FDE0E1;
  border: 1px solid #FDE0E1;
  color: #000;
}


.reason {
  display: none;
}

.instruction {
  display: none;
}

#complete {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px;
  display: none;
}
@media screen and (max-width: 980px) {
 #complete {
   padding: 1rem 0;
  }
}

#complete #message {
  text-align: center;
}

#complete #message img {
  margin: 15px auto;
}
@media screen and (max-width: 767px) {
  #complete #message img  {
    max-width: 100px;
  }
}

#complete * {
  display: block;
}

#directions {
  padding-top: 2em;
  padding-bottom: 2em;
}

#directions h2:not(:first-of-type) {
  display: none;
}

#directions .tabletop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  #directions .tabletop {
    display: block;
  }
}



#directions .tabletop:not(:first-of-type) {
  margin-top: 2em;
}

#directions .tabletop h2 {
  text-align: left;
  margin-bottom: 0;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  #directions .tabletop h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

#directions .tabletop span {
  font-weight: bold;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  #directions .tabletop span {
    font-size: 12px;
    margin-bottom: 10px;
    padding-left: 5px;
  }
}

#directions .lineitem {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #cacaca;
}

#directions .lineitem.cnt-three {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  #directions .lineitem.cnt-three {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 1rem;
  }
}

#directions .lineitem * {
  padding: 1em;
}
@media screen and (max-width: 980px) {
  #directions .lineitem * {
   font-size: .87rem;
  }
}
@media screen and (max-width: 767px) {
  .instruction {
    border-block:  1px solid #cacaca;
  }
}

#directions .lineitem .reason {
  border-left: 1px solid #cacaca;
}
@media screen and (max-width: 767px) {
  #directions .lineitem .reason {
    border: unset;

  }
}

#directions .lineitem span {
  display: block;
  line-height: 1.54;
  border-right: 1px solid #cacaca;
}
@media screen and (max-width: 767px) {
  #directions .lineitem span { border: unset;}
}

#directions .lineitem span:first-of-type {
  font-weight: bold;
}

#complete .btwrp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-width: 100%;
  margin-bottom: 2em;
}

#complete #printer {
  cursor: pointer;
  border-bottom: 2px solid #FDE0E1;
  padding: 1em;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  max-width: 420px;
  gap: 1em;
}

#complete #printer span {
  display: block;
  font-weight: bold;
  line-height: 1.3;
}

#complete #printer img {
  align-self: center;
  max-width: 50px;
  display: inline-block;
}
.picker button.resetall {
  background-color: #fde0e0;
  max-width: 120px;
  margin: 0 auto;
  padding: 10px;
  margin-top: 4rem;
  border-radius: 10px;
  padding: 1rem 2rem;
  height: auto;
}
.hidepicker {
  display: none;
}

.fullbgimg {
  background-size: cover;
  aspect-ratio: 16/4;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullbgimg .cnt {
  background-color: #fff;
  border: 7px solid #eaeaea;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  max-width: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px;
}
.fullbgimg .cnt p{
  margin-bottom: 0;
}
  .fullbgimg .mbimage {
    display: none;
  }



@media screen and (max-width: 980px) {
  .fullbgimg {
    background-image: unset!important;
    aspect-ratio: unset;
    display: block;
  }
  .fullbgimg .cnt {
    max-width: 100%;
    padding: 1rem;
  }
  .fullbgimg .mbimage {
    display: block;
    aspect-ratio: 16/4;
  }
    .fullbgimg .mbimage img {
      display: block;
      max-width: 100%;
    }
}

          .halfblock-r {
            display: flex;
            padding-block: 3rem 0;
            gap: 1rem;
            flex-wrap: wrap;
          }
          .halfblock-r .imgholder,
          .halfblock-r .cnt {
            width: 50%;
            width: 100%;
          }
          .halfblock-r .cnt {
            background: #fff;
            padding:4rem;
            outline: 1px solid #eeeeee;
            outline-offset: 0;
            margin-right: 1rem;
          }
          @media screen and (max-width: 1300px) {
                .halfblock-r .cnt {
                  padding:2rem;
                }
          }
          .halfblock-r .cnt p {
            color: #000;
          }
          .halfblock-r .imgholder img {
            object-fit: cover;
            width: 100%;
            height: 100%;
          }
          .halfblock-r img.alignleft {
            float: left;
            margin-block: 0 1rem;
            margin-inline: 0 2rem;
          }
          @media screen and (max-width: 767px) {
            .halfblock-r img.alignleft {
              float: unset;
              margin: 0 auto;
              display: block
            }
          }
          .s_center {
            aspect-ratio: 1335/334;
            position: relative;
            display: flex;
            align-items: center;

          }
          .s_center .cnt{
              width: 50%;
              position: relative;
              z-index: 3;
              color: #fff;
              padding-inline: 5vw;
          }
          .s_center .cnt *{
            font-size: 30px;
            line-height: 1.3;
            margin-bottom: 0;
          }
          .s_center img{
            position: absolute;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
          @media screen and (max-width: 767px) {
            .s_center .cnt{
                width: 100%;
                color: #fff;
                padding-inline: 1rem;
            }
            .s_center .cnt *{
              font-size: 1rem;
              line-height: 1.3;
            }
          }

          .discharge {
            padding-inline: 90px;
            padding-bottom: 30px;
          }
          .discharge ul {
            list-style: none;
            columns: 3;
          }
          .discharge h2 {
            margin-bottom: 1rem;
          }
          .discharge .subheading {
            margin-bottom: 4rem;
          }
          .discharge ul a {
            text-decoration-color: #e5adb3;
            text-underline-offset: .5rem;
            font-size: 0.9rem;
          }
          .discharge li {
            padding-bottom: 2rem;
            line-height: 1.5;
          }
          .discharge ul a:hover {
            color: #000;
          }
          @media screen and (max-width: 767px) {
            .discharge {
              padding-inline: 30px;

            }
            .discharge ul {
              list-style: none;
              columns: 1;
            }
            .discharge li {
              padding-bottom: 2rem;
               line-height: 2;
            }
            .discharge .subheading {
              margin-bottom: 3rem;
            }
          }

          @media screen and (max-width: 767px) {
             .fullbgimg .cnt {
              flex-wrap: wrap;
             }
          }


          @media screen and (max-width: 767px) {
            .halfblock-r p > img.alignleft {
              display: none;
            }
          }
/*# sourceMappingURL=center.css.map */