*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  width: 100vw;
  overflow-x: hidden;
}
html:has(.modal--open) {
  overflow: hidden;
}
@media (max-width: 767px) {
  html {
    font-size: 5.5555555556vw;
  }
}
@media (min-width: 768px) and (max-width: 1307px) {
  html {
    font-size: 1.5302218822vw;
  }
}

body {
  position: relative;
  padding: 0;
  overflow-x: clip;
  background-color: #f48101;
  color: #fff;
}
@media (min-width: 768px) {
  body::before, body:after {
    position: fixed;
    z-index: -1;
    top: 0;
    display: block;
    content: "";
  }
  body::before {
    left: 0;
    width: 28.75rem;
    height: 54rem;
    background: url("../img/bg-left.png") no-repeat top center/100% transparent;
    transform: translate(-14.4rem, -1.15rem);
  }
  body::after {
    right: 0;
    width: 28.75rem;
    height: 54rem;
    background: url("../img/bg-right.png") no-repeat top center/100% transparent;
    transform: translate(6.25rem, 19rem);
  }
}

input {
  outline: none;
  box-shadow: none;
}
input:focus, input:hover {
  outline: none;
}

body {
  font-weight: 400;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

b {
  font-weight: 700;
}

button {
  outline: none;
  box-shadow: none;
  border: none;
}

fieldset {
  border: transparent;
}

.page__title {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .page__title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .section__header {
    display: contents;
  }
}
@media (min-width: 768px) {
  .section__header {
    width: 100%;
    margin: 6.5rem 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.section__title {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__readmore {
  font-weight: 900;
  line-height: 120%;
  text-decoration-line: underline;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .section__readmore {
    margin-top: 2rem;
    order: 3;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .section__readmore {
    font-size: 1.25rem;
  }
  .section__readmore:hover, .section__readmore:focus {
    color: #e7dc40;
  }
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 1307px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .wrap {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .main {
    min-height: 32rem;
  }
}

.field-error {
  border: 1px solid #ff0000;
}

.message-success {
  display: none;
}
.message-success--show {
  display: block;
}

.btn {
  cursor: pointer;
  outline: none;
}
.btn--signin {
  display: flex;
  align-items: center;
  gap: 0 0.7rem;
  background-color: transparent;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .btn--signin {
    position: relative;
    z-index: 10;
    margin-left: auto;
  }
}
.btn--signin svg {
  width: 1.7rem;
  height: 1.7rem;
}
@media (max-width: 767px) {
  .btn--signin span {
    display: none;
  }
}
@media (min-width: 768px) {
  .btn--signin span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
  }
}
@media (max-width: 767px) {
  .btn--burger {
    position: relative;
    z-index: 10;
    margin-left: 0.5rem;
    display: flex;
    width: 1.7rem;
    height: 1.7rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem 0;
    border-radius: 0.5rem;
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .btn--burger {
    display: none;
  }
}
.btn--burger span, .btn--burger::before, .btn--burger::after {
  width: 0.9rem;
  height: 0.1rem;
  display: flex;
  background-color: #f48101;
  content: "";
}
.btn--burger span {
  opacity: 1;
  transition: 0.1s opacity;
}
.btn--burger::before, .btn--burger:after {
  transform: rotate(0);
}
.btn--burger-open span {
  opacity: 0;
}
.btn--burger-open::before {
  transform: rotate(45deg) translate(0.23rem, 0.15rem);
}
.btn--burger-open::after {
  transform: rotate(-45deg) translate(0.18rem, -0.15rem);
}
.btn--orange {
  width: 100%;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fd9300;
  color: #fff;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 3px 10px 4px 0px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .btn--orange {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .btn--orange {
    font-size: 0.8rem;
  }
  .btn--orange:hover, .btn--orange:focus {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0 0 0 0px rgba(255, 255, 255, 0.5) inset;
  }
}
.btn--link {
  font-weight: 900;
  line-height: normal;
  text-decoration: underline;
  text-transform: uppercase;
  color: #fd9300;
  background-color: transparent;
  text-align: left;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .btn--link {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .btn--link {
    font-size: 1rem;
  }
  .btn--link:hover, .btn--link:focus {
    color: #f48101;
  }
}

input {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  border: transparent;
  font-family: inherit;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
  transition: 0.2s border;
}
@media (max-width: 767px) {
  input {
    font-size: 0.7;
  }
}
@media (min-width: 768px) {
  input {
    font-size: 0.75rem;
  }
}
input::placeholder {
  color: #fff;
}
input:focus {
  border-color: #f48101;
}
input:focus:invalid {
  border-color: #ff0000;
}

.logo {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
}
.logo img {
  height: auto;
}
@media (max-width: 767px) {
  .logo img {
    max-width: 2.2rem;
  }
}
@media (min-width: 768px) {
  .logo img {
    max-width: 5.3rem;
  }
}
@media (max-width: 767px) {
  .logo svg {
    width: 3.35rem;
    height: 1.3rem;
  }
}
@media (min-width: 768px) {
  .logo svg {
    width: 5.525rem;
    height: 2.35rem;
  }
}
.logo--dark svg g:first-child path {
  fill: #afe6ff;
}
.logo--dark svg g:nth-child(2) path {
  fill: #039de2;
}

.modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 0;
  max-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(30, 30, 30, 0.1);
  opacity: 0;
  transition: 0.01s max-width 0.6s, 0.01s max-height 0.6s, opacity 0.3s;
  backdrop-filter: blur(0.5rem);
}
.modal--open {
  max-width: 100vw;
  max-height: 100vh;
  opacity: 1;
  transition: max-width 0.01s, max-height 0.01s, opacity 0.3s;
}
.modal__box {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .modal__box {
    width: calc(100% - 2rem);
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .modal__box {
    width: 30rem;
    padding: 2rem 1rem 2.5rem;
  }
}
.modal__close {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  outline: none;
  background-color: #fd9300;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s opacity;
}
@media (max-width: 767px) {
  .modal__close {
    right: 0.5rem;
    top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .modal__close {
    right: 1rem;
    top: 1rem;
  }
}
.modal__close svg {
  width: 0.63rem;
  height: 0.63rem;
}
.modal__close:hover, .modal__close:focus {
  opacity: 0.5;
}
.modal__title {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #fd9300;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 2rem;
  }
}
.modal__desc {
  margin-bottom: 0.7rem;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  color: #fd9300;
}
@media (max-width: 767px) {
  .modal__desc {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .modal__desc {
    max-width: 20rem;
    font-size: 1rem;
  }
}
.modal .btn--orange {
  margin-top: 1.5rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
@media (max-width: 767px) {
  .modal__form {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .modal__form {
    margin-top: 1.5rem;
  }
}
.modal__form form {
  display: contents;
}
.modal__form input {
  padding: 1rem 1.2rem;
  background-color: rgba(244, 129, 1, 0.1);
  color: #f48101;
}
.modal__form input::placeholder {
  color: #f48101;
}
.modal__form .btn {
  margin-top: 0.5rem;
}
.modal__form .btn--link {
  font-weight: 700;
}
@media (min-width: 768px) {
  .modal__form .btn--link {
    font-size: 0.75rem;
  }
}
.modal .message-success {
  color: #f48101;
  font-weight: 600;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.rating__star {
  width: 1.1rem;
  height: 1.1rem;
  background: url("../img/star-fill.svg") no-repeat center center/100% transparent;
}

.main-nav {
  display: flex;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .main-nav {
    width: max-content;
    margin: 5.5rem 0 4.5rem;
    padding: 1rem 0.5rem;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem 0;
    background-color: #fd9300;
  }
}
@media (min-width: 768px) {
  .main-nav {
    width: max-content;
    margin: 0 auto;
    padding: 0.5rem;
    align-items: center;
    gap: 0 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .main-nav__box {
    position: absolute;
    z-index: 10;
    top: -1rem;
    left: 0;
    width: 100vw;
    max-height: 0;
    padding: 0 0.5rem;
    overflow: hidden;
    transition: 0.3s max-height;
    background-color: #fff;
  }
  .main-nav__box--open {
    max-height: 20rem;
  }
  .main-nav__box--open ~ .btn--signin, .main-nav__box--open ~ .btn--burger {
    background-color: #f48101;
  }
  .main-nav__box--open ~ .btn--burger::before, .main-nav__box--open ~ .btn--burger::after {
    background-color: #fff;
  }
  .main-nav__box--open ~ .btn--signin svg rect {
    fill: #f48101;
  }
  .main-nav__box--open ~ .btn--signin svg path {
    fill: #fff;
    stroke: #fff;
  }
}
@media (min-width: 768px) {
  .main-nav__box {
    display: contents;
  }
}
.main-nav li {
  display: contents;
}
.main-nav a {
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .main-nav a {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .main-nav a {
    color: #fff;
  }
  .main-nav a:hover, .main-nav a:focus {
    background: #f48101;
  }
}
.main-nav .current-menu-item a {
  background: #f48101;
}

textarea {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  border: transparent;
  font-family: inherit;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  resize: none;
  transition: 0.2s border;
}
@media (max-width: 767px) {
  textarea {
    font-size: 0.7;
  }
}
@media (min-width: 768px) {
  textarea {
    font-size: 0.75rem;
  }
}
textarea::placeholder {
  color: #fff;
}
textarea:focus {
  border-color: #f48101;
}
textarea:focus:invalid {
  border-color: #ff0000;
}

@media (max-width: 767px) {
  .articles {
    padding: 4rem 0;
  }
}
@media (min-width: 768px) {
  .articles {
    padding: 5rem 0 5.25rem;
  }
}
.articles__box {
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .articles__box {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .articles__box {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.articles__item {
  background-color: #fd9300;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .articles__item {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .articles__item {
    padding: 1.5rem 1.5rem 2.75rem;
  }
}
.articles__img {
  position: relative;
}
.articles__img-box {
  height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7dc40;
  border-radius: 1rem;
  overflow: hidden;
}
.articles__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles__views {
  position: absolute;
  top: -0.5rem;
  display: flex;
  align-items: center;
  gap: 0 0.3rem;
  background-color: #fff;
  border-radius: 5rem;
}
@media (max-width: 767px) {
  .articles__views {
    right: 0;
    padding: 0.3rem 0.5rem;
  }
}
@media (min-width: 768px) {
  .articles__views {
    right: -0.4rem;
    padding: 0.5rem;
  }
}
.articles__views svg {
  height: auto;
}
@media (max-width: 767px) {
  .articles__views svg {
    width: 1rem;
  }
}
@media (min-width: 768px) {
  .articles__views svg {
    width: 1.2rem;
  }
}
.articles__views span {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #f48101;
}
@media (max-width: 767px) {
  .articles__views span {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .articles__views span {
    font-size: 0.8rem;
  }
}
.articles__header {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .articles__header {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .articles__header {
    margin-top: 1.5rem;
  }
}
.articles__title {
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .articles__title {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .articles__title {
    font-size: 1.3rem;
  }
}
.articles__date {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}
.articles__desc {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .articles__desc {
    margin-top: 1rem;
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .articles__desc {
    margin-top: 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .bid {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .bid {
    margin-top: 3.1rem;
  }
}
.bid__container {
  border-radius: 1rem;
  background-color: #fd9300;
}
@media (max-width: 767px) {
  .bid__container {
    padding: 1.5rem 1rem 2rem;
  }
}
@media (min-width: 768px) {
  .bid__container {
    padding: 2.5rem 2rem;
  }
}
.bid__box {
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .bid__box {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .bid__box {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.bid__item {
  background-color: #fff;
  border-radius: 1rem;
  color: #f48101;
}
@media (max-width: 767px) {
  .bid__item {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .bid__item {
    padding: 1.5rem;
  }
}
.bid__subtitle {
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .bid__subtitle {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .bid__subtitle {
    font-size: 1.3rem;
  }
}
.bid__desc {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  font-variant: small-caps;
}
@media (max-width: 767px) {
  .bid__desc {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .bid__desc {
    font-size: 1rem;
  }
}
.bid__desc ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.bid__desc ul li::marker {
  color: #f48101;
}
.bid .btn {
  margin-top: 1.5rem;
}

.bottom {
  background-color: #c76900;
}
@media (max-width: 767px) {
  .bottom {
    padding: 3rem 0 2.7rem;
  }
}
@media (min-width: 768px) {
  .bottom {
    padding: 3.5rem 0 2rem;
  }
}
@media (max-width: 767px) {
  .bottom .section__title {
    word-break: break-word;
  }
}
.bottom__middle {
  display: grid;
}
@media (max-width: 767px) {
  .bottom__middle {
    gap: 2rem 0;
  }
}
@media (min-width: 768px) {
  .bottom__middle {
    grid-template-columns: repeat(2, 14rem);
    gap: 0 2.5rem;
  }
}
.bottom__title {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .bottom__title {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .bottom__title {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }
}
.bottom__subtitle {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .bottom__subtitle {
    margin-top: 3.25rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .bottom__subtitle {
    margin-top: 2.75rem;
    font-size: 1rem;
  }
}
.bottom__text {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .bottom__text {
    margin: 1rem 0 3.1rem;
  }
}
@media (min-width: 768px) {
  .bottom__text {
    margin: 1.2rem 0 2.75rem;
  }
}
.bottom__text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.bottom__logo {
  align-items: center;
}
@media (max-width: 767px) {
  .bottom__logo {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0.5rem;
  }
}
@media (min-width: 768px) {
  .bottom__logo {
    margin-top: 1.4rem;
    display: flex;
    gap: 0 3rem;
  }
}
.bottom__logo img {
  display: inline-flex;
}
@media (max-width: 767px) {
  .bottom__logo img {
    height: auto;
    max-height: 3rem;
    width: auto;
    max-width: 100%;
  }
  .bottom__logo img:nth-child(4) {
    grid-row: 3;
  }
  .bottom__logo img:nth-child(3) {
    grid-row: 1;
    grid-column: 2;
  }
  .bottom__logo img:last-child {
    grid-row: 3;
  }
}
@media (min-width: 768px) {
  .bottom__logo img {
    max-height: 4.25rem;
    width: auto;
  }
}
.bottom__menu ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .bottom__menu ul {
    gap: 0.8rem 0;
  }
}
@media (min-width: 768px) {
  .bottom__menu ul {
    gap: 1rem 0;
  }
}
.bottom__menu li {
  display: contents;
}
.bottom__menu a {
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .bottom__menu a {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .bottom__menu a {
    font-size: 0.8rem;
  }
  .bottom__menu a:hover, .bottom__menu a:focus {
    color: #fff;
  }
}

.header {
  position: relative;
  z-index: 10;
  padding: 0.75rem 0;
}
.header .wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .hero {
    padding: 3rem 0 2rem;
  }
}
@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }
}
.hero .wrap {
  display: flex;
}
@media (max-width: 767px) {
  .hero .wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .hero .wrap {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .hero__box {
    width: 36.3rem;
  }
}
.hero__title {
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}
.hero__desc {
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  font-variant: small-caps;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .hero__desc {
    margin-top: 1rem;
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .hero__desc {
    max-width: 30rem;
    margin-top: 1.75rem;
    font-size: 1rem;
  }
}
.hero__desc p:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .hero__img {
    display: none;
  }
}
@media (min-width: 768px) {
  .hero__img {
    width: 22.4rem;
    height: 22.4rem;
  }
}
.hero__img img {
  width: 100%;
  height: auto;
}

.accountable {
  margin-top: 4rem;
}
.accountable__container {
  background-color: #fff;
}
@media (max-width: 767px) {
  .accountable__container {
    padding: 1.5rem 1rem 5.2rem;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .accountable__container {
    padding: 3rem 2rem 10rem;
    border-radius: 1rem;
  }
}
.accountable__container h2,
.accountable__container h3 {
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: #f48101;
}
@media (max-width: 767px) {
  .accountable__container h2,
  .accountable__container h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .accountable__container h2,
  .accountable__container h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.accountable__container .btn {
  max-width: 27rem;
}
@media (max-width: 767px) {
  .accountable__container .btn {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .accountable__container .btn {
    margin-top: 2rem;
  }
}
.accountable__desc {
  font-weight: 600;
  line-height: 120%;
  font-variant: small-caps;
  color: #f48101;
}
@media (max-width: 767px) {
  .accountable__desc {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .accountable__desc {
    max-width: 51.4rem;
    font-size: 1rem;
  }
}
.accountable__desc p:not(:last-child) {
  margin-bottom: 1rem;
}
.accountable__desc a {
  color: #f48101;
  text-decoration: underline;
  transition: color 0.3s;
}
.accountable__desc a:hover, .accountable__desc a:focus {
  color: #fff;
}
.accountable__box {
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .accountable__box {
    margin-top: -3rem;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .accountable__box {
    margin-top: -6.5rem;
    padding: 0 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.accountable__item {
  background-color: #fd9300;
  color: #fff;
}
@media (max-width: 767px) {
  .accountable__item {
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .accountable__item {
    padding: 1.5rem 1.5rem 2rem;
    border-radius: 1rem;
  }
}
.accountable__item h2,
.accountable__item h3 {
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .accountable__item h2,
  .accountable__item h3 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .accountable__item h2,
  .accountable__item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}
.accountable__item p {
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  font-variant: small-caps;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .accountable__item p {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .accountable__item p {
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .accountable__item p:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .accountable__item p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.accountable__item strong {
  color: #fff;
  font-weight: 600;
}
.accountable__item a {
  color: #fff;
  text-decoration: underline;
  transition: 0.3s color;
}
.accountable__item a:hover, .accountable__item a:focus {
  color: #e7dc40;
}
.accountable__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .accountable__btn {
    height: 2.1rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .accountable__btn {
    height: 2.6rem;
    font-size: 1rem;
  }
}
.accountable__btn:first-child {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.accountable__btn:last-child {
  background-color: #f48101;
  color: #fff;
}
.accountable__btn-box {
  display: grid;
  gap: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .accountable__btn-box {
    margin-bottom: 1rem;
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .accountable__btn-box {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.review {
  background-color: #fd9300;
}
@media (max-width: 767px) {
  .review {
    padding: 2.5rem 0 3.5rem;
  }
}
@media (min-width: 768px) {
  .review {
    padding: 5.5rem 0 6.5rem;
  }
}
.review__title {
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .review__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .review__title {
    font-size: 2rem;
  }
}
.review__box {
  display: grid;
  gap: 1rem;
}
@media (max-width: 767px) {
  .review__box {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .review__box {
    margin-top: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.review__item {
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background-color: #f48101;
  color: #fff;
}
.review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__name {
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .review__name {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .review__name {
    font-size: 1.25rem;
  }
}
.review__date {
  margin-top: 0.5rem;
  font-weight: 600;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .review__date {
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) {
  .review__date {
    font-size: 0.8rem;
  }
}
.review__text {
  margin-top: 1rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .review__text {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .review__text {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  .touch {
    padding: 3rem 0 4rem;
  }
}
@media (min-width: 768px) {
  .touch {
    padding: 6rem 0;
  }
}
.touch .wrap {
  display: flex;
}
@media (max-width: 767px) {
  .touch .wrap {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .touch .wrap {
    justify-content: space-between;
  }
}
.touch .page__title {
  color: #fff;
}
@media (min-width: 768px) {
  .touch .page__title {
    font-size: 2rem;
  }
}
.touch__box {
  background-color: #fd9300;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .touch__box {
    padding: 2rem 1rem 2.5rem;
  }
}
@media (min-width: 768px) {
  .touch__box {
    width: 30rem;
    padding: 2rem 1.5rem 2.5rem;
  }
}
.touch__form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .touch__form {
    margin-top: 1.25rem;
  }
}
@media (min-width: 768px) {
  .touch__form {
    margin-top: 2rem;
  }
}
.touch__form form {
  display: contents;
}
@media (max-width: 767px) {
  .touch__img {
    display: none;
  }
}
@media (min-width: 768px) {
  .touch__img {
    width: 22.4rem;
    height: 22.4rem;
  }
}
.touch__img img {
  width: 100%;
  height: auto;
}
.touch input {
  padding: 1rem 1.2rem;
}
.touch textarea {
  margin-top: 0.5rem;
  padding: 1.2rem;
}
@media (max-width: 767px) {
  .touch textarea {
    min-height: 6.5rem;
  }
}
@media (min-width: 768px) {
  .touch textarea {
    min-height: 7.5rem;
  }
}
.touch .btn {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .questions {
    padding: 3rem 0 4rem;
  }
}
@media (min-width: 768px) {
  .questions {
    padding: 6rem 0;
  }
}
.questions__box {
  display: grid;
}
@media (max-width: 767px) {
  .questions__box {
    margin-top: 2rem;
    gap: 1.5rem 0;
  }
}
@media (min-width: 768px) {
  .questions__box {
    margin-top: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
.questions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.5rem;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .questions__btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .questions__btn {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 2rem;
  }
}
.questions__btn:before, .questions__btn:after {
  width: 0.8rem;
  height: 0.15rem;
  display: block;
  content: "";
  background-color: #f48101;
  transition: 0.2s transform;
}
@media (max-width: 767px) {
  .questions__btn:before {
    transform: translate(0.32em, 0);
  }
}
@media (min-width: 768px) {
  .questions__btn:before {
    transform: translate(0.18em, 0);
  }
}
.questions__btn:after {
  transform: rotate(90deg) translate(0rem, 0.425rem);
}
.questions__question {
  display: grid;
  align-items: center;
  background-color: #fd9300;
  color: #fff;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .questions__question {
    padding: 1rem;
    grid-template-columns: 1fr 2.2rem;
    gap: 0 1.1rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .questions__question {
    padding: 0.9rem 0.9rem 0.9rem 1.5rem;
    grid-template-columns: 1fr 2.9rem;
    gap: 0 3.85rem;
    font-size: 1.3rem;
  }
}
.questions__question--open .questions__btn:after {
  transform: rotate(0) translate(-0.4rem, 0rem);
}
.questions__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}
.questions__answer--show {
  max-height: 20rem;
}
.questions__answer-box {
  margin-top: 0.5rem;
  border-radius: 1rem;
  background-color: #fff;
  color: #f48101;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .questions__answer-box {
    padding: 1.5rem 1rem;
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .questions__answer-box {
    padding: 1.5rem 3.65rem 1.5rem 1.5rem;
    font-size: 0.8rem;
  }
}
.questions__related {
  width: 100%;
}
@media (max-width: 767px) {
  .questions__related {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
  }
}

.front-page__container {
  position: relative;
}
@media (max-width: 767px) {
  .front-page__container {
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .front-page__container {
    padding-bottom: 6.5rem;
  }
}
@media (max-width: 767px) {
  .front-page__details {
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .front-page__details {
    padding-bottom: 6.5rem;
  }
}
@media (min-width: 768px) {
  .front-page__details-box {
    max-width: 57.2rem;
  }
}
.front-page__details h2,
.front-page__details h3 {
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .front-page__details h2,
  .front-page__details h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .front-page__details h2,
  .front-page__details h3 {
    max-width: 41.5rem;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.front-page__details p {
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .front-page__details p {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .front-page__details p {
    font-size: 1rem;
  }
}

.page {
  position: relative;
}
@media (max-width: 767px) {
  .page {
    padding: 3rem 0 4rem;
  }
}
@media (min-width: 768px) {
  .page {
    padding: 6rem 0;
  }
}
.page__box {
  background-color: #fd9300;
}
@media (max-width: 767px) {
  .page__box {
    border-radius: 1rem;
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .page__box {
    border-radius: 1.5rem;
    padding: 3rem 8.5rem 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .page__box:not(:first-of-type) {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .page__box:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.page__box h1,
.page__box h2,
.page__box h3 {
  font-weight: 900;
  line-height: normal;
}
@media (max-width: 767px) {
  .page__box h1,
  .page__box h2,
  .page__box h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .page__box h1,
  .page__box h2,
  .page__box h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.page__box p {
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  font-variant: small-caps;
}
@media (max-width: 767px) {
  .page__box p {
    font-size: 0.7rem;
  }
}
@media (min-width: 768px) {
  .page__box p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .page__box p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
}
@media (min-width: 768px) {
  .page__box p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .accountable-page {
    padding: 2.4rem 0 4rem;
  }
}
@media (min-width: 768px) {
  .accountable-page {
    padding: 6rem 2rem;
  }
}

.ergebnis {
  position: relative;
}
@media (max-width: 767px) {
  .ergebnis {
    padding: 3rem 0 4rem;
  }
}
@media (min-width: 768px) {
  .ergebnis {
    padding: 6rem 0;
  }
}
.ergebnis__container {
  display: grid;
}
@media (max-width: 767px) {
  .ergebnis__container {
    margin-top: 2rem;
    gap: 1.5rem 0;
  }
}
@media (min-width: 768px) {
  .ergebnis__container {
    margin-top: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
.ergebnis__box {
  position: relative;
  flex-grow: 1;
  border-radius: 1.5rem;
  background-color: #fd9300;
}
@media (max-width: 767px) {
  .ergebnis__box {
    padding: 1.5rem 1rem 1.75rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__box {
    padding: 2rem 1.5rem 2.7rem;
  }
}
.ergebnis__box::before, .ergebnis__box:after {
  position: absolute;
  top: 1rem;
  width: 0.1rem;
  height: calc(100% - 2rem);
  border-left: 0.1rem dashed #f48101;
  content: "";
}
.ergebnis__box::before {
  left: 0;
}
.ergebnis__box:after {
  right: 0;
}
.ergebnis__title {
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ergebnis__title {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__title {
    font-size: 1.3rem;
  }
}
.ergebnis__desc {
  margin-top: 0.7em;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .ergebnis__desc {
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__desc {
    margin-top: 0.7em;
    font-size: 0.75rem;
  }
}
.ergebnis__desc span {
  margin-left: 0.85rem;
  display: inline-block;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .ergebnis__content {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.25rem;
  }
}
@media (max-width: 767px) {
  .ergebnis__list, .ergebnis__additional {
    display: contents;
  }
}
@media (min-width: 768px) {
  .ergebnis__list, .ergebnis__additional {
    display: flex;
    gap: 0 0.5rem;
  }
}
.ergebnis__num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: normal;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .ergebnis__num {
    width: 1.8rem;
    height: 1.8rem;
    border: 0.1rem solid #f48101;
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__num {
    width: 2.5rem;
    height: 2.5rem;
    border: 0.2rem solid #f48101;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__list {
    margin-top: 1.25rem;
  }
}
.ergebnis__list .ergebnis__num {
  background-color: #f48101;
  color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 3px 10px 4px 0px rgba(255, 255, 255, 0.5) inset;
}
@media (min-width: 768px) {
  .ergebnis__additional {
    margin-top: 1rem;
  }
}
.ergebnis__additional .ergebnis__num {
  background-color: transparent;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.ergebnis__item {
  display: flex;
  color: #fff;
}
.ergebnis__item::before, .ergebnis__item:after {
  flex-shrink: 0;
  display: block;
  content: "";
  background-color: #fd9300;
}
@media (max-width: 767px) {
  .ergebnis__item::before, .ergebnis__item:after {
    width: 2rem;
    min-height: 10.45rem;
    border-radius: 0.75rem;
  }
}
@media (min-width: 768px) {
  .ergebnis__item::before, .ergebnis__item:after {
    width: 4.2rem;
    min-height: 15rem;
    border-radius: 1rem;
  }
}
.ergebnis__item--white {
  color: #f48101;
}
.ergebnis__item--white:before, .ergebnis__item--white:after {
  background-color: #fff;
}
.ergebnis__item--white .ergebnis__box {
  background-color: #fff;
}
.ergebnis__item--white .ergebnis__box:before, .ergebnis__item--white .ergebnis__box:after {
  border-color: #f48101;
}
.ergebnis__related {
  width: 100%;
}
@media (max-width: 767px) {
  .ergebnis__related {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */