* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto';
  font-size: 17px;
}

body {
  background-color: #DCDADA;
}

h1 {
  color: #65A443;
  font-size: 55.4px;
  font-weight: 700;
}

h2 {
  font-size: 24.66px;
  font-weight: 400;
}

.shadow {
  -webkit-box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.15);
}
.main {
padding: 21px;
display: flex;
  align-items: center;
  justify-content: center;
}

.main>div {
  max-width: 1108px;
  width: 100%;
}

.content {
  background-image: linear-gradient(180deg, #0D3F11, #255E25);
  color: white;
  margin-bottom: 61px;
}
.content .text {
  max-width: 512px;
}
.content .text .title {
  margin-top: 45px;
  margin-bottom: 29px;
}

.content .text p {
  line-height: 1.352;
}

.content .image img {
  width: 100%;
  position: relative;
  bottom: -60px;
  border-radius: 40px;
}
.links>div {
  display: grid;
  gap: 21px;
}

.links a {
background-color: rgba(255, 2555, 255, 1);
  color: #505250;
  padding: 30px;
  border-radius: 20px;
  text-decoration-line: none;
  text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.links a:hover {
background-color: rgba(255, 2555, 255, 0.8);
}

.links a img {
  width: 50px;
  height: 50px;
    margin-bottom: 32px;
}

.staff {
display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.staff .group {
  width: fit-content;
}
.staff .group a {
  margin: 8px;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .content>div {
    display: flex;
}

.content>div .text {
  justify-content: center;
  display: flex;
    flex-direction: column;
    margin-right: 68px;
    width: 50%;
  }

.content>div .text img {
  max-width: 220px;
}

.links>div {
  grid-template-columns: repeat(4, 1fr);
}

.staff {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
}

