.main {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-grow: 1;
}

.card {
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
}

.see_more_button {
  display: flex;
  align-items: center;
  background-color: #93DD00;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 20px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}
.see_more_button i {
  color: #3C7034;
  margin-left: auto;
}

.cards {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  padding: 20px 10px;
}
.cards__welcome {
  display: flex;
  flex-direction: column;
}
.cards__welcome__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3C7034;
  margin-bottom: 20px;
}
.cards__welcome__content {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  color: #9B9B9B;
  font-weight: 500;
  gap: 20px;
}
@media only screen and (max-width: 700px) {
  .cards__welcome__content {
    flex-direction: column;
  }
}
.cards__welcome__content span {
  text-align: justify;
}
.cards__welcome__content img {
  width: 20vw;
}
@media only screen and (max-width: 700px) {
  .cards__welcome__content img {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 35vw;
  }
}
.cards__welcome .see_more_button {
  width: 20%;
  min-width: 200px;
}
@media only screen and (max-width: 700px) {
  .cards__welcome .see_more_button {
    width: 100%;
  }
}
.cards__blocks {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.card--with_image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 350px;
}
.card--with_image img {
  width: 60%;
}
.card--with_image span {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #3C7034;
}
.card--with_image .see_more_button {
  width: 100%;
}

.calendar {
  width: 60%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 20px;
}
.calendar .calendar-widget {
  display: flex;
  flex-direction: column;
  width: 250px;
  user-select: none;
}
.calendar .calendar-widget__year {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 10px;
  color: #3C7034;
}
.calendar .calendar-widget__year__text {
  font-size: 1.3rem;
  font-weight: bold;
}
.calendar .calendar-widget__year__back {
  margin-right: auto;
}
.calendar .calendar-widget__year__next {
  margin-left: auto;
}
.calendar .calendar-widget__months_container {
  flex-grow: 1;
}
.calendar .calendar-widget__months {
  height: calc(3/4 * 250px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 10px;
}
.calendar .calendar-widget__months__month {
  display: flex;
  border: 2px solid transparent;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  color: #9B9B9B;
}
.calendar .calendar-widget__months__month:hover {
  border-color: #93DD00;
}
.calendar .calendar-widget__months__month--selected {
  background-color: #93DD00;
  color: white;
}
.calendar .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 250px;
}
.calendar .title img {
  width: 15%;
}
.calendar .title span {
  margin-left: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #3C7034;
}
.calendar .table {
  width: 250px;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: left;
  margin-top: 20px;
  font-size: 0.9rem;
}
@media only screen and (max-width: 920px) {
  .calendar .table {
    font-size: 0.9rem;
  }
}
.calendar .table td, .calendar .table th {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}
.calendar .table th:not(:last-child), .calendar .table td:not(:last-child) {
  border-right: 1px solid #CCC;
}
.calendar .table th:not(:first-child), .calendar .table td:not(:first-child) {
  padding-left: 20px;
}
.calendar .table thead tr th {
  margin-bottom: 10px;
  padding-top: 0;
  color: #3C7034;
}
.calendar .table tbody tr {
  text-align: left;
  padding: 10px;
}
.calendar .table tbody tr td {
  color: #9B9B9B;
  font-weight: 500;
}
.calendar .table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 425px) {
  .calendar .table, .calendar .table thead, .calendar .table tbody, .calendar .table th, .calendar .table td, .calendar .table tr {
    display: block;
  }
  .calendar .table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .calendar .table tr:not(:last-child) {
    margin-bottom: 10px;
  }
  .calendar .table tr:nth-child(even) {
    background-color: #F5F5F5;
  }
  .calendar .table td {
    border: none !important;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
    white-space: normal;
    text-align: left;
  }
  .calendar .table td:before {
    content: attr(data-title);
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}
.calendar .table th:nth-child(2) {
  width: 55%;
}

@media only screen and (max-width: 1366px) {
  .calendar {
    display: none;
  }
}
@media only screen and (max-width: 940px) {
  .cards__blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .card--with_image img {
    width: 30%;
  }
}
@media only screen and (max-width: 500px) {
  .cards__blocks {
    grid-template-columns: repeat(1, 1fr);
  }
}