.conference-section {
  background: -webkit-gradient(linear, left top, right top, from(#5811A4), to(#13B898));
  background: linear-gradient(90deg, #5811A4 0%, #13B898 100%);
}
.conference-section.margin_top_big {
  margin-top: 200px;
}
.conference-section.margin_bottom_big {
  margin-bottom: 200px;
}
.conference-section .link {
  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;
  text-decoration: none;
  cursor: pointer;
  height: 85px;
}
.conference-section .link .text {
  cursor: pointer;
}
.conference-section .row {
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.conference-section .row .link {
  gap: 0 24px;
}
.conference-section .text {
  color: var(--White, #FFF);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
@media only screen and (max-width: 1600px) {
  .conference-section .text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1482px) {
  .conference-section .text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1370px) {
  .conference-section .text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .conference-section .text {
    font-size: 18px;
    text-align: center;
  }
}
.conference-section svg {
  min-width: 40px;
  width: 40px;
  height: auto;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
.conference-section svg path {
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
.conference-section:hover .row {
  -webkit-transform: scale(1.0667);
          transform: scale(1.0667);
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
.conference-section:hover svg {
  -webkit-transform: scale(0.9374);
          transform: scale(0.9374);
  fill: white;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
.conference-section:hover svg path {
  fill: url(#paint0_linear_837_5898);
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
@media only screen and (max-width: 1024px) {
  .conference-section.margin_top_big {
    margin-top: 72px;
  }
  .conference-section.margin_bottom_big {
    margin-bottom: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .conference-section .row {
    position: relative;
  }
  .conference-section .link {
    height: auto;
    padding: 16px 0;
  }
  .conference-section svg {
    position: absolute;
    width: 20px;
    min-width: 20px;
    height: auto;
    right: 0;
    top: 16px;
  }
}
