@charset "UTF-8";
@font-face {
  font-family: Manrope;
  font-display: fallback;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Manrope;
  font-display: fallback;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: PTSerif;
  font-display: fallback;
  src: url("../fonts/PTSerif-Bold.woff2") format("woff2"), url("../fonts/PTSerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 360px;
  scroll-behavior: smooth;
}
@media (max-width: 1280px) {
  html,
  body {
    font-size: 0.875rem;
  }
}

body {
  color: #5A5E61;
  line-height: 1.4;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Manrope", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  transition: 0.25s;
}

a {
  color: inherit;
  transition: 0.25s;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

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

body::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: var(--greyWhte);
}
body::-webkit-scrollbar-thumb {
  background: var(--green);
}
.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container], .container {
  --pad: 20px;
  max-width: calc(80em - var(--pad));
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 1360px) {
  [class*=__container], .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

:root {
  --color-gray: #EFF0F0;
  --color-gray-hover: #CECECE;
  --color-gray-active: #bdbdbd;
  --color-gray-dark: #5A5E61;
  --color-black: #2A2A2A;
  --color-green: #06D700;
  --color-green-light: #F4FFF6;
  --color-red: #EB5757;
  --color-white: #FAFAFA;
}

.fieldset {
  width: 100%;
  margin-bottom: 20px;
}

.input-block {
  position: relative;
  display: flex;
  align-items: center;
}

.error-text {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 4px;
  color: var(--color-red);
}

.agreed-message {
  margin-top: 20px;
  font-size: 16px;
}
.agreed-message a {
  color: var(--color-green);
}
.agreed-message a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  padding: 16px 24px;
  outline: none;
  transition: 0.25s;
  border-radius: 60px;
  align-items: center;
  background: var(--color-gray);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
}
.button .icon {
  margin-left: 10px;
}
.button .icon:before {
  background: var(--color-black);
}
.button._fw {
  width: 100%;
}
.button:hover {
  background: var(--color-gray-hover);
}
.button:active {
  background: var(--color-gray-active);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15) inset;
}
@media (max-width: 61.99875em) {
  .button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

.button-black {
  color: var(--color-white);
  padding: 24px 32px;
  background: var(--color-black);
  font-size: 16px;
}
.button-black:hover {
  background: var(--color-green);
}
.button-black:active {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15) inset;
}
@media (max-width: 61.99875em) {
  .button-black {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  width: 100%;
  display: block;
  padding: 0px 16px;
  border: 1px solid #E9E9E9;
  height: 60px;
  outline: none;
  transition: 0.25s;
  font-size: 16px;
  line-height: 1;
  border-radius: 6px;
}
.input.filled {
  background: #F4FFF6;
}
.input.filled + label {
  opacity: 0;
}
.input:focus {
  border: 1px solid var(--color-green);
  padding-top: 20px;
}
.input:focus + .label {
  opacity: 1;
  top: 14px;
  font-size: 12px;
}
.input.error {
  background: white;
  border: 1px solid var(--color-red);
}

.label {
  position: absolute;
  left: 16px;
  line-height: 1;
  color: var(--color-gray-dark);
  top: 22px;
  transition: 0.25s;
  font-size: 16px;
  pointer-events: none;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

body.popup-show::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  max-height: calc(100dvh - 40px);
}
.popup__wrapper::-webkit-scrollbar-track {
  background: var(--greyWhte);
}
.popup__wrapper::-webkit-scrollbar-thumb {
  background: var(--green);
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  outline: none;
}
.popup__close:before {
  background: black;
}
.popup__close:hover:before {
  background: var(--color-green);
}

.popup-title {
  font-family: PTSerif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: black;
  line-height: 1;
}

.popup__content {
  visibility: hidden;
  overflow: auto;
  margin: auto;
  max-height: calc(100dvh - 40px);
  transform: scale(0);
  transition: transform 0.3s ease 0s;
  background-color: white;
  padding: 30px;
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lock .popup__content {
  visibility: visible;
}
.popup__content img {
  margin-bottom: 1.25rem;
}
.popup__content .button-header {
  margin-left: 0;
  margin-top: 1.25rem;
}
.popup__content::-webkit-scrollbar-track {
  background: var(--greyWhte);
}
.popup__content::-webkit-scrollbar-thumb {
  background: var(--green);
}

.icon::before {
  content: "";
  mask: var(--icon) center center/contain no-repeat;
  -webkit-mask: var(--icon) center center/contain no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  transition: 0.25s;
  background: var(--color-gray-dark);
}

header {
  padding: 25px 0;
}
@media (max-width: 61.99875em) {
  header {
    padding: 20px 0;
  }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
}
@media (max-width: 61.99875em) {
  .header-logo {
    max-width: 150px;
  }
}

.header-event {
  display: flex;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .header-event {
    font-size: 0;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  /*  &:hover{
      .header-phone__contact-number{
        color: $green;
      }
      .icon:before{
        background: $green;
      }
    }*/
}

.header-phone__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
}
@media (max-width: 61.99875em) {
  .header-phone__icon {
    margin-right: 0;
    width: 40px;
    height: 40px;
  }
}

.header-phone__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 61.99875em) {
  .header-phone__contact {
    display: none;
  }
}

.header-phone__contact-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  transition: 0.25s;
}

