* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #252525;
  font-family: "Roboto", sans-serif;
  height: auto;
  scroll-behavior: smooth;
}

figure {
  margin: 0;
  padding: 0;
}

.sofermat__header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.sofermat__header .sofermat__navbar {
  margin: 0;
  background: #212121;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 65px;
}
.sofermat__header .sofermat__navbar .navbar__logo {
  padding: 0;
  margin: 0;
}
.sofermat__header .sofermat__navbar .navbar__logo img {
  height: 100px;
  width: auto;
}
.sofermat__header .sofermat__navbar .navbar__items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
}
.sofermat__header .sofermat__navbar .navbar__items .navbar__item {
  margin: 0 2.5px;
}
.sofermat__header .sofermat__navbar .navbar__items .navbar__item a {
  padding: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition-property: color;
  transition-duration: 0.5s;
}
.sofermat__header .sofermat__navbar .navbar__items .navbar__item a:hover {
  color: #96c030;
}

.sofermat__hero {
  position: relative;
  height: 50vh;
  min-height: 500px;
}
.sofermat__hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Internet Explorer/Edge */
}
.sofermat__hero .white__sail {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(211, 211, 211, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sofermat__hero .white__sail figure img {
  width: 350px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Internet Explorer/Edge */
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sofermat__section {
  margin-top: 90px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
.sofermat__section.sofermat__contact {
  max-width: 650px;
}
.sofermat__section.section__full {
  max-width: fit-content;
  max-width: unset;
  margin: 0;
  margin-top: 90px;
}
.sofermat__section > h2 {
  color: #96c030;
  text-align: center;
  font-family: Roboto Flex;
  font-size: 3.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.sofermat__section p {
  color: #fff;
  font-family: Roboto Flex;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sofermat__activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  list-style-type: none;
  margin: auto;
  padding: 0;
}
.sofermat__activities .activity {
  position: relative;
  background-color: #464242;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.sofermat__activities .activity figure.activity__image {
  margin: 0;
  padding: 0;
}
.sofermat__activities .activity figure.activity__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 8px 8px 0 0;
}
.sofermat__activities .activity .activity__body {
  padding: 5px 32px;
}
.sofermat__activities .activity .activity__body .activity__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin: 0;
  color: #96c030;
  text-align: center;
  font-family: Roboto Flex;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.sofermat__activities .activity .activity__body .activity__content {
  color: #fff;
  text-align: center;
  font-family: Roboto Flex;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sofermat__activities .activity .activity__body .activity__note {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: Roboto Flex;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact__form {
  border-radius: 16px;
  background: #96c030;
  padding: 32px 32px;
}
.contact__form .form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.contact__form .form__group:first-child {
  margin-top: 0;
}
.contact__form .form__group input,
.contact__form .form__group textarea {
  border: none;
  border-radius: 12px;
  padding: 15px;
  background: #d9d9d9;
  color: #000;
  font-family: Roboto Flex;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__form .form__group input::placeholder,
.contact__form .form__group textarea::placeholder {
  color: #767676;
}
.contact__form .form__group textarea {
  resize: none;
  height: 300px;
}
.contact__form .form__group a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #3475b9;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 0;
  padding: 16px 10px;
  width: 100%;
  color: #fff;
  font-family: Roboto Flex;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.3s;
  text-decoration: none;
}
.contact__form .form__group a img {
  margin-left: 8px;
}
.contact__form .form__group a:hover {
  background-color: #295c91;
}
.contact__form .form__note {
  color: #404040;
  font-family: Inter;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer {
  margin-top: 90px;
  background: #212121;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #767676;
  padding: 18px 5px;
  text-align: center;
  font-family: Roboto Flex;
}
footer a {
  color: #767676;
  text-decoration: underline;
}
footer a:hover {
  color: #96c030;
}