@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
html {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; }
  @media (max-width: 1024px) {
    html {
      font-size: 16px; } }
  @media (max-width: 767px) {
    html {
      font-size: 14px; } }

body {
  background-color: #fff;
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh; }

main {
  padding-top: calc(112px + 32px + 40px); }
  @media (max-width: 1024px) {
    main {
      padding-top: calc(112px + 32px); } }
  @media (max-width: 767px) {
    main {
      padding-top: calc(112px + 32px); } }

h1 {
  font-size: 3.3rem;
  line-height: 3.5rem;
  font-weight: 800; }

h2 {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 400; }

h3 {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 600; }

h4 {
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: 600; }

h5 {
  font-size: 1.1rem;
  line-height: 1.3rem;
  font-weight: 600; }

p {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem; }

u {
  color: #87BF41; }

ul {
  margin: 0;
  padding: 10px 0; }
  ul li {
    list-style-type: none;
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative; }
    ul li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.5rem;
      height: 1rem;
      width: 1rem;
      -webkit-mask-image: url(../../img/green-check.svg);
      mask-image: url(../../img/green-check.svg);
      -webkit-mask-size: contain;
      mask-size: contain;
      mask-position: center;
      -webkit-mask-position: center;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      background-color: #87BF41; }

.lightbox .lb-image, .lb-outerContainer {
  border-radius: 30px !important; }

.lb-data {
  padding: 0 25px !important; }

html:not(.homepage) #static-header-background {
  max-height: 750px;
  height: 750px;
  clip-path: polygon(0 0, 100% 0, 100% 57%, 0 67%); }

#static-header-background {
  z-index: -1;
  top: 0;
  left: 0;
  position: absolute;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  min-height: 600px;
  max-height: 900px;
  height: 900px;
  background: linear-gradient(180deg, #63A214 0%, #72BB17 100%);
  clip-path: polygon(0 0, 100% 0, 100% 77%, 0 84%);
  overflow: hidden; }
  #static-header-background .faded-circle {
    width: 35vw;
    height: 35vw;
    border-radius: 100%;
    background: rgba(145, 240, 10, 0.8);
    filter: blur(100px);
    position: absolute; }
  #static-header-background .circle-1 {
    left: -4vw;
    bottom: -5vh; }
  #static-header-background .circle-2 {
    right: 4vw;
    bottom: -1vh; }
  #static-header-background .brain-decor {
    width: 35vw;
    height: 35vw;
    position: absolute; }
  #static-header-background .brain-1 {
    transform: rotate(-150deg);
    left: 3vw;
    bottom: -5vh; }
  #static-header-background .brain-2 {
    right: -1vw;
    bottom: 1vh; }

#special-message {
  position: fixed;
  top: 160px;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  height: fit-content;
  width: fit-content;
  max-width: 1400px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  z-index: 1000;
  gap: 16px;
  font-size: 0.8rem;
  color: #111; }
  @media (max-width: 767px) {
    #special-message {
      display: none; } }
  #special-message a {
    text-decoration: none;
    color: #111; }
    #special-message a:hover {
      text-decoration: underline; }
  #special-message #special-message-icon {
    height: 30px;
    width: 30px;
    object-fit: contain;
    object-position: center; }
  #special-message #close-special-message {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 100%;
    top: -5px;
    right: -30px;
    position: absolute;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); }
    #special-message #close-special-message::before, #special-message #close-special-message::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 1px;
      background: #000;
      border-radius: 1px;
      transform-origin: center;
      transform: translate(-50%, -50%) rotate(45deg); }
    #special-message #close-special-message::after {
      transform: translate(-50%, -50%) rotate(-45deg); }
    #special-message #close-special-message:hover {
      opacity: 0.9; }

