@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

a {
  color: inherit;
}

/*--------------------*/
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
}

.swiper-horizontal {
  touch-action: pan-y;
}

:root {
  --green: #019944;
  --black: #111;
  --white: #fff;
  --grey-dark: #4e5362;
  --grey-light: #c3c3c3;
  --bg: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: var(--black);
  background-color: var(--bg);
  min-width: 500px;
}

my-container {
  max-width: 1520px;
  padding: 0 20px;
  margin: 0 auto;
  display: block;
}

h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 800px) {
  h2 {
    font-size: 34px;
  }
}

.btn {
  padding: 0 32px;
  height: 55px;
  border-radius: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}
.btn > * {
  flex-shrink: 0;
}

.header {
  padding: 20px 0;
}
.header__content ul {
  display: flex;
  align-items: center;
}
.header__content li a {
  display: block;
  padding: 10px 20px;
  transition: 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}
.header__content li a:hover {
  text-decoration-color: #111;
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.header__left a:hover {
  opacity: 0.7;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header language-switcher,
.header call-link,
.header support-project,
.header burger-trigger {
  display: block;
  height: 55px;
  border-radius: 55px;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  transition: outline 0.3s;
  outline: 1px solid transparent;
}

/* .header language-switcher a, */
.header call-link a,
.header support-project a,
.header burger-trigger a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.header language-switcher:hover,
.header call-link:hover,
.header support-project:hover,
.header burger-trigger:hover {
  outline: 1px solid #111;
}
.header language-switcher {
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  justify-content: center;
}
.header call-link {
  width: 255px;
  padding: 0 32px;
  justify-content: space-between;
}
.header call-link span {
  display: block;
  font-style: normal;
}
.header call-link span:first-child {
  font-size: 10px;
  color: var(--grey-dark);
}
.header call-link span:last-child {
  font-size: 14px;
  font-weight: 600;
}
.header support-project {
  width: 255px;
  padding: 0 32px;
  justify-content: space-between;
  background: var(--green);
  font-size: 16px;
  font-weight: 600;
  color: white;
}
.header support-project:hover {
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
}
.header burger-trigger {
  padding: 0 32px;
  cursor: pointer;
}

.header .min-h-o {
  min-height: 0;
  overflow: hidden;
}
.header .burger-flex {
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  justify-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .header .burger-flex {
    grid-template-columns: 1fr;
  }
}
.header .burger-flex nav {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .header .burger-flex nav {
    grid-column: unset;
  }
}
.header burger-trigger {
  display: none;
}
.header #burger-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s;
}

@media (max-width: 1500px) {
  .header__center {
    display: none;
  }
  .header__right call-link {
    display: none;
  }
  .header__right support-project {
    display: none;
  }
  .header burger-trigger {
    display: flex;
  }
  .header #burger-content.active {
    grid-template-rows: 1fr;
  }
}
.intro {
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.intro__bg {
  margin: 0 20px;
  border-radius: 16px;
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
}
.intro__content {
  padding: 80px 0;
}
.intro__content hgroup {
  color: white;
  border-bottom: 1px solid var(--white);
  margin-bottom: 100px;
}
@media (max-width: 800px) {
  .intro__content hgroup {
    text-align: center;
    margin-bottom: 60px;
  }
}
.intro__content hgroup p {
  margin-bottom: 20px;
}
.intro__content hgroup h1 {
  font-size: 86px;
  line-height: 1;
  font-weight: 600;
  max-width: 700px;
  margin-bottom: 60px;
  letter-spacing: -2px;
}
@media (max-width: 800px) {
  .intro__content hgroup h1 {
    font-size: 56px;
  }
}
.intro__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .intro__row {
    flex-direction: column;
  }
}
.intro__left {
  flex: 0 1 900px;
  position: relative;
}
@media (max-width: 1200px) {
  .intro__left {
    flex: 1;
  }
}
.intro__drone {
  position: absolute;
  top: 0;
  right: -50px;
  transform: rotate(20deg);
}
@media (max-width: 1200px) {
  .intro__drone {
    display: none;
  }
}
.intro__right {
  flex: 0 0 350px;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
}
.intro__right img {
  width: 100%;
  margin-bottom: 30px;
}
.intro__right h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 70px;
}
.intro__right a {
  background: var(--black);
  color: white;
  justify-content: center;
  transition: 0.3s;
}
.intro__right a:hover {
  background: var(--green);
}
.intro__buttons {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .intro__buttons {
    flex-direction: column;
    gap: 20px;
  }
}
.intro__buttons svg {
  width: 16px;
  height: 16px;
}



