@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,regular,700,900&display=swap);
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: url("../img/fon.jpg") center/cover no-repeat;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table thead tr td {
  background-color: #ebf2fa;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 0 5px gray;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header .container .logo {
  flex: 0 0 60px;
}

.header .container .logo a {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header .container .logo a img {
  max-width: 150px;
}
.header .container .logo a span {
  font-size: 23px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}
.header .container .logo a span .green {
  background-color: rgb(97, 177, 159);
  padding: 0 5px;
  color: #fff;
  border-radius: 10px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .container .auth .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 150px;
  border-radius: 20px;
}
.header .container .auth .btn-1 {
  background-color: rgb(255, 62, 95);
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.header .container .auth .btn-1:hover {
  box-shadow: 0 0 15px rgb(255, 62, 95);
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}
.main .cards .cards__wrapper {
  background-color: #ff008f;
  border-radius: 10px;
  position: relative;
}
.main .cards .card__header {
  padding: 8px 12px;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.main .cards .card {
  display: flex;
}
.main .cards .card__left {
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  align-items: center;
  margin: 2px 0 2px 2px;
  background-color: #ffffff;
  border-bottom-left-radius: 8px;
  padding: 10px 0;
}

.main .cards .card__left img {
  width: 150px;
}
.main .cards .card__left .rate {
  font-weight: 600;
}
.main .cards .card__left .btns {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex: 1;
}
.main .cards .card__left .btns .btn {
  border-radius: 10px;
  width: 150px;
  display: flex;
  justify-content: center;
  padding: 8px;
  transition: 0.2s all ease-in-out;
  text-transform: uppercase;
  font-weight: 500;
}
.main .cards .card__left .btns .btn-2 {
  background-color: rgb(0, 251, 8);
  color: #fdf5f5;
  font-weight: bolder;
}
.main .cards .card__left .btns .btn-2:hover {
  background-color: #ff008f;
}
.main .cards .card__center {
  background-color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 2px 0;
  flex: 1;
}
.main .cards .card__center .title {
  font-size: 24px;
  font-weight: 600;
}
.main .cards .card__center .list {
  padding: 0 25px;
  list-style: none;
  font-size: 15px;
  position: relative;
}
.main .cards .card__center .list li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url("../img/arrow.svg") center/cover no-repeat;
  background-size: 15px;
  width: 20px;
  height: 20px;
}
.main .cards .card__center .bonus {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #d5ebde;
  color: #156537;
  padding: 12px;
  border-radius: 10px;
}
.main .cards .card__center .bonus span:first-child {
  text-transform: uppercase;
  font-weight: 500;
}
.main .cards .card__center .bonus span:last-child {
  font-size: 24px;
  font-weight: 600;
}
.main .cards .card__center .bonus img {
  max-width: 40px;
}
.main .cards .card__center .bonus .bonus-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main .cards .card__right {
  background-color: #fff;
  margin: 2px 2px 2px 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 calc(33% - 5px);
  border-bottom-right-radius: 8px;
}
.main .cards .card__right .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  margin-bottom: 20px;
}
.main .cards .card__right .list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.main .cards .card__right .list li img {
  max-width: 15px;
}
.main .cards .card__right .list.active li:nth-child(n + 5) {
  display: flex;
}
.main .cards .card__right .title {
  display: flex;
  justify-content: space-between;
  color: #767676;
}
.main .cards .card__right .payments {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.payments img {
  max-width: 50px;
}
.main .cards .card__right .payments li {
  border-radius: 10px;
  padding: 2px;
  display: flex;
  align-items: center;
}
.main .cards .card__right .payments.active li:nth-child(n + 5) {
  display: flex;
}
.main .content {
  padding-bottom: 30px;
}
.main .content p {
  margin: 15px 0;
}
.main .content ul li {
  position: relative;
  padding-left: 25px;
}
.main .content ul li::before {
  position: absolute;
  content: "";
  background: url("../img/italy.png") center/cover no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
  top: 2px;
}
.main .content ol li {
  position: relative;
  padding-left: 25px;
}
.main .content ol li::before {
  position: absolute;
  content: "";
  background: url("../img/italy.png") center/cover no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
  top: 2px;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 5px gray;
}

@media (max-width: 1199px) {
  .main .cards {
    max-width: 100%;
    padding: 30px 0;
  }
  .main .cards .card__header {
    font-size: 18px;
  }
  .main .cards .card {
    flex-direction: column;
  }
  .main .cards .card__left {
    width: auto;
    margin: 0 auto;
    flex-direction: column;
    padding: 10px;
    border-bottom-left-radius: 0;
    margin: 0 2px;
    flex-wrap: wrap;
  }
  .main .cards .card__left .btns {
    justify-content: center;
    align-items: baseline;
    flex: 1 1 auto;
    width: 100%;
  }
  .main .cards .card__left .btns .btn {
    width: 100%;
  }
  .main .cards .card__center {
    margin: 0 2px;
    padding: 10px;
  }
  .main .cards .card__center .btns .btn {
    font-size: 14px;
  }
  .main .cards .card__right {
    margin: 0 2px 2px 2px;
    padding: 10px;
    border-bottom-left-radius: 8px;
  }
  .main .cards .card__right .title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  table {
    display: block;
  }
  .container {
    max-width: 100%;
  }
  .main .content img {
    max-width: 100%;
  }
}
