@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Heavy.woff2") format("woff2"), url("../fonts/Lato-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Medium.woff2") format("woff2"), url("../fonts/Lato-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font: 400 15px "Lato", sans-serif;
  position: relative;
  background: #f2f2f2;
  color: #212529;
}
body.contacts-bg {
  background: url("../images/bg-contacts.png");
  background-size: cover;
}
body:before {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  min-height: 100vh;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
body.overflow {
  overflow: hidden;
}
body.overflow::before {
  opacity: 0.45;
  visibility: visible;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1156px;
  margin: 0 auto;
}

@media only screen and (max-width: 1300px) {
  .container {
    max-width: 944px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }
}
.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox__inner {
  flex-shrink: 0;
  margin-right: 17px;
  width: 20px;
  height: 20px;
}
.checkbox__inner > span {
  width: 100%;
  height: 100%;
  border: none;
  background: #bdbdbd;
  border-radius: 3px;
  display: block;
}
.checkbox input {
  display: none;
}
.checkbox input:checked + span {
  border-radius: 4px;
}
.checkbox input:checked + span {
  background-image: url(../images/choose.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}
.checkbox__text {
  font-size: 15px;
}
.checkbox__text a {
  color: #007bff;
}

.field input,
.field textarea {
  border: none;
  font-size: 18px;
  border-bottom: 2px solid #56ccf2;
  padding-bottom: 15px;
  width: 100%;
  resize: none;
}
.field__label {
  font-size: 13px;
  margin-bottom: 20px;
}

.head-banner {
  color: #bf063d;
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
}

.header {
  position: relative;
}
.header:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/main-bg.svg);
  min-height: 1070px;
  width: 100%;
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .header:before {
    min-height: 800px;
    background-position: -100% 0;
  }
}
.header-content {
  background: #333333;
}
.header-content::before {
  display: none;
}
.header-top {
  background: #4f4f4f;
  padding: 15px 0;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .header-top__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.header-top__content {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .header-top__content {
    width: 100%;
    padding-top: 25px;
  }
}
.header-top__content > span {
  margin: 0 14px;
  color: #fff;
}
.header-top__link a {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .header-top__link a {
    font-size: 12px;
  }
  .header-top__content > span {
    display:none;
  }
}
.header-top__link a:last-child {
  margin-bottom: 0;
}
.header-top__link a img {
  width: 15px;
  height: 15px;
}
.header-top__link a span {
  display: block;
  margin-left: 5px;
}
.header-top__service {
  color: #fff;
  display: flex;
  align-items: center;
}
.header-top__service img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .header-top__service img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-top__service {
    font-size: 12px;
    position: absolute;
    top: 24px;
  }
}
.header-top__info {
  display: flex;
  align-items: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .header-top__info {
    width: 100%;
    justify-content: space-between;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
  }
}
.header-top__aside {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .header-top__aside {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-top__aside a {
    font-size: 13px;
  }
}
.header-top__icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.header-top__language {
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 2px solid #ffffff;
  font-weight: 800;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.header-top__language > span {
  text-transform: uppercase;
  font-size: 14px;
}
.header-top__dropdown {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #4f4f4f;
  right: 0;
  top: 100%;
  width: 110px;
  display: none;
}
.header-top__dropdown.active {
  display: block;
}
.header-top__dropdown ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-bottom {
  padding: 20px 0;
}
@media only screen and (max-width: 991px) {
  .header-bottom {
    padding: 33px 0;
  }
}
.header-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .header-bottom__inner {
    gap: 20px;
  }
}
.header-bottom__burger {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header-bottom__burger {
    display: block;
  }
  .header-bottom__burger span {
    margin-bottom: 7px;
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
  }
  .header-bottom__burger span:last-child {
    margin-bottom: 0;
  }
}
.header-bottom__close {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header-bottom__close {
    position: absolute;
    right: 10px;
    z-index: 10;
    top: 10px;
    display: flex;
    align-items: center;
  }
}
.header-bottom__logo {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header-bottom__logo {
    height: 26px;
  }
}
.header-bottom__nav {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .header-bottom__nav {
    position: fixed;
    justify-content: center;
    right: 0;
    top: 0;
    background: #fff;
    height: 100%;
    min-height: 100vh;
    z-index: 100;
    flex-direction: column;
    width: 300px;
    justify-content: flex-start;
    padding: 60px 0;
    gap: 1.875rem;
    display: none;
  }
  .header-bottom__nav.active {
    display: flex;
  }
}
.header-bottom__nav li {
  margin-right: 15px;
}
@media only screen and (max-width: 991px) {
  .header-bottom__nav li {
    margin-right: 0;
  }
}
.header-bottom__nav li:last-child {
  margin-right: 0;
}
.header-bottom__nav li a {
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .header-bottom__nav li a {
    color: #000;
  }
}
.header-bottom__nav li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .header-bottom__nav li a {
    font-size: 12px;
  }
}