.intro__buttons a:nth-child(1) {
  background-color: #fff;
}
.intro__buttons a:nth-child(1) svg {
  stroke: black;
}

.intro__buttons a:nth-child(2) {
  background-color: #fff;
}
.intro__buttons a:nth-child(2) svg {
  stroke: black;
}

.intro__buttons a:last-child {
  color: #fff;
  border: 2px solid white;
}
.intro__buttons a:last-child svg {
  stroke: white;
}



.intro__buttons a {
  flex-grow: 1;
  transition: background-color 0.3s;
}
@media (max-width: 1000px) {
  .intro__buttons a {
    width: 400px;
  }
}
.intro__buttons a:hover {
  background-color: #fff;
  color: var(--green);
}
.intro__buttons a:hover svg {
  stroke: var(--green);
}

.drones {
  padding: 70px 0;
}
.drones__content {
  position: relative;
}
.drones__content h2 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
}
@media (max-width: 800px) {
  .drones__content h2 {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
.drones__slide {
  border-radius: 16px;
  overflow: hidden;
}
.drones__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.drones .swiper-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .drones .swiper-wrapper {
    margin-bottom: 40px;
  }
}
.drones .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.drones .swiper-pagination-bullet {
  border-radius: 10px;
  width: 8px;
  height: 8px;
  background: var(--grey-light);
  cursor: pointer;
}
.drones .swiper-pagination-bullet:hover {
  opacity: 0.6;
}
.drones .swiper-pagination-bullet-active {
  background: var(--grey-dark);
}
.drones .swiper-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 24px;
  right: 0;
}
@media (max-width: 800px) {
  .drones .swiper-buttons {
    top: 12px;
  }
}
@media (max-width: 600px) {
  .drones .swiper-buttons {
    display: none;
  }
}
.drones .swiper-button-prev,
.drones .swiper-button-next {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.drones .swiper-button-prev svg,
.drones .swiper-button-next svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--grey-dark);
}
.drones .swiper-button-prev:hover svg,
.drones .swiper-button-next:hover svg {
  stroke: var(--green);
}
.drones .swiper-button-prev {
  transform: scaleX(-1) rotate(45deg);
}
.drones .swiper-button-next {
  transform: rotate(45deg);
}

