@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&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-family: "Open Sans", sans-serif;
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  color: #333;
}

p {
  line-height: 150%;
  text-align: justify;
}

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

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

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

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

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #ff2400;
}

ol li::marker {
  font-weight: 600;
  font-size: 18px;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 15px 0;
  background: #fff;
}
.header .container {
  display: flex;
  justify-content: center;
}
.header .container .logo {
  flex: 0 0 250px;
}

.btn {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.main {
  height: 100%;
  flex: 1 1 auto;
}
.main .banner {
  background: #004239;
  color: #fff;
}
.main .banner .container {
  display: flex;
  justify-content: center;
}
.main .content {
  padding: 50px 0;
}
.main .content .container {
  max-width: 65vw;
}
.main .content .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}
.main .content .cards .card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  box-shadow: 0 10px 40px 0 rgba(109, 141, 173, 0.25);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.main .content .cards .card:hover {
  box-shadow: 0 15px 40px 0 rgba(109, 141, 173, 0.55);
}
.main .content .cards .card__img {
  width: 80px;
  height: 80px;
}
.main .content .cards .card__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.main .content .cards .card__bonus {
  font-weight: 600;
  font-size: 18px;
}
.main .content .cards .card__line {
  height: 50px;
  width: 1px;
  background-color: rgb(206, 206, 206);
}
.main .content .cards .card__rate {
  font-weight: 600;
}
.main .content .cards .card__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main .content .cards .card__btn {
  display: flex;
  justify-content: center;
  width: 150px;
  border-radius: 20px;
  padding: 12px 10px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.main .content .cards .card__btn:first-child {
  background-color: #a80000;
}
.main .content .cards .card__btn:first-child:hover {
  background-color: #db0404;
}
.main .content .cards .card__btn:last-child {
  background-color: #000;
}
.main .content .cards .card__btn:last-child:hover {
  background-color: #2f2e2e;
}
.main .content .cards .card {
  position: relative;
}
.main .content .cards .card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005504;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-top-left-radius: 5px;
  z-index: 99;
}
.main .content .cards .card:nth-child(1)::before {
  content: "1";
}
.main .content .cards .card:nth-child(2)::before {
  content: "2";
}
.main .content .cards .card:nth-child(3)::before {
  content: "3";
}
.main .content .cards .card:nth-child(4)::before {
  content: "4";
}
.main .content .cards .card:nth-child(5)::before {
  content: "5";
}
.main .content .cards .card:nth-child(6)::before {
  content: "6";
}
.main .content .cards .card:nth-child(7)::before {
  content: "7";
}
.main .content .cards .card:nth-child(8)::before {
  content: "8";
}
.main .content .cards .card:nth-child(9)::before {
  content: "9";
}
.main .content .cards .card:nth-child(10)::before {
  content: "10";
}
.main .content .cards .card:nth-child(11)::before {
  content: "11";
}
.main .content .cards .card:nth-child(12)::before {
  content: "12";
}
.main .content .cards .card:nth-child(13)::before {
  content: "13";
}
.main .content .cards .card:nth-child(14)::before {
  content: "14";
}
.main .content .cards .card:nth-child(15)::before {
  content: "15";
}
.main .content .cards .card:nth-child(16)::before {
  content: "16";
}
.main .content .cards .card:nth-child(17)::before {
  content: "17";
}
.main .content .cards .card:nth-child(18)::before {
  content: "18";
}
.main .content .cards .card:nth-child(19)::before {
  content: "19";
}
.main .content .cards .card:nth-child(20)::before {
  content: "20";
}
.main .content p {
  margin: 15px 0;
}

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

.footer {
  padding: 30px 0;
  background-color: #222;
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: center;
}

@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;
  }
  h3 {
    font-size: 24px;
  }
  .header {
    padding: 10px 0;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 200px;
    margin: 0 auto;
  }
  .main .content {
    padding: 30px 0;
  }
  .main .content .container {
    max-width: 100%;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .content .cards .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main .content .cards .card__line {
    display: none;
  }
  .main .content .cards .card__btns {
    flex-direction: row;
  }
  .main .content .cards .card__btn {
    width: 120px;
  }
  .footer {
    padding: 20px 0;
  }
}