:root {
  --color-black: #000;
  --color-white: #f5ffff;
  --color-blue: #09f;
  --color-text: #042900;
  --color-green: #00886b
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/verdana/Verdana.ttf) format("ttf")
}

*,
:after,
:before {
  box-sizing: inherit
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth
}

body,
html {
  max-width: 100%
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-white);
  color: var(--color-text);
  font-family: Verdana, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 28px;
  margin: 0;
  min-width: 320px;
  position: relative;
  text-rendering: optimizeLegibility
}

img,
picture {
  display: block;
  height: auto;
  max-width: 100%
}

a {
  color: #288500;
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:hover {
  color: var(--color-text)
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px
}

h1,
h2 {
  margin-bottom: 30px;
  margin-top: 0
}

h2 {
  font-size: 25px;
  line-height: 37px
}

h3 {
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 25px;
  margin-top: 0
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 15px;
  width: 1140px
}

.header {
  background: var(--color-green);
  padding: 30px 0
}

.header__logo {
  width: 160px
}

.header__btn {
  display: flex;
  gap: 25px
}

.header .container {
  justify-content: space-between
}

.btn,
.header .container {
  align-items: center;
  display: flex
}

.btn {
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  justify-content: center;
  line-height: 1;
  padding: 10px 25px;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content
}

.btn-blue {
  background: var(--color-blue);
  border: 1px solid var(--color-blue)
}

.btn-blue:hover {
  background: hsla(0, 0%, 100%, 0);
  color: #fff
}

.btn-border {
  border: 1px solid var(--color-blue)
}

.btn-border:hover {
  background: var(--color-blue);
  color: #fff
}

.img-cov,
.small-img {
  margin: 0 auto 25px;
  width: 200px
}

.img-cov br,
.small-img br{
  display: none;
}

.big-img,
.img-text {
  margin: 0 auto 25px;
  max-width: 890px
}

.big-img img,
.img-text img {
  margin: 0 auto;
  max-width: 100%;
  width: auto
}

.table {
  margin-bottom: 30px;
  overflow-x: auto
}

.table table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 100%;
  width: auto
}

.table td {
  border: 1px solid #000;
  padding: 15px
}

.content {
  padding-bottom: 40px;
  padding-top: 40px
}

.page-404 {
  padding: 100px 0;
  text-align: center
}

.page-404 .btn {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content
}

.page-404 h1,
.page-404 p {
  max-width: 100%
}

.footer {
  background: #004b3b;
  margin-top: 25px;
  padding: 50px 0
}

.footer .container {
  align-items: center;
  display: flex;
  justify-content: space-between
}

.copyright__logo {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: none
}

.copyright__text {
  color: #fff;
  font-size: 12px
}

.payment-methods {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, 1fr)
}

.payment-methods__item {
  align-items: center;
  background: #00382c;
  border-radius: 20px;
  display: inline-flex;
  height: 60px;
  justify-content: center;
  width: 120px
}

@media screen and (max-width:992px) {
  .header {
    padding: 10px 0
  }

  .header .container {
    align-items: center;
    flex-direction: column;
    gap: 10px
  }

  .footer {
    padding: 25px 0
  }

  .footer .container {
    flex-direction: column-reverse
  }

  .payment-methods {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px
  }
}