.support {
  padding: 70px 0;
}
.support__content h2 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
}
@media (max-width: 800px) {
  .support__content h2 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.support__content img {
  width: 100%;
  aspect-ratio: 3;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 32px;
}
.support__content h3 {
  font-size: 36px;
  font-weight: 600;
  padding: 0 12px;
  margin-bottom: 20px;
  min-height: 97px;
}
.support__content h3 + p {
  padding: 0 12px;
  margin-bottom: 60px;
}
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}
@media (max-width: 1400px) {
  .support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
@media (max-width: 1000px) {
  .support__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.support__buttons {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.support__buttons svg {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
.support__buttons a {
  flex-grow: 1;
  transition: 0.3s;
}
.support__buttons a:first-child {
  background: var(--black);
  color: white;
}
.support__buttons a:first-child svg {
  stroke: white;
}
.support__buttons a:first-child:hover {
  background: var(--green);
}
.support__buttons a:last-child {
  border: 2px solid var(--black);
  color: var(--black);
}
.support__buttons a:last-child svg {
  stroke: var(--black);
}
.support__buttons a:last-child:hover {
  border: 2px solid var(--green);
  color: var(--green);
}
.support__buttons a:last-child:hover svg {
  stroke: var(--green);
}

.history {
  padding: 70px 0;
}
.history__content h2 {
  padding-bottom: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--grey-light);
}
@media (max-width: 800px) {
  .history__content h2 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.history__content p {
  font-size: 24px;
  margin-bottom: 24px;
}
.history__content small {
  font-size: 16px;
}
.history__content small span {
  color: var(--green);
}
.history__content ul {
  margin-top: 60px;
  display: flex;
  gap: 20px;
}
@media (max-width: 800px) {
  .history__content ul {
    margin-top: 30px;
    flex-direction: column;
  }
}
.history__content li {
  flex: 1;
}
.history__content dt {
  font-size: 16px;
  color: var(--grey-dark);
  margin-bottom: 16px;
}
.history__content dd {
  font-size: 36px;
}
.history__main-image {
  width: 100%;
  aspect-ratio: 3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .history__main-image {
    aspect-ratio: 2;
  }
}
@media (max-width: 800px) {
  .history__main-image {
    margin-bottom: 40px;
  }
}
.history__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1000px) {
  .history__row {
    flex-direction: column;
  }
}
.history__text {
/*   flex: 0 1 840px; */
	width: 100%;
}
@media (max-width: 1000px) {
  .history__text {
    flex: unset;
  }
}
.history__figures {
  flex: 0 0 460px;
}
@media (max-width: 1200px) {
  .history__figures {
    flex: 0 0 300px;
  }
}
@media (max-width: 1000px) {
  .history__figures {
    flex: unset;
    width: 100%;
    order: -1;
  }
}
.history__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 20px;
}
@media (max-width: 1200px) {
  .history__grid {
    gap: 40px 20px;
  }
}
@media (max-width: 1000px) {
  .history__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .history__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news {
  padding: 70px 0;
}
.news__content h2 {
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .news__content h2 {
    margin-bottom: 40px;
  }
}
.news__content news-article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px;
  border-radius: 16px;
  background-color: white;
  position: relative;
}
.news__content news-article:first-child {
  grid-row: 1/3;
  grid-column: 1/3;
}
@media (max-width: 800px) {
  .news__content news-article:first-child {
    grid-row: unset;
    grid-column: unset;
  }
}
.news__content news-article:first-child h3 {
  font-size: 36px;
}
@media (max-width: 800px) {
  .news__content news-article:first-child h3 {
    font-size: 22px;
  }
}
.news__content news-article:nth-child(4) {
  grid-column: span 2;
}
@media (max-width: 800px) {
  .news__content news-article:nth-child(4) {
    grid-row: unset;
    grid-column: unset;
  }
}
.news__content news-article:hover h3 {
  color: var(--green);
}
.news__content news-article:hover svg {
  stroke: var(--green);
}
.news__content news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.news__content news-footer > * {
  flex-shrink: 0;
}
.news__content news-footer span {
  color: var(--grey-dark);
}
.news__content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  transition: 0.3s;
}
.news__content svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  transition: 0.3s;
  vertical-align: middle;
  margin-left: 10px;
}
.news__content a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .news__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
  }
}
.news__all {
  border: 1px solid var(--grey-light);
  border-radius: 100px;
  padding: 24px 32px;
  font-size: 24px;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__all > * {
  flex-shrink: 0;
}
.news__all:hover {
  border: 1px solid var(--green);
  color: var(--green);
}
.news__all:hover svg {
  stroke: var(--green);
}

.banner {
  margin-bottom: 140px;
  margin-top: 70px;
}
.banner__content {
  border-radius: 16px;
  padding: 80px 60px 90px 60px;
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
  position: relative;
}
@media (max-width: 1200px) {
  .banner__content {
    padding: 80px 30px;
  }
}
.banner__content h2 {
  font-size: 86px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
  color: white;
  max-width: 700px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .banner__content h2 {
    max-width: unset;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .banner__content h2 {
    font-size: 56px;
  }
}
.banner__content p {
  flex: 1 1 770px;
  font-size: 24px;
  color: white;
}
@media (max-width: 1200px) {
  .banner__content p {
    flex: unset;
    text-align: center;
  }
}
.banner__content a {
  flex: 0 1 530px;
  background-color: #fff;
  font-size: 24px;
  height: 88px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .banner__content a {
    flex: unset;
    max-width: 600px;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .banner__content a {
    max-width: 600px;
  }
}
.banner__content a:hover {
  color: var(--green);
}
.banner__content a:hover svg {
  stroke: var(--green);
}
.banner__content svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  transition: 0.3s;
}
.banner__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .banner__row {
    flex-direction: column;
    gap: 40px;
  }
}
.banner__drone {
  position: absolute;
  top: 80px;
  right: 30%;
  transform: rotate(-10deg);
  height: 190px;
}
@media (max-width: 1400px) {
  .banner__drone {
    right: 20%;
  }
}
@media (max-width: 1200px) {
  .banner__drone {
    display: none;
  }
}

.footer {
  max-width: 1920px;
  margin: 0 auto;
  color: white;
}
.footer__bg {
  margin: 0 20px;
  border-radius: 16px;
  background-color: black;
}
.footer__content {
  padding: 60px 0;
  border-bottom: 1px solid var(--grey-light);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 100px;
}
@media (max-width: 1400px) {
  .footer__grid {
    gap: 20px 60px;
  }
}
@media (max-width: 1200px) {
  .footer__grid {
    gap: 60px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 800px) {
  .footer__grid {
    gap: 60px 0px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.footer__left {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer__left {
    grid-column: span 4;
    text-align: center;
  }
}
.footer__left p {
  font-size: 24px;
  margin-top: auto;
}
.footer__nav {
  font-size: 14px;
}
@media (max-width: 800px) {
  .footer__nav {
    grid-column: span 2;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer__nav a {
  display: block;
}
.footer__nav a:hover {
  color: var(--green);
}
.footer__right {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 1200px) {
  .footer__right {
    grid-column: span 4;
    gap: 40px 0;
  }
}
@media (max-width: 800px) {
  .footer__right {
    gap: 20px 0;
  }
}
.footer__right a.btn {
  width: 100%;
  height: 70px;
  grid-column: span 2;
}
@media (max-width: 1200px) {
  .footer__right a.btn {
    grid-column: unset;
  }
}
@media (max-width: 800px) {
  .footer__right a.btn {
    max-width: 600px;
    grid-column: span 2;
  }
}
.footer__right a.btn svg {
  stroke: white;
  fill: white;
}
.footer__right .black {
  border: 2px solid var(--grey-light);
}
.footer__right .black:hover {
  background: var(--green);
}
.footer__right .green {
  background: var(--green);
}
.footer__right .green:hover {
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
}
.footer__block {
  font-size: 14px;
  color: var(--grey-light);
}
@media (max-width: 1200px) {
  .footer__block.block-second {
    justify-self: end;
  }
}
@media (max-width: 800px) {
  .footer__block.block-second {
    justify-self: unset;
  }
}
.footer__language-button {
  font-weight: 600;
  margin-top: 16px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 27px;
  border-radius: 100px;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.footer__language-button a:hover {
  color: var(--green);
}
.footer__icon {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  border: 2px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__icon svg {
  stroke: white;
  fill: white;
}
.footer__icon:hover {
  background: var(--green);
}
.footer .row {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.footer__sub {
  padding-top: 20px;
  padding-bottom: 60px;
  font-size: 14px;
  text-align: center;
  color: var(--grey-light);
}






.single {
  padding: 70px 0;
  font-size: 24px;
}
.single h1 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 800px) {
  .single h1 {
    font-size: 34px;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
.single h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .single h2 {
    font-size: 34px;
  }
}
.single h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .single h3 {
    font-size: 20px;
  }
}
.single h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .single h4 {
    font-size: 18px;
  }
}
.single p {
  font-size: 18px;
  margin-bottom: 10px;
}
.single img {
  width: 100%;
  margin: 20px 0;
}



.blog {
  padding: 70px 0;
  margin-bottom: 70px;
}
.blog h1 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 800px) {
  .blog h1 {
    font-size: 34px;
  }
}
@media (max-width: 800px) {
  .blog h1 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}.blog {
  padding: 70px 0;
  margin-bottom: 70px;
}
.blog h1 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 52px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 800px) {
  .blog h1 {
    font-size: 34px;
  }
}
@media (max-width: 800px) {
  .blog h1 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.blog img {
  width: 100%;
  aspect-ratio: 3;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 32px;
}
.blog h2 {
  font-size: 24px;
  font-weight: 600;
  padding: 0 12px;
  margin-bottom: 20px;
/*   min-height: 97px; */
}
.blog h2 + p {
  padding: 0 12px;
  margin-bottom: 20px;
  margin-top: auto;
}
.blog time {
  padding: 12px;
}
.blog a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
}
@media (max-width: 1400px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
@media (max-width: 1000px) {
  .blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  outline: 2px solid transparent;
}
.blog__item:hover {
  outline: 2px solid var(--green);
}





.faq {
  padding: 70px 0;
}
.faq__content h2 {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--grey-light);
}
@media (max-width: 800px) {
  .faq__content h2 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.faq__content a {
  text-decoration: underline;
}
.faq__content a:hover {
  text-decoration: unset;
}
.faq__content dl {
  border-radius: 16px;
  background-color: white;
}
.faq__content dl.opened dd {
  grid-template-rows: 1fr;
  padding: 32px;
  padding-top: 0;
}
.faq__content dl.opened svg {
  transform: rotate(180deg);
}
.faq__content dt {
  font-size: 24px;
  font-weight: 600;
  padding: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq__content dt:hover {
  opacity: 0.6;
}
.faq__content dd {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 32px;
  transition: 0.5s;
}
.faq__content svg {
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  transition: 0.5s;
}
.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .min-h-0 {
  min-height: 0;
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.popup.opened {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.popup__content {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 64px 32px;
  border-radius: 20px;
  flex-shrink: 0;
}
.popup__content h2 {
  text-align: center;
  margin-bottom: 24px;
}
.popup__content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup__content input {
  display: block;
  width: 100%;
  border: 1px solid black;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 55px;
  font-size: 16px;
}
.popup__content button {
  width: 100%;
  background: var(--black);
  color: white;
  font-size: 16px;
  text-align: center;
  justify-content: center;
}
















.song {
  margin: 0 auto;
  margin-bottom: 70px;
  max-width: 1920px;
}
.song__bg {
  margin: 0 20px;
  border-radius: 16px;
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
}
.song__content {
  padding: 80px 0;
}
.song__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
}
@media (max-width: 1400px) {
  .song__row {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .song__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.song__left {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1000px) {
  .song__left {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
.song__logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.song__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-wrap: balance;
}
.song__text h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -2px;
}
.song__text p {
  font-size: 20px;
}
.song__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.song__cta img {
  flex-shrink: 0;
}
.song__button {
  width: 100%;
  max-width: 400px;
}
.song__button .btn {
  width: 100%;
  justify-content: center;
}
.song__right {
  overflow: hidden;
  border-radius: 16px;
}
.song__right img {
  width: 100%;
}

.song-works {
  overflow: hidden;
  padding: 70px 0;
}
.song-works__content {
  position: relative;
}
.song-works__content hgroup {
  margin-bottom: 60px;
}
.song-works__slide {
  padding: 20px;
  padding-bottom: 32px;
  border-radius: 16px;
  background-color: rgba(0, 187, 78, 0.2);
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.song-works__slide video {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
}

.song-works .swiper-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 24px;
  right: 0;
}
@media (max-width: 800px) {
  .song-works .swiper-buttons {
    top: 12px;
  }
}
.song-works .swiper-button-prev,
.song-works .swiper-button-next {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.song-works .swiper-button-prev svg,
.song-works .swiper-button-next svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--grey-dark);
}
.song-works .swiper-button-prev:hover svg,
.song-works .swiper-button-next:hover svg {
  stroke: var(--green);
}
.song-works .swiper-button-prev {
  transform: scaleX(-1) rotate(45deg);
}
.song-works .swiper-button-next {
  transform: rotate(45deg);
}
.song-works .swiper-button-lock {
  display: none;
}
.song-works .swiper-button-disabled {
  opacity: 0.2;
}

.song-banner {
  margin-bottom: 70px;
  margin-top: 70px;
}
.song-banner__content {
  border-radius: 16px;
  padding: 80px 60px 90px 60px;
  background: linear-gradient(57deg, #00bb4e 0%, #00a248 39.08%, #005823 100%);
  position: relative;
}
@media (max-width: 1200px) {
  .song-banner__content {
    padding: 80px 30px;
  }
}
.song-banner__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
}
@media (max-width: 1400px) {
  .song-banner__row {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .song-banner__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.song-banner__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  text-wrap: balance;
  color: white;
}
@media (max-width: 1000px) {
  .song-banner__left {
    text-align: center;
  }
}
.song-banner__left h2 {
  font-size: 32px;
}
.song-banner__left .btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}
.song-banner__right {
  overflow: hidden;
  border-radius: 16px;
}
.song-banner__right img {
  width: 100%;
}