#top-menu {
  position: fixed;
  top: 32px;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 10px 40px;
  height: 112px;
  max-width: 1400px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  z-index: 1000; }
  #top-menu #top-menu-logo {
    padding-top: 5px;
    height: 40px;
    object-fit: contain;
    object-position: left; }
  #top-menu #menu-items {
    opacity: 0;
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 40px;
    align-items: center;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available; }
    #top-menu #menu-items .more-button {
      position: relative; }
      #top-menu #menu-items .more-button::after {
        content: "▾";
        display: inline-block;
        margin-left: 6px;
        font-size: 0.8em;
        line-height: 1; }
  #top-menu #hamburger-wrapper {
    background: linear-gradient(0deg, #111 0%, #111 100%), #91F00A;
    border-radius: 16px;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 12px 24px; }
    #top-menu #hamburger-wrapper #hamburger {
      display: inline-block;
      cursor: pointer; }
      #top-menu #hamburger-wrapper #hamburger .bar1, #top-menu #hamburger-wrapper #hamburger .bar2, #top-menu #hamburger-wrapper #hamburger .bar3 {
        height: 2px;
        background-color: #fff;
        margin: 5px 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s; }
      #top-menu #hamburger-wrapper #hamburger .bar1 {
        width: 24px; }
      #top-menu #hamburger-wrapper #hamburger .bar2 {
        width: 15px; }
      #top-menu #hamburger-wrapper #hamburger .bar3 {
        width: 20px; }
      #top-menu #hamburger-wrapper #hamburger.active .bar1 {
        transform: translate(0, 7px) rotate(-45deg); }
      #top-menu #hamburger-wrapper #hamburger.active .bar2 {
        opacity: 0; }
      #top-menu #hamburger-wrapper #hamburger.active .bar3 {
        width: 24px;
        transform: translate(0, -7px) rotate(45deg); }
  @media (max-width: 767px) {
    #top-menu {
      height: 72px;
      padding: 10px 20px; }
      #top-menu #top-menu-logo {
        height: 30px; }
      #top-menu #CTA-button {
        display: none; }
      #top-menu #menu-items {
        display: none; }
      #top-menu #hamburger-wrapper {
        display: flex; } }

.menu-item {
  white-space: nowrap;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  .menu-item:before {
    content: "";
    display: block;
    height: 2px;
    background-color: #87BF41;
    position: absolute;
    width: 0;
    left: 50%;
    bottom: -3px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
  .menu-item:hover, .menu-item.active {
    color: #87BF41; }
    .menu-item:hover:before, .menu-item.active:before {
      width: 100%;
      left: 0; }

#mobile-menu-items {
  display: none;
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0 0 29.584px 0 rgba(0, 0, 0, 0.1);
  width: 90%;
  z-index: 1000;
  position: fixed;
  max-width: 1400px;
  height: fit-content;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  #mobile-menu-items .menu-item {
    font-size: 1.6rem;
    font-weight: 700;
    white-space: wrap;
    padding: 0 20px; }

#secondary-menu {
  position: fixed;
  display: none;
  background: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 220px;
  z-index: 1100; }
  #secondary-menu .secondary-menu-list {
    margin: 0;
    padding: 1.5rem; }
    #secondary-menu .secondary-menu-list a.menu-item {
      display: block;
      width: fit-content;
      padding-bottom: 10px;
      margin-right: 10px; }
      #secondary-menu .secondary-menu-list a.menu-item:before {
        bottom: 7px; }

#footer {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  padding: 40px 0 40px 0;
  margin-top: auto;
  background-color: #FFF; }
  #footer #footer-wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    padding: 40px 20px 0 20px;
    border-top: 1px solid #87BF41;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-size: 1.7rem;
    line-height: 1.9rem;
    position: relative; }
    #footer #footer-wrapper #footer-logo {
      height: 72px;
      object-fit: contain;
      object-position: center; }
    #footer #footer-wrapper #footer-text {
      text-align: center;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available; }
    #footer #footer-wrapper #footer-contacts {
      display: flex;
      flex-flow: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      align-items: center; }
    #footer #footer-wrapper #copyrights {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available; }
      #footer #footer-wrapper #copyrights #footer-copyright-text {
        grid-column: 2;
        justify-self: center;
        font-size: 0.8rem;
        line-height: 1rem;
        color: #767676; }
      #footer #footer-wrapper #copyrights #creator {
        display: flex;
        flex-flow: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        grid-column: 3;
        justify-self: end; }
        #footer #footer-wrapper #copyrights #creator span {
          color: #124E65;
          font-size: 0.8rem;
          line-height: 1rem;
          white-space: nowrap; }
        #footer #footer-wrapper #copyrights #creator img {
          width: 60px;
          object-fit: contain;
          object-position: center; }
  @media (max-width: 1024px) {
    #footer #footer-wrapper {
      font-size: 1.5rem;
      line-height: 1.7rem; } }
  @media (max-width: 767px) {
    #footer {
      margin-bottom: 40px; }
      #footer #footer-wrapper {
        font-size: 1.2rem;
        line-height: 1.4rem; } }