.showcase {
  padding-top: 0px;
}
@media only screen and (max-width: 991px) {
  .showcase {
    padding-top: 0;
  }
}
.showcase-ex .showcase__content {
  max-width: 100%;
  position: relative;
}
.showcase-ex .showcase__content .reviews__checkbox {
  margin-top: 15px;
}
.showcase-ex .showcase__items {
  display: grid;
  grid-template-columns: 42% 42%;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .showcase-ex .showcase__items {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.showcase-ex .showcase__shuffle {
  position: absolute;
  left: 47.5%;
  top: 130px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .showcase-ex .showcase__shuffle {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
  }
}
.showcase-ex .showcase__aside {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.showcase-ex .showcase__aside p {
  display: block;
  margin: 0;
}
.showcase-ex .showcase__aside p span {
  display: block;
  margin: 0;
  margin-top: 5px;
}
@media only screen and (max-width: 1300px) {
  .showcase-ex .showcase__aside p span {
    font-size: 12px;
  }
}
.showcase-ex .showcase__fields {
  margin-top: 50px;
  max-width: 700px;
  margin-bottom: 40px;
}
.showcase-ex .showcase__fields .field {
  margin-bottom: 20px;
}
.showcase-ex .showcase__fields .field:last-child {
  margin-bottom: 0;
}
.showcase-ex .showcase__sell--content {
  text-align: right;
  margin-top: 30px;
}
.showcase-ex .showcase__sell--content p span {
  display: block;
  text-align: right;
  color: #828282;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1300px) {
  .showcase-ex .showcase__sell--content p span {
    font-size: 12px;
  }
}
.showcase-ex .showcase__sell--content p span:last-child {
  margin-bottom: 0;
}
.showcase__img {
  position: absolute;
  bottom: -42px;
  left: -100px;
}
@media only screen and (max-width: 991px) {
  .showcase__img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__img {
    left: 0;
    top: 0;
    bottom: auto;
    height: 300px;
  }
}
.showcase__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .showcase__inner {
    flex-direction: column;
    align-items: center;
  }
}
.showcase__info {
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .showcase__info {
    padding-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    display: none;
  }
}
.showcase__title {
  font-size: 56px;
  color: #fff;
}
@media only screen and (max-width: 1300px) {
  .showcase__title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 27px;
  }
}
.showcase__text {
  padding-top: 5px;
  font-size: 22px;
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .showcase__text {
    font-size: 18px;
  }
}
.showcase__content {
  max-width: 600px;
  width: 100%;
  padding: 70px;
  background: #fff;
  border-radius: 30px;
  padding: 70px 70px 100px 70px;
  box-shadow: 0px 10px 40px rgba(8, 41, 135, 0.1);
}
@media only screen and (max-width: 767px) {
  .showcase__content {
    padding: 20px;
    border-radius: 20px;
  }
}
.showcase__sell--title {
  font-size: 32px;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .showcase__sell--title {
    font-size: 20px;
  }
}
.showcase__sell--inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .showcase__sell--inner {
    grid-gap: 10px;
  }
}
.showcase__sell--price input {
  border: none;
  border-bottom: 2px solid #56ccf2;
  font-size: 20px;
  padding-bottom: 20px;
  text-align: right;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .showcase__sell--price input {
    font-size: 16px;
    padding-bottom: 13px;
    margin-bottom: -7px;
  }
}
.showcase__sell--min {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  white-space: nowrap;
  bottom: -25px;
}
@media only screen and (max-width: 767px) {
  .showcase__sell--min {
    font-size: 12px;
  }
}
.showcase__sell--info {
  position: relative;
}
.showcase__select {
  padding-bottom: 17px;
  border-bottom: 2px solid #56ccf2;
  font-size: 20px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .showcase__select {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.showcase__select--choose {
  display: flex;
  align-items: center;
  position: relative;
}
.showcase__select--choose:before {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #56ccf2;
  border-right: none;
  border-top: none;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.showcase__select--choose span {
  margin-left: 10px;
  display: block;
}
.showcase__select--choose img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.showcase__select--dropdown {
  display: none;
  position: absolute;
  left: 0;
  background: #fff;
  top: 120%;
  padding: 10px;
  border: 2px solid #56ccf2;
  width: 100%;
  border-radius: 5px;
  max-height: 250px;
  height: auto;
  z-index: 10;
  overflow-y: scroll;
}
.showcase__select--dropdown::-webkit-scrollbar {
  background: #fff;
  width: 5px;
  height: 5px;
}
.showcase__select--dropdown::-webkit-scrollbar-thumb {
  background: #56ccf2;
  width: 5px;
  height: 5px;
}
.showcase__select--dropdown ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .showcase__select--dropdown ul li {
    margin-bottom: 12px;
  }
}
.showcase__select--dropdown ul li:last-child {
  margin-bottom: 0;
}
.showcase__select--dropdown ul li span {
  margin-left: 10px;
}
.showcase__select--dropdown ul li img {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .showcase__select--dropdown ul li img {
    width: 20px;
    height: 20px;
  }
}
.showcase__select--dropdown.active {
  display: block;
}
.showcase__information {
  text-align: center;
  margin: 50px 0 30px;
}
.showcase__aside p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 700;
}
.showcase__aside p span {
  color: #888;
  font-weight: 500;
  margin-left: 10px;
}
.showcase__aside p:last-child {
  margin-bottom: 0;
}
.showcase__shuffle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.showcase__buy .showcase__sell--min {
  text-align: right;
  right: 0;
  font-size: 15px;
  padding-top: 15px;
}
@media only screen and (max-width: 767px) {
  .showcase__buy .showcase__sell--min {
    font-size: 12px;
  }
}
.showcase__btn {
  padding: 25px 90px;
  font-size: 16px;
  border-radius: 50px;
  background: #22c064;
  border: 1px solid #22c064;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms;
}
@media only screen and (max-width: 767px) {
  .showcase__btn {
    padding: 15px 40px;
    font-size: 12px;
    margin-top: 80px;
  }
}
.showcase__btn:hover {
  opacity: 0.8;
}

.mach {
  margin-top: 150px;
}
@media only screen and (max-width: 767px) {
  .mach {
    margin-top: 60px;
  }
}
.mach__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .mach__items {
    grid-template-columns: 1fr;
  }
}
.mach__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mach__img {
  background: url("../images/mach-before.svg") no-repeat 50% 50%;
  width: 100%;
  background-repeat: no-repeat;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.mach__subtitle {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 22px;
  color: #333333;
}
@media only screen and (max-width: 767px) {
  .mach__subtitle {
    font-size: 20px;
  }
}
.mach__text {
  text-align: center;
  font-size: 17px;
  line-height: 30px;
  color: #4f4f4f;
}
@media only screen and (max-width: 767px) {
  .mach__text {
    font-size: 16px;
    line-height: 25px;
  }
}

.reviews {
  padding-top: 300px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .reviews {
    padding-top: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews {
    padding-top: 100px;
  }
}
.reviews:before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/bg-reviews.svg") no-repeat;
  min-height: 1080px;
  width: 100%;
  max-width: 1600px;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .reviews:before {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .reviews:before {
    min-height: 1000px;
    background-size: cover;
    top: 2%;
  }
}
.reviews-page {
  padding-top: 50px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .reviews-page {
    padding-top: 50px;
    margin-bottom: 100px;
  }
}
.reviews-page::before {
  background: url("../images/reviews-page.png");
  width: 100%;
  background-size: cover;
  max-width: 100%;
  top: 8%;
}
.reviews-page .reviews__inner {
  display: block;
}
.reviews-page .reviews__info {
  margin: 0;
  max-width: 100%;
}
.reviews-page .reviews__block {
  margin: 0;
  flex-direction: column-reverse;
}
.reviews-page .reviews__data span {
  display: block;
}
.reviews-page .reviews__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media only screen and (max-width: 991px) {
  .reviews-page .reviews__items {
    grid-template-columns: 1fr;
  }
}
.reviews-page .reviews__item {
  grid-column: span 2;
}
@media only screen and (max-width: 991px) {
  .reviews-page .reviews__item {
    grid-column: span 2;
  }
}
.reviews-page .reviews__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .reviews-page .reviews__content {
    grid-gap: 20px;
  }
}
.reviews-page__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .reviews-page__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.reviews__pagination {
  display: flex;
  align-items: center;
  margin: 50px 0;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .reviews__pagination {
    justify-content: center;
  }
}
.reviews__pagination li a {
  color: #007bff;
  cursor: pointer;
}
.reviews__form {
  border-radius: 30px;
  background: #fff;
  width: 100%;
  padding: 70px;
  font-size: 17px;
  box-shadow: 0px 10px 40px rgba(8, 41, 135, 0.1);
}
@media only screen and (max-width: 991px) {
  .reviews__form {
    padding: 40px 20px;
  }
}
.reviews__form--title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .reviews__form--title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.reviews__form--items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 991px) {
  .reviews__form--items {
    grid-template-columns: 1fr;
  }
  .reviews__form--items .field__label {
    margin-bottom: 10px;
  }
}
.reviews__inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .reviews__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.reviews__info {
  max-width: 850px;
  margin-left: 50px;
}
@media only screen and (max-width: 1300px) {
  .reviews__info {
    margin-left: 30px;
    max-width: 650px;
  }
}
@media only screen and (max-width: 991px) {
  .reviews__info {
    margin-left: 0;
    max-width: 100%;
  }
}
.reviews__top {
  font-size: 22px;
  margin-bottom: 40px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .reviews__top {
    display: none;
  }
}
.reviews__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .reviews__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.reviews__btns {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  .reviews__btns {
    margin-top: 0;
    justify-content: flex-end;
    margin-bottom: 30px;
  }
}
.reviews__left {
  width: 100%;
}
.reviews__prev, .reviews__next {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.reviews__prev {
  transform: rotate(180deg);
}
.reviews__btn {
  background: transparent;
  border: 3px solid #ffffff;
  text-transform: none;
  padding: 20px 75px;
  margin-top: 150px;
  display: flex;
  align-items: center;
  font-size: 16px;
  border-radius: 50px;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .reviews__btn {
    position: absolute;
    bottom: -100px;
    margin-top: 0;
  }
}
.reviews__block {
  background: #fff;
  border-radius: 30px;
  padding: 70px 70px 50px 70px;
  font-size: 16px;
  line-height: 30px;
  min-height: 256px;
  flex-wrap: wrap;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1300px) {
  .reviews__block {
    padding: 30px;
  }
}
.reviews__text {
  color: #828282;
  font-weight: 400;
}
.reviews__data {
  font-weight: 700;
  color: #333;
}

.found {
  margin-top: 150px;
  margin-bottom: 150px;
}
.found__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .found__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.found__block {
  border: 2px solid #aaaaaa;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  box-sizing: border-box;
  padding: 24px 5px;
  border-radius: 22px;
  margin: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .found__block {
    margin: 5px;
  }
}
.found__img {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.found__img img {
  width: 100%;
}
.found__name {
  color: #828282;
  font-weight: 400;
  margin: 10px 0;
}
.found__price {
  font-weight: bold;
  color: #333;
}
.found__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 40px;
}
.found__prev, .found__next {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.found__prev {
  transform: rotate(180deg);
}

.footer {
  background: #333;
  padding-top: 70px;
  padding-bottom: 50px;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .footer {
    padding-bottom: 50px;
    padding-top: 40px;
  }
}
.footer__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  justify-content: space-between;
  margin-right: -50px;
}
@media only screen and (max-width: 1300px) {
  .footer__inner {
    grid-template-columns: 400px 500px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__inner {
    grid-template-columns: 1fr;
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer__info {
    margin-bottom: 40px;
  }
}
.footer__aside {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .footer__aside {
    align-items: flex-start;
    order: 1;
  }
}
.footer__aside .footer__label {
  text-align: center;
}
.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  grid-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .footer__nav {
    grid-template-columns: 1fr;
  }
}
.footer__nav li a {
  color: #56ccf2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid;
  font-size: 12px;
}
.footer__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  .footer__item {
    display: block;
  }
}
.footer__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.footer__label {
  color: #828282;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .footer__label {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.footer__text {
  font-size: 15px;
  color: #bdbdbd;
}
@media only screen and (max-width: 767px) {
  .footer__text {
    font-size: 14px;
  }
}
.footer__text span {
  color: #fff;
  margin-top: 10px;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__banks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 250px;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .footer__banks {
    max-width: 100%;
  }
}
.footer__bank {
  display: flex;
  align-items: center;
}

.change {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .change {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.change__back {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .change__back {
    margin-bottom: 40px;
  }
}
.change__title {
  text-align: center;
  flex-grow: 10;
  font-size: 42px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .change__title {
    font-size: 18px;
  }
}
.change__banner {
  background-color: #4f4f4f;
  font-size: 17px;
  padding: 60px;
  padding: 50px;
  border-radius: 20px;
  color: #fff;
  font-weight: normal;
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}
@media only screen and (max-width: 991px) {
  .change__banner {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    font-size: 16px;
  }
}
.change__text {
  font-size: 40px;
  margin-right: 20px;
  font-weight: 900;
}
@media only screen and (max-width: 991px) {
  .change__text {
    margin-bottom: 20px;
    margin-right: 0;
    font-size: 24px;
  }
}
.change__content p {
  margin-bottom: 15px;
}
.change__content p a {
  text-decoration: underline;
}

.warning {
  margin: 100px 0;
}
.warning__inner {
  background-color: #4f4f4f;
  font-size: 17px;
  padding: 60px;
  padding: 50px 100px;
  border-radius: 20px;
  color: #fff;
  font-weight: normal;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .warning__inner {
    padding: 40px 20px;
    font-size: 16px;
  }
}
.warning__title_ins {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1300px) {
  .warning__title_ins {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.rules {
  padding-top: 50px;
}
.rules__title {
  font-weight: 700;
  font-size: 42px;
  color: #333333;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .rules__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.rules h4 {
  padding-top: 38px;
  padding-bottom: 18px;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #333333;
}
.rules h4:nth-child(1) {
  padding-top: 0px;
}
@media only screen and (max-width: 767px) {
  .rules h4 {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.rules p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767) {
  .rules p {
    font-size: 14px;
  }
}
.rules ul {
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .rules ul {
    padding-left: 0;
  }
}
.rules strong {
  font-weight: 700;
}
.rules a {
  color: #007bff;
}

.contacts {
  margin: 50px 0 100px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contacts {
    margin: 50px 0;
  }
}
.contacts__inner {
  max-width: 511px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contacts__inner {
    padding: 20px;
    border-radius: 10px;
  }
}
.contacts__inner:before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/bg-contact.png");
  height: 100%;
  width: 1000px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -50%;
  z-index: -1;
}
.contacts__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .contacts__title {
    font-size: 24px;
  }
}
.contacts__form .field {
  max-width: 310px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .contacts__form .field {
    max-width: 100%;
  }
}
.contacts .showcase__btn {
  max-width: 310px;
  margin: 0 auto;
  font-size: 14px;
  margin-top: 40px;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: 65px;
}

.news {
  margin: 50px 0 100px;
}
@media only screen and (max-width: 767px) {
  .news {
    margin: 50px 0;
  }
}
.news__title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .news__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.news__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .news__items {
    grid-gap: 20px;
  }
}
.news__item {
  background: #fff;
  border-radius: 20px;
  color: #333;
  padding: 30px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .news__item {
    padding: 20px;
  }
}
.news__label {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .news__label {
    font-size: 18px;
  }
}
.news__data {
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .news__data {
    font-size: 14px;
  }
}
.news__text {
  color: #828282;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .news__text {
    font-size: 14px;
  }
}
.news__razdel {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #828282;
}
@media only screen and (max-width: 767px) {
  .news__razdel {
    font-size: 14px;
  }
}
.news__razdel span {
  color: #333;
  margin-left: 10px;
}
.news__more {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .news__more {
    font-size: 14px;
  }
}

.modal {
  display: none;
  max-width: 520px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
}
.modal__title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
}
.modal .field {
  margin-bottom: 20px;
}
.modal .field__label {
  margin-bottom: 7px;
}
.modal .showcase__btn {
  height: 66px;
  width: 255px;
  padding: 0;
  margin: 0 auto;
  font-size: 16px;
  margin-top: 50px;
}
.modal__links {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__link {
  color: #007bff;
  font-size: 14px;
  font-weight: 700;
}

.lk {
  margin: 50px 0 100px;
}
@media only screen and (max-width: 991px) {
  .lk {
    margin: 50px 0;
  }
}
.lk__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media only screen and (max-width: 767px) {
  .lk__inner {
    display: block;
  }
}
.lk__content {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  width: 100%;
  padding: 70px;
  font-size: 17px;
}
@media only screen and (max-width: 991px) {
  .lk__content {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .lk__content {
    padding: 40px 20px;
    border-radius: 15px;
  }
}
.lk__sidebar {
  flex-shrink: 0;
}
.lk__label {
  font-size: 20px;
  font-weight: 600;
}
.lk__info {
  background: url("../images/lk-img.png");
  height: 153px;
  width: 153px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 100px;
}
@media only screen and (max-width: 767px) {
  .lk__info {
    margin-left: 0;
    margin-top: 30px;
  }
}
.lk__price {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #fff;
}
.lk__price p {
  font-size: 40px;
  font-weight: 900;
}
.lk__price span {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 15px;
}
.lk__nav {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .lk__nav {
    display: flex;
    align-items: center;
    overflow: scroll;
    margin-bottom: 40px;
    margin-right: -10px;
    padding-right: 10px;
  }
  .lk__nav::-webkit-scrollbar {
    display: none;
  }
}
.lk__nav li {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .lk__nav li {
    margin-bottom: 0;
  }
}
.lk__nav li:last-child {
  margin-bottom: 0;
}
.lk__nav li.active a {
  color: #333;
  font-weight: 700;
}
.lk__nav li.active a::before {
  opacity: 1;
  visibility: visible;
}
.lk__nav li a {
  font-size: 20px;
  color: #828282;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lk__nav li a {
    white-space: nowrap;
    font-size: 16px;
    border-bottom: 1px solid #d4d3d3;
    padding: 0 15px 20px;
  }
}
.lk__nav li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 2px;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .lk__nav li a:before {
    bottom: -1px;
    top: auto;
    left: 0;
    width: 100%;
    background: #007bff;
  }
}
.lk-cabinet__title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .lk-cabinet__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.lk-cabinet .field {
  margin-bottom: 25px;
}
.lk-cabinet .field__label {
  margin-bottom: 10px;
}
.lk-table {
  overflow: scroll;
}
.lk-table table {
  border: 1px solid #dee2e6;
  width: 100%;
  color: #212529;
  border-collapse: collapse;
}
.lk-table table thead tr th {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .lk-table table thead tr th {
    font-size: 15px;
  }
}
.lk-table table tbody tr td .empty {
  padding: 20px;
}


.field select {
  border: none;
  font-size: 18px;
  border-bottom: 2px solid #56ccf2;
  padding-bottom: 15px;
  width: 100%;
  resize: none;
}

.bank_select_not_found{
  text-decoration: underline;
  font-size: 10px;
  color: #56ccf2;
  cursor: pointer;
  margin-bottom: 20px;
}

.bank_input_class{

}

.field-exchangeform-field_id_16{
  margin-bottom: 0!important;
}