:root {
  --color-black--rgb: 51, 51, 51;
  --color-black: #333333;
  --color-grey--rgb: 98, 101, 112;
  --color-grey: #626570;
  --color-grey-100--rgb: 248, 248, 248;
  --color-grey-100: #F8F8F8;
  --color-white--rgb: 253, 253, 253;
  --color-white: #FDFDFD;
  --color-yellow-100--rgb: 248, 183, 57;
  --color-yellow-100: #F8B739;
  --color-green--rgb: 166, 248, 5;
  --color-green: #A6F805;
  --color-green-100--rgb: 127, 192, 0;
  --color-green-100: #7fc000;
  --color-blue-100--rgb: 38, 90, 166;
  --color-blue-100: #265AA6;
  --color-blue-200--rgb: 26, 183, 191;
  --color-blue-200: #1AB7BF;
  --color-blue-300--rgb: 240, 244, 245;
  --color-blue-300: #f0f4f5;
}

@media (min-width: 1200px) {
  :root {
    --wrap: 10.4vw;
    --wrap-1: 10.24vw;
  }
}
@media (min-width: 1200px) and (min-width: 1440px) {
  :root {
    --wrap: calc((100vw - 1400px) / 2);
    --wrap-1: calc((100vw - 1208px) / 2);
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  :root {
    --wrap: 5vw;
  }
}
@media (max-width: 899px) {
  :root {
    --wrap: 5vw;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10000;
}
@media screen and (max-width: 1200px) {
  .menu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.menu__toggle {
  display: none;
}
@media screen and (max-width: 1200px) {
  .menu__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 10;
    width: 30px;
    height: 30px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .menu__toggle span, .menu__toggle:before, .menu__toggle::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    left: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .menu__toggle span {
    top: 14px;
    opacity: 1;
  }
  .menu__toggle::before {
    top: 4px;
  }
  .menu__toggle::after {
    top: 24px;
  }
  .menu__toggle._active-menu span {
    opacity: 0;
    background-color: var(--color-black);
  }
  .menu__toggle._active-menu::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 14px;
    background-color: var(--color-black);
  }
  .menu__toggle._active-menu::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 14px;
    background-color: var(--color-black);
  }
}
@media screen and (max-width: 829px) {
  .menu__toggle._active-menu {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
.menu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .menu__box {
    position: fixed;
    z-index: 9;
    width: 38%;
    height: 100%;
    top: 0;
    right: -100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: auto;
    background-color: var(--color-white);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 30px 80px 30px 30px;
  }
  .menu__box._active-menu {
    right: 0;
  }
}
@media screen and (max-width: 829px) {
  .menu__box {
    width: 100%;
    padding: 30px;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.menu__list li {
  margin-top: 0;
  padding: 0;
}
.menu__list li::before {
  content: none;
}
@media screen and (max-width: 1200px) {
  .menu__list li:last-child a {
    margin-bottom: 0;
  }
}
.menu__item {
  display: inline-block;
  color: var(--color-white);
  font-size: 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 12px;
  position: relative;
  line-height: 100%;
text-align: center;
}
.header.header-inner .menu__item {
  color: var(--color-black);
}
.header.header-inner .menu__item:hover {
  color: var(--color-white);
}

@media screen and (max-width: 1200px) {
  .menu__item {
    color: var(--color-black);
text-align: left;
  }
}
.menu__item:hover {
  color: var(--color-yellow-100);
}
@media screen and (max-width: 1200px) {
  .menu__item {
    font-size: 22px;
    margin: 0 0 25px 0;
  }
}
.menu__item svg {
  margin-left: 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.menu__btn {
  font-weight: 700;
  color: var(--color-blue-200);
}
.menu__submenu {
  display: block;
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
}
@media (min-width: 900px) {
  .menu__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 350px;
    max-width: 350px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
  }
  .menu__list li:hover .menu__submenu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 899px) {
  .menu__submenu {
    height: 0;
    opacity: 0;
  }
}
.menu__submenu ul {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 10px;
}
.menu__submenu ul > * + * {
  margin-top: 10px;
}
.menu__call__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .menu__call__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.menu__call {
  margin-right: 27px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-black);
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
@media screen and (max-width: 1200px) {
  .menu__call {
    margin: 0 0 20px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 829px) {
  .menu__call {
    font-size: 23px;
  }
}
.menu__call svg {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
@media screen and (max-width: 1200px) {
  .menu__call svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 829px) {
  .menu__call svg {
    width: 23px;
    height: 23px;
  }
}
.menu__call:hover svg {
  -webkit-animation-name: tada;
          animation-name: tada;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
.menu__call:hover svg path {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.menu__call.menu__call__mob {
  display: none;
}
@media screen and (max-width: 1200px) {
  .menu__call.menu__call__mob {
    display: block;
    margin: 0 35px 0 0;
  }
  .menu__call.menu__call__mob svg {
    width: 18px;
    height: 18px;
    margin-right: 0;
  }
}
@media screen and (max-width: 770px) {
  .menu__call.menu__call__mob {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .menu__call__btn {
    width: 183px;
    height: 33px;
  }
}
@media screen and (max-width: 829px) {
  .menu__call__btn {
    width: 210px;
    height: 33px;
  }
}
@media screen and (max-width: 1200px) {
  .menu__call__btn span {
    font-size: 18px;
  }
}
@media screen and (max-width: 829px) {
  .menu__call__btn span {
    font-size: 20px;
  }
}
.menu__cart {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .menu__cart {
    margin-right: 35px;
  }
}
@media screen and (max-width: 770px) {
  .menu__cart {
    margin-right: 25px;
  }
}
.menu__cart svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.menu__cart .cart-count {
  display: none;
  position: absolute;
  width: 10px;
  height: 10px;
  top: -1px;
  right: -4px;
  border-radius: 50%;
  font-size: 6px;
  line-height: 9.8px;
  margin: auto;
  text-align: center;
  color: #fff;
  border: 1.5px solid #FFFFFF;
}
.menu__cart .cart-count._no-empty-cart {
  display: block;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media (max-width: 899px) {
  * {
    outline: none;
  }
}

body,
input,
textarea,
button,
select {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: var(--color-black);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

a:hover {
  color: var(--color-yellow-100);
}

p {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

ul {
  list-style: none;
}
ul > * + * {
  margin-top: 10px;
}
ul li {
  position: relative;
  padding: 0 14px;
}

html,
body {
  position: relative;
  color: var(--color-grey);
  background-color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  margin: 0;
  padding: 0;
}

body._lock {
  overflow: hidden;
}

._container {
  width: 100%;
  padding: 0 var(--wrap);
  margin: 0;
}

@media (min-width: 1200px) {
  section {
    padding: 100px 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  section {
    padding: 45px 0;
  }
}
@media (max-width: 899px) {
  section {
    padding: 38px 0;
  }
}
@media (min-width: 1200px) {
  section._grey + ._grey {
    padding-top: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  section._grey + ._grey {
    padding-top: 45px;
  }
}
@media (max-width: 899px) {
  section._grey + ._grey {
    padding-top: 38px;
  }
}
@media (min-width: 1200px) {
  section:not(._grey) + section:not(._grey) {
    padding-top: 0;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  section:not(._grey) + section:not(._grey) {
    padding-top: 0;
  }
}
@media (max-width: 899px) {
  section:not(._grey) + section:not(._grey) {
    padding-top: 0;
  }
}

._grey {
  background-color: var(--color-grey-100);
}

b {
  color: var(--color-green);
}

h1,
.h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-white);
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0em;
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 54px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}
@media (max-width: 899px) {
  h1,
  .h1 {
    font-size: 34px;
  }
}

h2,
.h2 {
  margin: 0;
  color: var(--color-black);
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  font-weight: 600;
  letter-spacing: 0em;
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 38px;
    line-height: 51px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (max-width: 899px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  margin: 0;
  color: var(--color-black);
  font-family: "Montserrat", sans-serif;
  line-height: 110%;
  font-weight: 600;
  letter-spacing: 0em;
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  h3,
  .h3 {
    font-size: 22px;
  }
}
@media (max-width: 899px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  padding: 20px 36px 20px 36px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  border: none;
  background-color: var(--color-green-100);
}
.btn:hover {
  background-color: var(--color-yellow-100);
  color: var(--color-white);
}
.btn:focus-visible {
  background-color: var(--color-yellow-100);
  color: var(--color-white);
}

.btn.btn-empty {
  background: transparent;
  color: var(--color-green);
  border: 1px solid var(--color-green);
}
.btn.btn-empty:hover {
  background: var(--color-green);
  color: var(--color-white);
  border: 1px solid var(--color-green);
}
.btn.btn-empty:focus-visible {
  background: var(--color-green);
  color: var(--color-white);
  border: 1px solid var(--color-green);
}

.block-title {
  text-align: center;
}

.block-subtitle {
  text-align: center;
  color: var(--color-grey);
  margin-top: 14px;
}

.swiper-container {
  width: 100%;
  margin: 24px auto;
}

.swiper-slide-container {
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-button-prev,
.swiper-button-next {
  border: 1px solid rgba(var(--color-black--rgb), 0.1);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-image: url(../assets/arrow.svg);
  background-size: 14px;
}
@media (max-width: 899px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

.swiper-button-prev {
  background-position-x: 11px;
}
@media (max-width: 899px) {
  .swiper-button-prev {
    background-position-x: 7px;
    left: -10px;
  }
}

.swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position-x: 10px;
}
@media (max-width: 899px) {
  .swiper-button-next {
    background-position-x: 6px;
    right: -10px;
  }
}

.header {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--color-black--rgb), 0.1);
  z-index: 2;
}
.header:not(.header-inner) {
  position: absolute;
  top: 0;
  left: 0;
}
.header.header-inner {
  background-color: var(--color-green);
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo a {
  display: block;
  max-width: 200px;
  min-width: 200px;
  width: 100%;
}
.header__logo a img {
  display: block;
  width: 100%;
}
/*
* BANNER
*/
.banner {
  position: relative;
  padding-top: 88px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .banner {
    padding-bottom: 0;
  }
}
@media (max-width: 899px) {
  .banner {
    padding-bottom: 70px;
  }
}
.banner:before {
  content: "";
  background: #57B03C;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner:after {
  content: "";
  position: absolute;
  background: rgba(142, 178, 42, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .banner__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 899px) {
  .banner__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner__info {
  position: relative;
  border-radius: 20px;
  color: var(--color-black);
  width: 100%;
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .banner__info {
    padding-bottom: 130px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .banner__info {
    padding-bottom: 130px;
  }
}
@media (max-width: 899px) {
  .banner__info {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 0;
  }
}
.banner__info > * + * {
  margin-top: 28px;
}
.banner__title {
  position: relative;
  text-align: center;
}
.banner__text {
  margin-top: 20px;
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  line-height: 120%;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .banner__text {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1000px) {
  .banner__text {
    width: 90%;
  }
}
.about__wrapper {
  display: -ms-grid;
  display: grid;
  width: 100%;
}
@media (min-width: 900px) {
  .about__wrapper {
    -ms-grid-columns: 2fr 3fr;
    grid-template-columns: 2fr 3fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 899px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 900px) {
  .about__wrapper > * + * {
    margin-left: 36px;
  }
}
@media (max-width: 899px) {
  .about__wrapper > * + * {
    margin-top: 36px;
  }
}
.about__main {
  width: 100%;
}
@media (min-width: 1200px) {
  .about__main {
    min-width: 536px;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .about__main {
    min-width: 480px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .about__main {
    min-width: 480px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
  .about__main {
    min-width: 400px;
  }
}
.about__main > * + * {
  margin-top: 28px;
}
.about__title {
  text-align: left;
}
.about__text {
  color: var(--color-grey);
}
.about-img {
  width: 100%;
}
@media (max-width: 899px) {
  .about-img {
    max-width: 340px;
  }
}
.about-img__wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.about-img__wrapper img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.text h2 {
  text-align: center;
}

.steps__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}
@media (min-width: 900px) {
  .steps__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .steps__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.steps-item {
  position: relative;
}
.steps-item__title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 900px) {
  .steps-item__title {
    min-height: 60px;
  }
}
.steps-item__text {
  margin-top: 24px;
}
.steps-item__text ol > * + * {
  margin-top: 24px;
}
.steps__button {
  margin: 60px auto 0;
}

/*
* speakers
*/
.speakers__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
}
@media (min-width: 900px) {
  .speakers__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) and (max-width: 1000px) {
  .speakers__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .speakers__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) and (max-width: 540px) {
  .speakers__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.speakers-item {
  background-color: var(--color-white);
  border-radius: 10px;
  position: relative;
}
.speakers-item__img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
  overflow: hidden;
}
.speakers-item__img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.speakers-item__info {
  padding: 20px 20px 40px;
  text-align: center;
}
.speakers-item__info > * + * {
  margin-top: 16px;
}
.speakers-item__pos {
  font-size: 16px;
  margin-top: 4px;
}
.speakers-item__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}
.speakers-item__socials a {
  display: block;
  min-width: 30px;
  max-width: 30px;
  width: 100%;
  height: 30px;
}
.speakers-item__socials a img {
  width: 100%;
}
.speakers-item__socials > * + * {
  margin-left: 12px;
}

.logos__wrapper {
  margin-top: 32px;
}
.logos__wrapper > * + * {
  margin-top: 32px;
}
.logos-item {
  position: relative;
}
.logos-item__title {
  font-size: 28px;
  line-height: 125%;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: var(--color-black);
}
@media (min-width: 900px) {
  .logos-item__title {
    min-height: 60px;
  }
}
.logos-item__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
@media (min-width: 1200px) {
  .logos-item__list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .logos-item__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 899px) {
  .logos-item__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.logos-item__list a {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logos-item__list img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 170px;
  -o-object-fit: contain;
  object-fit: contain;
}
.logos__button {
  margin: 60px auto 0;
}

.dates__wrapper {
  text-align: center;
}
.dates__button {
  display: block;
  margin: 50px auto 0;
}

.contacts__wrapper {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
@media (min-width: 900px) {
  .contacts__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 899px) {
  .contacts__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contacts__title {
  text-align: center;
}
.contacts__form > * + * {
  margin-top: 24px;
}
@media (min-width: 900px) {
  .contacts__main {
    padding: 50px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.contacts__main > * + * {
  margin-top: 20px;
}
.contacts__info {
  padding: 20px 0;
  border-top: 1px solid rgba(var(--color-black--rgb), 0.2);
  border-bottom: 1px solid rgba(var(--color-black--rgb), 0.2);
}
.contacts__info > * + * {
  margin-top: 20px;
}
.contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contacts-item svg {
  max-width: 20px;
}
.contacts-item p {
  display: block;
}
.contacts-item p span {
  display: block;
  font-size: 20px;
}
.contacts-item p a {
  display: block;
}
.contacts-item p > * + * {
  margin-top: 8px;
}
.contacts-item > * + * {
  margin-left: 12px;
}
.contacts-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts-socials__item {
  display: block;
  min-width: 40px;
  max-width: 40px;
  width: 100%;
}
.contacts-socials__item img {
  width: 100%;
}
.contacts-socials > * + * {
  margin-left: 10px;
}

.map {
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .map iframe {
    height: 650px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  .map iframe {
    height: 450px;
  }
}
@media (max-width: 899px) {
  .map iframe {
    height: 300px;
  }
}

.footer {
  background-color: var(--color-green);
  padding: 30px 0;
  color: var(--color-black);
}
.footer__wrapper {
  text-align: center;
}
.footer__col > * + * {
  margin-top: 30px;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 22px;
}
.footer-contacts > * + * {
  margin-top: 20px;
}
.footer-contacts__item {
  color: var(--color-white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-contacts__item:hover {
  text-decoration: underline;
  color: var(--color-white);
}
.footer-contacts-socials__item {
  margin-top: 10px;
}
.footer-contacts-socials__item svg {
  width: 35px;
  height: 35px;
}
.footer-contacts-socials__item svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  fill: var(--color-white);
}
.footer-contacts-socials__item svg:hover path {
  fill: var(--color-black);
}
.footer__title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.footer-navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 900px) {
  .footer-navigation__list.two-col {
    max-height: 180px;
    height: 180px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 899px) {
  .footer-navigation__list > * + * {
    margin-top: 20px;
  }
}
.footer-navigation__item {
  padding: 0;
}
@media (min-width: 900px) {
  .footer-navigation__item {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.footer-navigation__item a {
  color: var(--color-white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-navigation__item a:hover {
  color: var(--color-green);
}
.footer-navigation__item a:focus-visible {
  color: var(--color-green);
}
.footer-navigation__item a.active {
  color: var(--color-green);
}
.footer-navigation__item:before {
  content: "";
}
.footer-bottom {
  padding: 32px 0;
}
.footer-bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 900px) {
  .footer-bottom__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 899px) {
  .footer-bottom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
@media (max-width: 899px) {
  .footer-bottom__wrapper > * + * {
    margin-bottom: 20px;
  }
}

.faq .accordion-list {
  margin-top: 30px;
}
.faq .accordion-list__item {
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.faq .accordion-list__item::before {
  content: "";
}
.faq .accordion-list__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: unset;
  padding: unset;
  border-radius: 12px;
  padding: 20px 32px;
  background-color: var(--color-blue-300);
}
.faq .accordion-list__summary > * + * {
  margin-left: 20px;
}
.faq .accordion-list__title {
  text-align: left;
  color: var(--color-black);
  font-size: 20px;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.accordion-list__item._active .accordion-list__title {
  color: var(--color-green);
}

.faq .accordion-list__mark {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
}
.faq .accordion-list__mark svg,
.faq .accordion-list__mark img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .accordion-list__mark svg._active,
.faq .accordion-list__mark img._active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq .accordion-list__mark svg path,
.faq .accordion-list__mark img path {
  -webkit-transition: d 0.15s ease, -webkit-transform 0.3s ease;
  transition: d 0.15s ease, -webkit-transform 0.3s ease;
  transition: d 0.15s ease, transform 0.3s ease;
  transition: d 0.15s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .accordion-list__details {
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 184.8%;
  /* 29.568px */
}
.faq .accordion-list__details > * + * {
  margin-top: 14px;
}

._typography p {
  line-height: 184.8%;
}
._typography strong {
  font-family: "Montserrat", sans-serif;
}
._typography ol,
._typography ul {
  margin: 10px 0 0 16px;
}
._typography ul {
  list-style: disc;
}
._typography li {
  padding: 0;
  line-height: 21px;
}
._typography li::marker {
  color: var(--color-green);
}
._typography a {
  color: var(--color-green-100);
}
._typography a:hover {
  color: var(--color-yellow-100);
  text-decoration: underline;
}

form > * + * {
  margin-top: 28px;
}
form input[type=text],
form input[type=tel],
form input[type=email],
form textarea {
  border: 0.4px solid rgba(var(--color-black--rgb), 0.2);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 16px;
  line-height: normal;
  padding: 12px 18px;
  width: 100%;
  resize: none;
}
form input[type=text]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: rgba(var(--color-black--rgb), 0.4);
}
form input[type=text]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=email]::-moz-placeholder, form textarea::-moz-placeholder {
  color: rgba(var(--color-black--rgb), 0.4);
}
form input[type=text]:-ms-input-placeholder, form input[type=tel]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: rgba(var(--color-black--rgb), 0.4);
}
form input[type=text]::-ms-input-placeholder, form input[type=tel]::-ms-input-placeholder, form input[type=email]::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: rgba(var(--color-black--rgb), 0.4);
}
form input[type=text]::placeholder,
form input[type=tel]::placeholder,
form input[type=email]::placeholder,
form textarea::placeholder {
  color: rgba(var(--color-black--rgb), 0.4);
}
@media (max-width: 899px) {
  form input[type=text],
  form input[type=tel],
  form input[type=email],
  form textarea {
    font-size: 16px;
  }
}
form textarea {
  padding: 24px 24px;
}
form input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-green);
  margin-right: 16px;
}
form p {
  color: rgba(27, 27, 27, 0.78);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 135%;
  /* 13.5px */
}
form a {
  color: var(--color-green);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
form div p {
  text-align: left;
  margin-bottom: 14px;
  font-size: 14px;
}
form div.radio {
  margin-top: 24px;
}
form div.radio + .button {
  margin-top: 30px;
}
form .wpcf7-list-item {
  padding-left: 20px;
  display: block;
}
form .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
form .wpcf7-list-item + .wpcf7-list-item {
  margin-left: 40px;
}
@media (max-width: 820px) {
  form .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 10px;
  }
}

.popup {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup._active-popup {
  top: 0;
  visibility: visible;
}
.popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #3B3C3F;
  opacity: 0.8;
}
.popup__wrapper {
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.popup__wrapper::-webkit-scrollbar-thumb {
  background-color: var(--color-green);
}
.popup__content {
  background-color: var(--color-white);
  padding: 30px 70px;
  border-radius: 16px;
}
@media (max-width: 899px) {
  .popup__content {
    padding: 30px 35px;
    max-height: 80vh;
    overflow: scroll;
  }
}
.popup__content > * + * {
  margin-top: 24px;
}
@media (max-width: 899px) {
  .popup__content > * + * {
    margin-top: 18px;
  }
}
.popup__title {
  color: var(--color-black);
  text-align: left;
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 899px) {
  .popup__title {
    font-size: 28px;
  }
}
.popup__text {
  font-size: 18px;
  line-height: 130%;
  text-align: left;
}
@media (max-width: 899px) {
  .popup__text {
    font-size: 16px;
  }
}
.popup__close {
  cursor: pointer;
  width: 33px;
  position: absolute;
  right: -50px;
  top: -6px;
}
.popup__close svg {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup__close svg line {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup__close:hover svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.popup__close:hover svg line {
  stroke: #69A6F6;
}
@media (min-width: 900px) {
  .popup__wrapper {
    max-width: 784px;
  }
}
@media (max-width: 899px) {
  .popup__wrapper {
    padding: 50px 35px 50px 45px;
  }
}
@media (max-width: 899px) {
  .popup__close {
    right: 25px;
    top: 15px;
  }
}
@media screen and (max-width: 899px) and (max-width: 680px) {
  .popup__close {
    right: 15px;
    top: 10px;
  }
}
@media screen and (max-width: 899px) and (max-width: 490px) {
  .popup__close {
    right: 15px;
    top: 10px;
  }
}
@media screen and (max-width: 899px) and (max-width: 395px) {
  .popup__close {
    right: 5px;
    top: 5px;
  }
}

.to-top {
position: fixed;
bottom: 50px;
right: 50px;
z-index: 2;
width: 50px;
height: 50px;
opacity: 0;
visibility: hidden;
transition: 0.2s;
}
.to-top.active {
opacity: 1;
visibility: visible;
}
.to-top svg{
	width: 100%;
heihgt: auto;
}
/* Стилі для футера */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}
/* Стилі для блоку з підказкою */
.certificate__find {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
}

.certificate__find p {
  color: 8#22a853;
  font-size: 1rem;
  text-decoration: none;
  margin: 0;
}

.certificate__find .tooltip {
  visibility: hidden;
  width: 400px;
  background-color: #7fc000;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Розташування підказки */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certificate__find .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.certificate__find:hover .tooltip {
  visibility: visible;
  opacity: 1;
}