:root{
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --bs-primary: #318741;
  --green-light: #8EF357;
  --orange: #ECC058;
  --orange-accent: #eb4522;
  --bg: #f7f9f9;
  --dark-green: #243B28;
  --team-bg: 247, 249, 249;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: "Gilroy", var(--default-font-family);
  font-weight: 400;
  width: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
input, select, textarea, button{
  outline: 0;
}
.main-content .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.main-content{
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 64px;
  position: relative;
  width: 100%;
  max-width: 1240px;
  z-index: 56;
  overflow: hidden;
  margin-top: 20px;
}
.section {
  width: 100%;
  margin: 0 auto;
}
.is-hidden {
  display: none;
  pointer-events: none;
  visibility: hidden;
}
.btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  white-space: nowrap;
  font-family: Gilroy, var(--default-font-family);
}
.btn-success {
  background-color: var(--bs-primary);
}
.section-header{
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: black;
  font-family: Gilroy, var(--default-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  /*white-space: nowrap;*/
  z-index: 58;
}
/* ГЛАВНЫЙ КОНТЕЙНЕР И СЕКЦИИ */
@media (max-width: 1440px) {
  .main-content {
    padding: 0 20px
  }
}
@media (max-width: 1240px) {
  .section-header {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .main-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-header {
    font-size: 26px;
  }
}
@media (max-width: 374px) {
  .main-content{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  img, svg, video, canvas {
    max-width: 100%;
    height: auto;
  }  
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #333;
    max-width: 90%;
    width: auto;
}
.cookie-consent p {
    margin: 0;
    line-height: 1.4;
}
.cookie-consent .btn-cookie {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.2s;
}
.cookie-consent .btn-cookie:hover {
    background-color: #266b33;
}
@media (max-width: 576px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        padding: 15px;
    }
}
