/* CSS Document */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Focus styles */
:focus {
  outline: 2px solid #538135;
  outline-offset: 2px;
}

body {
  line-height: 1.5;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem; /* 16px */
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

/* Reset end */

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9;
  position: sticky;
  top: 0; /* рекомендую добавить, чтобы sticky работал */
  z-index: 10;
}

/* Header */
.header {
  width: 100%;
  position: sticky;
  margin: 0 auto;
  border-bottom: 1px solid #d9d9d9;
  top: 0;
  background: #f9f9f9;
  z-index: 11;
}

.header__logo {
  width: 100%;
  height: 170px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.logo_one {
  max-width: 300px;
  height: 180px;
  display: block;
}
.logo_two {
  width: 260px;
  height: 160px;
  padding-right: 1.875rem; /* 30px */
  object-fit: contain;
}

/* Заголовки */
.element_1 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.625rem; /* 26px */
  color: #538135;
  text-align: center;
  text-transform: uppercase;
  margin-top: 5rem; /* 80px */
  height: auto;
}

.element_2 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem; /* 18px */
  line-height: 2rem; /* 32px */
  color: #538135;
  text-align: center;
  margin-top: 0.3rem; /* 5px */
}

.element_3 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  line-height: 2rem; /* 32px */
  color: #538135;
  text-align: center;
  margin-top: 0.625rem; /* 10px */
}

.element_4 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  line-height: 1.5625rem; /* 25px */
  color: #4472c4;
  text-align: center;
  margin-top: 2.25rem; /* 36px */
  height: auto;
}

.element_5 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  color: #c00000;
  text-align: center;
  text-transform: uppercase;
  margin-top: 2.2rem; /* 35px */
  height: auto;
}

/* Images container */
.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem 0;
}

.image-item {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.image-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.caption {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.3125rem; /* 21px */
  text-align: center;
  color: #fafafa;
  margin-top: 1.25rem; /* 20px */
}

/* Brightness hover */
.zoom-image {
  transition: filter 0.3s ease;
  filter: brightness(100%);
}

.zoom-image:hover {
  filter: brightness(130%);
}

/* Button container */
.container_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.element_6 {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem; /* 14px */
  color: #538135;
  text-transform: uppercase;
  padding-left: 1.25rem; /* 20px */
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #fafafa;
  text-transform: uppercase;
  text-decoration: none;
  width: 140px;
  height: 36px;
  background: #538135;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* 16px */
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.btn:hover,
.btn:focus {
  background: #74a851;
  outline: none;
}

.element_7 {
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem; /* 8px 8px 8px 20px */
}

.element_8 {
  width: 100%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 2.5rem; /* 40px */
  padding: 1.25rem; /* 20px */
}

.rejestracja {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #c00000;
  padding-right: 1.875rem; /* 30px */
}

.element_9 {
  width: 100%;
  padding-left: 1.25rem; /* 20px */
}

.color_inner {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #538135;
}

.element_10,
.element_11,
.element_17 {
  width: 100%;
  margin-top: 0.9375rem; /* 15px */
  padding-left: 1.25rem; /* 20px */
}

.element_12 {
  width: 100%;
  line-height: 2.5rem; /* 40px */
  margin-top: 1.5625rem; /* 25px */
  margin-bottom: 0.625rem; /* 10px */
  padding-left: 1.25rem; /* 20px */
}

.element_13 {
  margin: 0;
  padding-left: 4.375rem; /* 70px */
}

.element_14,
.element_16 {
  width: 100%;
  padding-left: 1.25rem;
  margin-top: 0.9375rem; /* 15px */
}

.element_15 {
  width: 100%;
  display: flex;
  align-items: center;
}

.kont {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1rem + 1vw, 1.25rem); /* от 16 до 20px */
}

/* Media Queries */

/* Мобильные телефоны */
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  .element_1 {
    font-size: 1.3rem;
    margin-top: 3rem;
  }
  .element_2 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0.2rem;
  }
  .element_3 {
    font-size: 0.75rem;
    line-height: 1.5rem;
    margin-top: 0.4rem;
  }
  .image-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0.5rem 0;
  }
  .btn {
    width: 100%;
    max-width: 140px;
    font-size: 0.9rem;
  }
  .element_8 {
    padding: 1rem 0.5rem;
  }
}

/* Планшеты */
@media (min-width: 481px) and (max-width: 768px) {
  .element_1 {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
  .element_2 {
    font-size: 1.1rem;
  }
  .element_3 {
    font-size: 0.85rem;
  }
  .image-item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Маленькие ноутбуки */
@media (min-width: 769px) and (max-width: 1024px) {
  .element_1 {
    font-size: 1.5rem;
    margin-top: 4.5rem;
  }
  .element_2 {
    font-size: 1.125rem;
  }
  .element_3 {
    font-size: 0.9rem;
  }
  .image-item {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

/* Десктопы - базовые стили */

/* Конец CSS */