.button {
  border-radius: 20px;
  display: flex;
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }

.btn-black {
  background-color: #000;
  color: #FFF; }
  .btn-black:hover {
    background-color: #333;
    color: #FFF; }

.btn-primary {
  background-color: #91F00A;
  border: 1px solid #91F00A;
  color: #000; }
  .btn-primary:hover {
    background-color: #a7f736; }

.btn-secondary {
  background-color: #FFF;
  border: 1px solid #91F00A;
  color: #000; }
  .btn-secondary:hover {
    background-color: #a7f736; }

.btn-link {
  padding: 0;
  border-radius: 0;
  text-decoration: underline;
  color: #87BF41; }
  .btn-link:hover {
    color: #9fcc67; }

.blocks {
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available; }

.block {
  padding: 40px 0; }

.buttons-holder {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px; }

.back-link {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  color: #3F3F3F;
  font-weight: 400;
  width: fit-content;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s; }
  .back-link img {
    height: 5px;
    margin-top: 4px;
    object-position: center;
    object-fit: contain; }
  .back-link:hover {
    opacity: 0.9; }

.block.text-block {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available; }
  .block.text-block.narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available; }
  .block.text-block.left {
    margin-left: 0; }
    .block.text-block.left .buttons-holder {
      justify-content: start; }
  .block.text-block.center .buttons-holder {
    justify-content: center; }
  .block.text-block.right {
    margin-right: 0; }
    .block.text-block.right .buttons-holder {
      justify-content: end; }
  .block.text-block .text-wrapper iframe {
    width: 100% !important;
    height: 750px !important; }
    @media (max-width: 1024px) {
      .block.text-block .text-wrapper iframe {
        height: 400px !important; } }
    @media (max-width: 767px) {
      .block.text-block .text-wrapper iframe {
        height: 200px !important; } }

.image-wrapper.blur {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .image-wrapper.blur:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    content: "";
    background: rgba(145, 240, 10, 0.2);
    filter: blur(100px);
    z-index: -1; }

.image-wrapper.solid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .image-wrapper.solid .image {
    max-width: 80%; }
  .image-wrapper.solid:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    content: "";
    border-radius: 30px 30px 30px 0;
    background: linear-gradient(180deg, #72BB17 0%, #63A214 100%);
    z-index: -1;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s; }
  .image-wrapper.solid:hover .image {
    transform: none; }

.block.image-with-text {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px; }
  .block.image-with-text .image-wrapper {
    width: 40%; }
    .block.image-with-text .image-wrapper .image {
      max-height: 560px;
      object-fit: contain;
      object-position: center;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      -webkit-transition: all 0.7s ease 0s;
      -moz-transition: all 0.7s ease 0s;
      -ms-transition: all 0.7s ease 0s;
      -o-transition: all 0.7s ease 0s;
      transition: all 0.7s ease 0s; }
      .block.image-with-text .image-wrapper .image:hover {
        transform: scale(1.03); }
  .block.image-with-text .text-wrapper {
    width: 60%; }
    .block.image-with-text .text-wrapper p {
      width: 80%; }
      @media (max-width: 1024px) {
        .block.image-with-text .text-wrapper p {
          width: auto; } }
    .block.image-with-text .text-wrapper .buttons-holder {
      justify-content: start; }
  .block.image-with-text.right .text-wrapper {
    order: -1; }
  .block.image-with-text.bottom, .block.image-with-text.top {
    flex-flow: column-reverse;
    gap: 20px; }
    .block.image-with-text.bottom .text-wrapper, .block.image-with-text.top .text-wrapper {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      text-align: center; }
    .block.image-with-text.bottom .image-wrapper, .block.image-with-text.top .image-wrapper {
      width: unset; }
      .block.image-with-text.bottom .image-wrapper .image, .block.image-with-text.top .image-wrapper .image {
        max-height: unset; }
  .block.image-with-text.top {
    flex-flow: column; }
  @media (max-width: 1024px) {
    .block.image-with-text {
      flex-flow: column;
      justify-content: center;
      align-items: center;
      gap: 60px; }
      .block.image-with-text .image-wrapper {
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available; }
        .block.image-with-text .image-wrapper .image {
          max-height: 400px; }
      .block.image-with-text .text-wrapper {
        order: -1;
        width: -webkit-fill-available;
        width: -moz-available;
        width: fill-available; } }

.block.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  .block.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .block.gallery img:hover {
      transform: scale(1.03); }
  @media (max-width: 1024px) {
    .block.gallery {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 767px) {
    .block.gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }

.block.reviews-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center; }

.block.reviews-block .reviews-wrapper {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 1024px) {
    .block.reviews-block .reviews-wrapper {
      grid-template-columns: 1fr; } }
  .block.reviews-block .reviews-wrapper .review-card {
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 24px;
    padding: 40px; }
    .block.reviews-block .reviews-wrapper .review-card .review-logo {
      height: 30px;
      width: auto;
      object-fit: contain;
      object-position: center; }
    .block.reviews-block .reviews-wrapper .review-card .review-name {
      font-size: 1.2rem;
      line-height: 1.4rem;
      font-weight: 600; }
    .block.reviews-block .reviews-wrapper .review-card .review-author {
      font-weight: bold; }

.block.reviews-block .other-reviews-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  margin-top: 60px;
  text-align: center; }

.block.reviews-block .other-reviews {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  column-count: 2;
  column-gap: 30px; }
  @media (max-width: 1024px) {
    .block.reviews-block .other-reviews {
      column-gap: 24px; } }
  @media (max-width: 767px) {
    .block.reviews-block .other-reviews {
      column-count: 1;
      column-gap: 16px; } }
  .block.reviews-block .other-reviews .other-review-name {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 8px;
    display: flex;
    flex-flow: row;
    align-items: center; }
    .block.reviews-block .other-reviews .other-review-name .review-check {
      height: 18px;
      width: 18px;
      object-fit: contain;
      object-position: center;
      margin-right: 16px;
      position: relative; }

.block.employees-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center;
  margin: 20px auto; }

.block.employees-block .employees-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 64px; }
  .block.employees-block .employees-wrapper:not(:first-child) {
    margin-top: 60px; }
  .block.employees-block .employees-wrapper .employee-card {
    display: flex;
    flex-flow: column;
    justify-content: center; }
    .block.employees-block .employees-wrapper .employee-card .image-wrapper {
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      height: 490px;
      max-width: 500px; }
      .block.employees-block .employees-wrapper .employee-card .image-wrapper .image {
        object-fit: cover;
        object-position: center;
        height: 100%; }
    .block.employees-block .employees-wrapper .employee-card .text-wrapper {
      display: flex;
      flex-flow: column;
      gap: 24px;
      text-align: left; }
      .block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-name {
        text-decoration: underline;
        font-weight: 400;
        font-size: 1.6rem;
        margin-bottom: 0; }
      .block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-position {
        color: #87BF41; }
      .block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-bio {
        font-weight: 400; }
      .block.employees-block .employees-wrapper .employee-card .text-wrapper .employee-email {
        color: #87BF41;
        text-decoration: underline; }

@media (max-width: 1024px) {
  .block.employees-block .employees-wrapper {
    grid-template-columns: 1fr;
    gap: 32px; }
    .block.employees-block .employees-wrapper .employee-card {
      max-width: 500px; }
      .block.employees-block .employees-wrapper .employee-card .image-wrapper {
        height: 300px; } }

.block.lectures-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: left;
  padding: 0 40px;
  margin-left: 0; }
  @media (max-width: tablet) {
    .block.lectures-block .text-wrapper {
      padding: 0 20px; } }
  @media (max-width: mobile) {
    .block.lectures-block .text-wrapper {
      padding: 0; } }

.block.lectures-block .lectures-wrapper {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media (max-width: 1024px) {
    .block.lectures-block .lectures-wrapper {
      grid-template-columns: 1fr; } }
  .block.lectures-block .lectures-wrapper .lecture-card {
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 24px;
    padding: 40px; }
    .block.lectures-block .lectures-wrapper .lecture-card .lecture-header {
      display: flex;
      flex-flow: row;
      justify-content: start;
      align-items: center;
      gap: 24px;
      padding-bottom: 24px;
      position: relative; }
      .block.lectures-block .lectures-wrapper .lecture-card .lecture-header:before {
        content: "";
        display: block;
        height: 2px;
        background-color: #91F00A;
        position: absolute;
        width: 72px;
        left: 0;
        bottom: -8px; }
      .block.lectures-block .lectures-wrapper .lecture-card .lecture-header .lecture-image-wrapper {
        border-radius: 16px;
        background: #91F00A;
        padding: 16px; }
        .block.lectures-block .lectures-wrapper .lecture-card .lecture-header .lecture-image-wrapper .lecture-icon {
          height: 40px;
          width: 40px;
          -webkit-mask-image: none;
          mask-image: none;
          -webkit-mask-size: contain;
          mask-size: contain;
          mask-position: center;
          -webkit-mask-position: center;
          mask-repeat: no-repeat;
          -webkit-mask-repeat: no-repeat;
          background-color: #000; }
      .block.lectures-block .lectures-wrapper .lecture-card .lecture-header .lecture-name {
        font-size: 1.4rem;
        font-weight: 700; }
    .block.lectures-block .lectures-wrapper .lecture-card .lecture-description li {
      font-size: 0.8rem; }
      .block.lectures-block .lectures-wrapper .lecture-card .lecture-description li:before {
        top: 0.35rem; }
    .block.lectures-block .lectures-wrapper .lecture-card .buttons-holder {
      margin-top: auto;
      width: -webkit-fill-available;
      width: -moz-available;
      width: fill-available;
      justify-items: center; }

.lecture-page {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  display: flex;
  flex-flow: column;
  padding: 0 20px; }
  .lecture-page .back-link {
    margin: 20px 40px; }
  .lecture-page .lecture-heading {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    margin: 20px auto 80px auto; }
  .lecture-page .lecture-start-text {
    margin-left: 0;
    margin-top: 60px;
    padding: 40px 40px 0 40px; }
  .lecture-page .lecture-crosslink {
    margin: 20px 40px;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-items: start;
    align-content: center;
    gap: 10px; }
    .lecture-page .lecture-crosslink .cross-lecture-card {
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      background-color: #fff;
      display: flex;
      flex-flow: row;
      justify-content: start;
      align-items: center;
      gap: 16px;
      position: relative;
      text-decoration: none;
      padding: 12px 16px;
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -ms-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
      .lecture-page .lecture-crosslink .cross-lecture-card.active, .lecture-page .lecture-crosslink .cross-lecture-card:hover {
        background-color: #91F00A; }
        .lecture-page .lecture-crosslink .cross-lecture-card.active .cross-lecture-image-wrapper, .lecture-page .lecture-crosslink .cross-lecture-card:hover .cross-lecture-image-wrapper {
          background-color: #fff; }
      .lecture-page .lecture-crosslink .cross-lecture-card .cross-lecture-image-wrapper {
        border-radius: 16px;
        background-color: #91F00A;
        padding: 8px 16px;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s; }
        .lecture-page .lecture-crosslink .cross-lecture-card .cross-lecture-image-wrapper .cross-lecture-icon {
          height: 28px;
          width: 28px;
          -webkit-mask-image: none;
          mask-image: none;
          -webkit-mask-size: contain;
          mask-size: contain;
          mask-position: center;
          -webkit-mask-position: center;
          mask-repeat: no-repeat;
          -webkit-mask-repeat: no-repeat;
          background-color: #000; }
      .lecture-page .lecture-crosslink .cross-lecture-card .cross-lecture-name {
        font-size: 0.8rem;
        font-weight: 500;
        color: #000; }
  .lecture-page .divider {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    height: 1px;
    background: #87BF41;
    margin: 20px 0; }
  .lecture-page .lecture-program {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    display: flex;
    flex-flow: column;
    gap: 36px; }
    .lecture-page .lecture-program .lecture-program-item {
      padding: 40px;
      border-radius: 30px;
      background: #FFF;
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1); }
      .lecture-page .lecture-program .lecture-program-item .lecture-program-header {
        display: flex;
        flex-flow: row;
        justify-content: start;
        align-items: center;
        gap: 24px;
        padding-bottom: 24px;
        position: relative; }
        .lecture-page .lecture-program .lecture-program-item .lecture-program-header .lecture-program-image-wrapper {
          border-radius: 16px;
          background: #91F00A;
          padding: 16px; }
          .lecture-page .lecture-program .lecture-program-item .lecture-program-header .lecture-program-image-wrapper .lecture-program-icon {
            height: 40px;
            width: 40px;
            -webkit-mask-image: none;
            mask-image: none;
            -webkit-mask-size: contain;
            mask-size: contain;
            mask-position: center;
            -webkit-mask-position: center;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;
            background-color: #000; }
        .lecture-page .lecture-program .lecture-program-item .lecture-program-header .lecture-program-name {
          font-size: 1.4rem;
          font-weight: 700; }

.block.faq-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: left;
  padding: 40px;
  margin-left: 0; }

.block.faq-block .questions-wrapper {
  display: block;
  column-count: 2;
  column-gap: 40px; }
  @media (max-width: 1024px) {
    .block.faq-block .questions-wrapper {
      column-count: 1; } }
  .block.faq-block .questions-wrapper .question-card {
    display: inline-block;
    margin: 0 0 40px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    flex-flow: column;
    padding: 40px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
    .block.faq-block .questions-wrapper .question-card .answer {
      height: 0;
      overflow: hidden;
      color: #fff;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -ms-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .block.faq-block .questions-wrapper .question-card .question {
      font-size: 1.5rem;
      font-weight: 700;
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -ms-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s;
      position: relative;
      padding-bottom: 24px;
      margin-bottom: 24px;
      cursor: pointer; }
      .block.faq-block .questions-wrapper .question-card .question:before {
        content: "";
        display: block;
        height: 2px;
        background-color: #91F00A;
        position: absolute;
        width: 72px;
        left: 0;
        bottom: 0px; }
    .block.faq-block .questions-wrapper .question-card.active, .block.faq-block .questions-wrapper .question-card:hover {
      background-color: #3D3F3E; }
      .block.faq-block .questions-wrapper .question-card.active .question, .block.faq-block .questions-wrapper .question-card:hover .question {
        color: #91F00A; }

.block.socials-block .text-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  text-align: center;
  margin: 20px auto 80px auto; }

.block.socials-block .socials-wrapper {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available; }
  .block.socials-block .socials-wrapper .social-card {
    width: fit-content;
    text-decoration: none;
    display: flex; }
    .block.socials-block .socials-wrapper .social-card .social-image {
      width: 80px;
      height: 80px;
      background-color: #91F00A;
      -webkit-mask-image: none;
      mask-image: none;
      -webkit-mask-size: contain;
      mask-size: contain;
      mask-position: center;
      -webkit-mask-position: center;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      padding-top: 40px; }
    .block.socials-block .socials-wrapper .social-card .social-text {
      border-radius: 20px;
      border: 1px solid #91F00A;
      padding: 20px;
      box-shadow: 0 0 100px 0 rgba(135, 191, 65, 0.3);
      color: #111;
      background-color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      height: fit-content;
      margin-left: -20px;
      z-index: 2; }

.block.contact-form-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available; }
  .block.contact-form-block .text-wrapper {
    margin: 20px auto 40px auto; }
  .block.contact-form-block #contact-form {
    display: flex;
    flex-flow: column;
    gap: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available; }
    .block.contact-form-block #contact-form .form-group-row {
      display: flex;
      flex-flow: row;
      justify-content: center;
      align-items: center;
      gap: 16px; }
      .block.contact-form-block #contact-form .form-group-row .form-group {
        display: flex;
        flex-flow: column;
        gap: 4px;
        flex: 1; }
        .block.contact-form-block #contact-form .form-group-row .form-group label {
          font-weight: 400;
          font-size: 0.8rem;
          color: #000;
          padding-left: 16px; }
        .block.contact-form-block #contact-form .form-group-row .form-group input, .block.contact-form-block #contact-form .form-group-row .form-group textarea, .block.contact-form-block #contact-form .form-group-row .form-group select {
          border-radius: 20px;
          border: 1px solid #91F00A;
          padding: 16px;
          box-shadow: 0 0 100px 0 rgba(135, 191, 65, 0.1); }
          .block.contact-form-block #contact-form .form-group-row .form-group input:focus, .block.contact-form-block #contact-form .form-group-row .form-group input:focus-visible, .block.contact-form-block #contact-form .form-group-row .form-group textarea:focus, .block.contact-form-block #contact-form .form-group-row .form-group textarea:focus-visible, .block.contact-form-block #contact-form .form-group-row .form-group select:focus, .block.contact-form-block #contact-form .form-group-row .form-group select:focus-visible {
            border-color: #000;
            outline: none; }
      .block.contact-form-block #contact-form .form-group-row .submit-button {
        cursor: pointer; }
