@charset "UTF-8";
*: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: "Literata", sans-serif;
  font-weight: 400;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  color: #fff;
  background: linear-gradient(180deg, rgb(38, 13, 13) 0%, rgb(11, 23, 16) 50%, rgb(38, 13, 13) 100%);
  background: linear-gradient();
}

h1 {
  font-size: 32px;
  margin: 25px 0;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}

h2 {
  font-size: 28px;
  margin: 20px 0;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-size: 20px;
  margin: 20px 0;
  font-weight: 700;
  line-height: 120%;
}

ul {
  list-style: disc;
  padding: 0 0 0 30px;
}

ol {
  list-style: decimal;
  padding: 0 0 0 30px;
}
ol li::marker {
  font-weight: 600;
}

p {
  line-height: 24px;
  margin: 15px 0;
}

li {
  line-height: 24px;
}

strong {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 1rem 0;
}
table p {
  margin: 0;
}
table tr td {
  padding: 16px;
  border: 1px solid #fff;
}
table tbody tr:first-child td {
  background-color: #0c6c0c;
  font-weight: 600;
  text-align: center;
}

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

.btn {
  cursor: pointer;
  padding: 12px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 16px 0;
  min-height: 65px;
  background-color: rgb(17, 9, 5);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header .container .logo {
  flex: 0 0 120px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
}
.header__nav li {
  font-weight: 600;
  position: relative;
  font-size: 14px;
}
.header__nav li a {
  padding: 5px 12px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}
.header__nav li a:hover {
  color: #0c6c0c;
}
.header__btns {
  display: flex;
  gap: 1rem;
}
.header__btns .btn-1 {
  background-color: #707374;
}
.header__btns .btn-1:hover {
  background-color: #3d4041;
}
.header__btns .btn-2 {
  background-color: rgb(5, 164, 31);
}
.header__btns .btn-2:hover {
  background-color: rgb(3, 122, 23);
}
.header .burger {
  display: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 64px;
}
.main .content {
  margin: 50px auto;
}
.main .content a {
  color: #18a6e8;
}
.main .content img {
  max-width: 50%;
  margin: 20px auto;
  display: flex;
}
.main .banner {
  background: url("../img/banner.webp") center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
}
.main .banner__content {
  background-color: rgba(0, 0, 0, 0.6235294118);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 40%;
  min-height: 250px;
}
.main .banner__text {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 15px #fff;
}
.main .banner .btn {
  background-color: rgb(5, 164, 31);
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  width: 300px;
  text-align: center;
}
.main .banner .btn:hover {
  background-color: rgb(3, 122, 23);
}
.main .form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}
.main .form .input {
  width: 100%;
}
.main .form .btn {
  background-color: rgb(5, 164, 31);
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}
.main .form input,
.main .form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #fff;
  font-size: 14px;
  resize: none;
  width: 100%;
}
.main .form input::-moz-placeholder, .main .form textarea::-moz-placeholder {
  opacity: 0.5;
}
.main .form input::placeholder,
.main .form textarea::placeholder {
  opacity: 0.5;
}
.main .form textarea {
  min-height: 150px;
}

.footer {
  background-color: rgb(17, 9, 5);
  padding: 2rem 1rem;
}
.footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
}
.footer__nav li {
  font-weight: 600;
  position: relative;
  font-size: 14px;
}
.footer__nav li a {
  padding: 5px 12px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}
.footer__nav li a:hover {
  color: #0c6c0c;
}
.footer__providers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer__providers p {
  font-size: 14px;
}
.footer__providers a {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
}
.footer__providers img {
  height: 30px;
}
.footer .support {
  font-size: 14px;
}
.footer .coop {
  font-size: 12px;
  text-align: center;
  color: rgb(213, 213, 213);
}
.footer .coop a {
  color: rgb(5, 164, 31);
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  table {
    font-size: 14px;
    display: block;
  }
  table tr td {
    padding: 12px;
  }
  li {
    font-size: 14px;
  }
  .container {
    max-width: 100%;
  }
  .btn {
    padding: 8px;
    font-size: 12px;
  }
  .header {
    padding: 12px 0;
  }
  .header__nav {
    display: none;
  }
  .header__btns .btn-1 {
    display: none;
  }
  .header .header__nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    padding: 1rem 1rem;
    width: 100%;
    background-color: rgb(17, 9, 5);
    gap: 1rem;
  }
  .header .header__nav.active li,
  .header .header__nav.active a {
    width: 100%;
  }
  .header .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header .burger::after, .header .burger::before {
    content: "";
  }
  .header .burger::after, .header .burger::before,
  .header .burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
  }
  .header .burger::before {
    top: 0;
  }
  .header .burger::after {
    bottom: 0;
  }
  .header .burger span {
    top: 9px;
  }
  .header .burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header .burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header .burger.active span {
    transform: scale(0);
  }
  .main {
    padding: 0 0 30px;
  }
  .main .content {
    margin: 30px auto;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .banner {
    background: url("../img/banner.webp") left/cover no-repeat;
    min-height: 400px;
    padding: 0;
    justify-content: center;
  }
  .main .banner__content {
    max-width: 90%;
    gap: 1rem;
  }
  .main .banner__text {
    font-size: 24px;
  }
  .main .banner .btn {
    width: 100%;
  }
  .main .form {
    max-width: 100%;
  }
  .footer__nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__providers {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .footer__providers p {
    text-align: center;
  }
  .footer__providers img {
    height: 20px;
  }
}