.header-phone__contact-schedule {
  font-size: 14px;
}

.button-header {
  margin-left: 1.6875rem;
}
@media (max-width: 61.99875em) {
  .button-header {
    font-size: 0;
    margin-left: 10px;
    padding: 0;
    width: 40px;
    justify-content: center;
    height: 40px;
  }
  .button-header .icon {
    margin-left: 0;
  }
}

main {
  padding: 1.25rem 0 3.75rem;
}
@media (max-width: 61.99875em) {
  main {
    padding: 0;
  }
}

.offer {
  display: flex;
  padding: 3.75rem;
  margin: 0 -3.75rem;
  background: var(--color-gray);
  border-radius: 30px;
}
@media (max-width: 1360px) {
  .offer {
    margin: 0;
    padding: 20px;
  }
}
@media (max-width: 61.99875em) {
  .offer {
    flex-direction: column;
  }
}

h1 {
  font-family: "PTSerif";
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.16px;
  margin-bottom: 1.875rem;
  color: var(--color-black);
}
@media (max-width: 61.99875em) {
  h1 {
    margin-bottom: 30px;
    font-size: 32px;
    letter-spacing: -1.28px;
    word-break: break-word;
  }
}

.offer-description {
  margin-top: 3.875rem;
  font-size: 1.125rem;
  line-height: 1.35;
}
@media (max-width: 61.99875em) {
  .offer-description {
    margin-top: 30px;
    font-size: 14px;
  }
}

.offer-pic {
  flex-shrink: 0;
  flex-basis: 38.75rem;
  margin-left: 1.25rem;
  display: flex;
}
@media (max-width: 61.99875em) {
  .offer-pic {
    flex-basis: auto;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-left: 0;
  }
  .offer-pic img {
    max-width: 400px;
    width: 100%;
  }
}

.cause {
  margin-top: 8.75rem;
}
@media (max-width: 61.99875em) {
  .cause {
    margin-top: 80px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px 10px 36px;
  color: var(--color-black);
  font-weight: 700;
  position: relative;
  border-radius: 60px;
  background: var(--color-gray);
  margin-bottom: 20px;
}
.tag:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  left: 15px;
  background: var(--color-green);
}
@media (max-width: 61.99875em) {
  .tag {
    font-size: 14px;
  }
}

h2 {
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -2.08px;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "PTSerif";
  max-width: 38.75rem;
}
@media (max-width: 61.99875em) {
  h2 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }
}

.cause-items {
  display: flex;
  justify-content: space-between;
  margin-top: 3.75rem;
}
@media (max-width: 61.99875em) {
  .cause-items {
    flex-direction: column;
    margin-top: 0;
  }
}

.cause-item-open {
  background: #EAECEE;
}

