@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
i,
ol,
ul,
li,
form,
label,
main,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  scroll-behavior: smooth;
}

footer,
header,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

button {
  border: transparent;
  cursor: pointer;
}

body {
  font-size: 16px;
  color: #373737;
  line-height: 1.4;
  min-height: 100vh;
  background-color: #efeeee;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}

main {
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 82rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.btn {
  width: 100%;
  padding: 0.8rem 0.6rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #3adc00;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}
@media (hover: hover) {
  .btn:hover {
    background-color: #2daa00;
  }
}

.header {
  position: relative;
  height: 90px;
  /*background-color: rgba(255, 255, 255, 0.8);*/
  transition: background-color 0.1s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.header__wrapper {
  max-width: 82rem;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .header__wrapper {
    gap: 1rem;
  }
}
.header__logo {
  position: relative;
  z-index: 1;
}
.header::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  height: 75vh;
  background-color: #ffb001;
}
@media (max-width: 767.98px) {
  .header::before {
    width: 50vw;
    height: 50vh;
  }
}

.policy-header::before {
  width: 50vw;
  height: 25vh;
}
@media (max-width: 767.98px) {
  .policy-header::before {
    width: 50vw;
    height: 20vh;
  }
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  color: #373737;
}
.logo__img {
  width: 3.4rem;
  height: 3.4rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .logo__img {
    width: 3rem;
    height: 3rem;
  }
}
.logo__text {
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .logo__text {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .logo__text {
    font-size: 1rem;
  }
}

.blocks__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4rem;
}

.item {
  padding: 2rem 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1490196078), 0px 7px 7px 0px rgba(0, 0, 0, 0.1294117647), 0px 15px 9px 0px rgba(0, 0, 0, 0.0784313725), 0px 28px 11px 0px rgba(0, 0, 0, 0.0196078431), 0px 43px 12px 0px rgba(0, 0, 0, 0);
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.item__logo {
  max-width: 20%;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .item__logo {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .item__logo {
    max-width: 100%;
  }
}
.item__img {
  width: 12rem;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.item__deposite {
  max-width: 30%;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .item__deposite {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .item__deposite {
    max-width: 100%;
  }
}
.item__deposite-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.item__deposite-item span {
  width: 49%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e7e7e7;
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.2509803922) inset;
  border-radius: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.item__deposite-item span:first-child {
  font-weight: 500;
}
.item__deposite-item span:last-child {
  font-size: 1.2rem;
  font-weight: 600;
  justify-content: flex-end;
}

.button-block {
  max-width: 20%;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .button-block {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .button-block {
    max-width: 100%;
  }
}
.button-block-images {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
}
.button-block-images img {
  max-width: 15%;
}

.checklist {
  max-width: 30%;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .checklist {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .checklist {
    max-width: 100%;
  }
}
.checklist__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.checklist__item span {
  display: block;
  flex-shrink: 0;
  transform: translateX(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  background-color: #ffb001;
  position: relative;
}
.checklist__item span::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/check.svg") no-repeat center/cover;
}

.rating {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.1rem;
}
.rating span {
  color: #ffb001;
}
.rating span:before {
  content: "★";
}

.content {
  padding: 4rem 0;
}
.content__wrapper {
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .content__wrapper {
    max-width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
.content__title {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .content__title {
    font-size: 1.5rem;
  }
}
.content__subtitle {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #ffb001;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .content__subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .content__subtitle {
    color: #373737;
  }
}

.faq {
  padding: 4rem 0;
}
.faq__title {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .faq__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .faq__title {
    font-size: 1.125rem;
  }
}

.accordion {
  width: 100%;
}
.accordion__item {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.accordion__item:not(:last-child) {
  margin-bottom: 1rem;
}
.accordion__header {
  background-color: #434141;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.6rem;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .accordion__header {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .accordion__header {
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .accordion__header:hover {
    background-color: #ffb001;
  }
}
.accordion__content {
  overflow: hidden;
  padding: 0 1rem;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion__content p {
  margin: 1rem 0;
}
.accordion__icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
  margin-right: 0;
}

.active .accordion__icon {
  transform: rotate(180deg);
}

.policy {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .policy {
    padding: 2rem 0;
  }
}
.policy__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.policy__title {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .policy__title {
    font-size: 1.5rem;
  }
}
.policy__subtitle {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .policy__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .policy__subtitle {
    font-size: 1.125rem;
  }
}
.policy__list {
  padding-left: 1rem;
  list-style: disc;
}
.policy__link {
  color: #ffb001;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .policy__link:hover {
    color: #373737;
  }
}

.responsible {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .responsible {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .responsible {
    padding: 2rem 0;
  }
}
.responsible__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.responsible__title {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .responsible__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .responsible__title {
    font-size: 1.5rem;
  }
}
.responsible__subtitle {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .responsible__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .responsible__subtitle {
    font-size: 1.125rem;
  }
}
.responsible__list {
  padding-left: 1rem;
  list-style: disc;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #ffb001;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .scroll-top:hover {
    background-color: #ffb001;
  }
}

.scroll-top img {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
  line-height: 0;
  transform: rotateX(180deg);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.terms {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .terms {
    padding: 2rem 0;
  }
}
.terms__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.terms__title {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .terms__title {
    font-size: 1.5rem;
  }
}
.terms__subtitle {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .terms__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .terms__subtitle {
    font-size: 1.125rem;
  }
}
.terms__list {
  padding-left: 0.5rem;
}
.terms .disc {
  padding-left: 2rem;
  list-style: disc;
}

.footer {
  padding-top: 4rem;
  background-color: #ffb001;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer {
    padding-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .footer {
    padding-top: 2rem;
  }
}
.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer__head {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .footer__head {
    flex-direction: column;
  }
}
.footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer__links {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .footer__links {
    flex-direction: column;
  }
}
.footer__img-link {
  width: 12rem;
  height: 3rem;
  cursor: pointer;
}
.footer__img-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__text {
  padding: 1rem;
  background-color: #ffffff;
}
.footer__text h3 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer__text h3 {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .footer__text h3 {
    font-size: 1rem;
  }
}
.footer__text p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.copy {
  padding: 2rem 0;
  margin-top: 2rem;
  background-color: #434141;
  width: 100%;
}
.copy__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .copy__wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .copy__wrapper {
    flex-direction: column;
  }
}
.copy__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .copy__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .copy__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.copy__list-item-link {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .copy__list-item-link:hover {
    color: #ffb001;
  }
}
.copy__text {
  color: #ffffff;
}
.copy__link {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .copy__link:hover {
    color: #ffffff;
  }
}/*# sourceMappingURL=style.css.map */