.cause-item-participants {
  background: #E2E8F0;
}

.cause-item-motivation {
  background: #D7F4D0;
}

.cause-item {
  flex-basis: calc(33.3% - 10px);
  padding: 1.875rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 61.99875em) {
  .cause-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .cause-item:last-child {
    margin-bottom: 0;
  }
}

.cause-item__pic {
  max-width: 260px;
  margin-bottom: 20px;
}

.cause-item__title {
  color: var(--color-black);
  font-family: "PTSerif";
  margin-bottom: 0.625rem;
  font-weight: 700;
  letter-spacing: -2.08px;
  font-size: 3.25rem;
  line-height: 1;
}
@media (max-width: 61.99875em) {
  .cause-item__title {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
}

.cause-item__description {
  font-size: 1.125rem;
}
@media (max-width: 61.99875em) {
  .cause-item__description {
    font-size: 14px;
  }
}

.lesson {
  display: flex;
  padding: 3.75rem;
  margin: 8.75rem -3.75rem 0;
  background: var(--color-gray);
  border-radius: 30px;
  justify-content: space-between;
}
@media (max-width: 1360px) {
  .lesson {
    margin: 8.75rem 0 0;
    padding: 20px;
  }
}
@media (max-width: 61.99875em) {
  .lesson {
    margin-top: 60px;
    flex-direction: column;
  }
}

.lesson-content {
  flex-basis: calc(50% - 10px);
}

.lesson-description {
  font-size: 1.125rem;
}

.lesson-form {
  flex-basis: calc(50% - 10px);
}
@media (max-width: 61.99875em) {
  .lesson-form {
    margin-top: 1.25rem;
  }
}

footer {
  margin-top: 3.75rem;
  padding-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  footer {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.footer-logo {
  flex-basis: 174px;
}
@media (max-width: 61.99875em) {
  .footer-logo {
    flex-basis: auto;
    max-width: 150px;
  }
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}

.footer-event {
  display: flex;
  align-items: center;
  flex-basis: 38.875rem;
}
@media (max-width: 61.99875em) {
  .footer-event {
    flex-direction: column;
    flex-basis: auto;
  }
}

.footer-phone, .footer-place {
  display: flex;
  align-items: center;
}

.footer-phone {
  /*  &:hover{
      .footer-phone__contact-number{
        color: $green;
      }
      .icon:before{
        background: $green;
      }
    }*/
}
@media (max-width: 61.99875em) {
  .footer-phone {
    margin-top: 40px;
  }
}

.footer-place {
  margin-left: 2.9375rem;
}
@media (max-width: 61.99875em) {
  .footer-place {
    margin-left: 0;
    margin-top: 30px;
  }
}

.footer-phone__icon, .footer-place__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer-phone__contact, .footer-place__contact {
  display: flex;
  flex-direction: column;
}

.footer-phone__contact-number, .footer-place__contact-city {
  font-size: 18px;
  color: var(--color-black);
  font-weight: 700;
  transition: 0.25s;
}

.footer-phone__contact-schedule, .footer-place__contact-street {
  font-size: 14px;
}

.button-footer {
  margin-right: 1.25rem;
}
@media (max-width: 61.99875em) {
  .button-footer {
    width: 100%;
    margin-right: 0;
    max-width: 320px;
    margin-top: 20px;
    justify-content: center;
  }
}

.footer-event-between {
  justify-content: space-between;
}

.footer-bottom {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.875rem;
  border-top: 1px solid #E7E7E7;
  padding-top: 1.875rem;
}
@media (max-width: 61.99875em) {
  .footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    flex-direction: column;
  }
}

.footer-social {
  display: flex;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .footer-social {
    margin-top: 30px;
  }
}

.footer-social__icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border-radius: 10px;
}
.footer-social__icon:hover {
  background: var(--color-gray);
}

.footer-politic:hover {
  color: var(--color-green);
}
@media (max-width: 61.99875em) {
  .footer-politic {
    margin-top: 30px;
  }
}
