.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.content__unvisible {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease-in-out;
}
.content__unvisible.visible {
  opacity: 1;
  transform: translateY(0);
}
.content__scale-in {
  opacity: 0;
  transform: scale(0);
  transition: 0.8s ease-in-out;
}
.content__scale-in.onsize {
  opacity: 1;
  transform: scale(1);
}

@keyframes slide-title {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: 0;
  }
  32% {
    margin-top: calc(var(--slide-text) * -1);
  }
  57% {
    margin-top: calc(var(--slide-text) * -1);
  }
  64% {
    margin-top: calc(var(--slide-text) * -2);
  }
  89% {
    margin-top: calc(var(--slide-text) * -2);
  }
  100% {
    margin-top: 0;
  }
}
.slideTitle {
  animation: slide-title 8s ease-in-out 1s infinite forwards;
}

.animate-from-left-min, .animate-from-left, .animate-to-up, .animate-to-down, .animate-from-right-min, .animate-from-right, .fade-In {
  opacity: 0;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 400px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInUpMin {
  from {
    transform: translate3d(0, 40px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUpMin {
  animation-name: slideInUpMin;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-400px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInLeftMin {
  from {
    transform: translate3d(-40px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInLeftMin {
  animation-name: slideInLeftMin;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInDownMin {
  from {
    transform: translate3d(0, -20px, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDownMin {
  animation-name: slideInDownMin;
}

@keyframes fadeInLeftMin {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftMin {
  animation-name: fadeInLeftMin;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRightMin {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightMin {
  animation-name: fadeInRightMin;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes ticker-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-108rem, 0, 0);
  }
}
@import 'app.variable.css';
.color-white {
  color: var(--white);
}
.color-gradient-blue-green {
  background-image: var(--blue-to-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.color-gray {
  color: var(--grey);
}

.bg-green-sea-light {
  background: var(--green-sea-light);
}
.bg-white {
  background: var(--white);
}
.bg-gradient-blue-green {
  background: var(--blue-to-green);
}
.bg-gradient-blue-white-blue {
  background: linear-gradient(180deg, #e8f5ff 0, #FFF 70%, #e8f5ff 100%);
}

.form-bg {
  padding: clamp(16px, 4.444vw, 64px);
  border-radius: 20px;
}
.form-bg.main-page {
  background: url("/application/images/form-bg.webp") no-repeat center/cover;
}
.form-bg.blog-form {
  background: url("/application/images/blog-form-bg.webp") no-repeat center/cover;
}
.form-bg h2, .form-bg p {
  text-align: center;
  color: var(--white);
}
.form-bg h2 {
  padding-bottom: 24px;
}
.form-bg p {
  padding-bottom: 18px;
}
.breadcrumbs {
  background-color: transparent;
  border: none;
  color: #606060;
  position: absolute;
  top: 8px;
  width: 100%;
  left: 0;
  z-index: 9;
  font-size: 12px;
  max-width: 100vw;
  overflow: clip;
}
.breadcrumbs a {
  color: #606060;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .breadcrumbs ul {
    display: flex;
  }
}
.breadcrumbs ul > li.breadcrumb {
  float: left;
  display: inline-block;
  padding: 0 22px 0 0;
  position: relative;
  line-height: 100%;
}
@media (max-width: 991px) {
  .breadcrumbs ul > li.breadcrumb {
    display: flex;
    align-items: center;
  }
}
.breadcrumbs ul > li.breadcrumb > span {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  text-overflow: ellipsis;
}
.breadcrumbs ul > li.breadcrumb:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--grey);
  background-image: none;
  top: calc(50% - 2px);
  right: 10px;
  position: absolute;
}
.breadcrumbs ul > li.breadcrumb:last-child:after {
  display: none;
}
@import 'app.variable.css';
.btn {
  font-weight: 700;
  text-align: center;
  border-radius: 60px;
  height: auto;
  line-height: 1;
  transition: var(--standard-transition);
  cursor: pointer;
}
.btn.green-bg {
  padding: 14px 24px;
  font-size: 16px;
  color: var(--white);
  background: var(--green-main);
}
@media (hover: hover) {
  .btn.green-bg:hover {
    background: var(--green-light);
  }
}
.btn.green-bg:active {
  color: var(--white);
}
.btn.green-bordered {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--green-main);
  background: var(--white);
  border: 1px solid var(--green-main);
}
@media (hover: hover) {
  .btn.green-bordered:hover {
    color: var(--white);
    background: var(--green-light);
    border: 1px solid var(--green-light);
  }
}
.btn.green-bordered:active {
  color: var(--white);
}
.btn.white-bordered {
  font-size: 14px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
@media (hover: hover) {
  .btn.white-bordered:hover {
    color: var(--white);
    background: var(--green-light);
    border: 1px solid var(--green-light);
    box-shadow: var(--hover-shadow);
  }
}
.btn.blue-bg {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid var(--white);
}
@media (hover: hover) {
  .btn.blue-bg:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    box-shadow: var(--hover-shadow);
  }
}
.btn.blue-bg:active {
  color: var(--white);
}
.btn.orange-bg {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  background-color: var(--orange-light);
  border: 1px solid var(--orange-light);
  border-radius: 7px;
}
@media (hover: hover) {
  .btn.orange-bg:hover {
    background-color: var(--orange-dark);
    border: 1px solid var(--orange-dark);
  }
}
.btn.orange-bg:active {
  color: var(--white);
}
.btn.grey-bg {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  background-color: var(--grey-dark);
  border: 0;
  border-radius: 100px;
}
@media (hover: hover) {
  .btn.grey-bg:hover {
    background-color: var(--grey);
  }
}
.btn.grey-bg:active {
  color: var(--white);
}
.btn-wrap {
  text-align: center;
}
.form_modal .thank h2 {
  padding-bottom: 32px;
}
.form_modal .form-group-hidden {
  display: none;
}

.content-modal {
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 960px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .content-modal {
    padding: 10px;
  }
}
.content-modal-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-modal-cross {
  width: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  top: -20px;
  cursor: pointer;
  opacity: 0.65;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .content-modal-cross {
    right: 10px;
    top: -30px;
    cursor: grab;
    width: 16px;
  }
}
.content-modal-cross:before {
  content: "";
  height: 24px;
  width: 2px;
  position: absolute;
  left: 10px;
  top: 0;
  transform: rotate(45deg);
  transform-origin: 50%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .content-modal-cross:before {
    height: 16px;
  }
}
.content-modal-cross:after {
  content: "";
  height: 24px;
  width: 2px;
  position: absolute;
  left: 10px;
  top: 0;
  transform: rotate(-45deg);
  transform-origin: 50%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .content-modal-cross:after {
    height: 16px;
  }
}
.content-modal-cross:hover {
  opacity: 1;
}
.content-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 9999;
  outline: none;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
  background-color: rgba(24, 24, 27, 0.92);
  transform-origin: 50%;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}
.content-modal-wrapper.active {
  pointer-events: auto;
  opacity: 1;
}
.content-modal iframe {
  max-width: 100%;
  height: auto;
}
.content-modal iframe.video-hosting {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.content-modal iframe.pdf {
  display: block;
  height: 100%;
  width: 100%;
}
.content-modal video {
  max-width: 100%;
}
.content-modal img {
  max-width: 100%;
}
.content-modal.pdf {
  width: 96%;
  height: calc(100% - 60px);
}
.content-modal.pdf .content-modal-inner {
  height: 100%;
  width: 100%;
}
.content-modal.page-modal {
  height: calc(100% - 60px);
  width: 100%;
}
@media (max-width: 767px) {
  .content-modal.page-modal {
    height: calc(100% - 40px);
  }
}
.content-modal.page-modal .content-modal-inner {
  height: 100%;
}
.content-modal.page-modal .content-modal-inner iframe {
  width: 100%;
  height: 100%;
}
@import 'app.variable.css';
.yt-container {
  width: 100%;
  max-width: 700px;
  max-height: 394px;
  aspect-ratio: 16/9;
}

.table-mark {
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background-size: cover;
}
.table-mark.v {
  background: url(/application/images/mark-v.svg) 50% 50% no-repeat;
}
.table-mark.x {
  background: url(/application/images/mark-x.svg) 50% 50% no-repeat;
}
@import 'app.variable.css';
:root {
  scroll-behavior: auto;
}

html {
  height: auto !important;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 150%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
}
body ul li, body ol li, body p, body i, body b, body h1, body h2, body h3, body h4, body h5 {
  font-family: "Inter", sans-serif;
}

b {
  font-weight: 600;
}

.viewPlace {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1400px;
}
.viewPlace_900 {
  max-width: 900px;
}
.viewPlace_1040 {
  max-width: 1040px;
}
.viewPlace.fhd {
  max-width: 1900px;
}
@media (min-width: 1400px) {
  .viewPlace.fhd {
    padding: 0 32px;
  }
}
.viewPlace_inner {
  padding-top: 72px;
  padding-bottom: clamp(24px, -40px + 8.333vw, 80px);
}

h1 {
  font-size: clamp(20px, 14px + 1.667vw, 38px);
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  padding-bottom: 24px;
}

h2 {
  font-size: clamp(20px, 1.714px + 2.381vw, 36px);
  font-weight: 700;
  padding-bottom: clamp(32px, -22.857px + 7.143vw, 80px);
  line-height: 140%;
}

h3 {
  font-size: clamp(14px, 10.667px + 0.926vw, 24px);
  font-weight: 700;
  padding-bottom: clamp(16px, 14.667px + 0.37vw, 20px);
  line-height: 133%;
}

h4 {
  font-size: clamp(14px, 2.571px + 1.488vw, 24px);
  font-weight: 700;
  padding-bottom: clamp(16px, 14.667px + 0.37vw, 20px);
  line-height: 133%;
}

h5 {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  padding-bottom: clamp(14px, 1.25vw, 20px);
  line-height: 125%;
}

p, ol li, ul li {
  padding: 0 0 1rem 0;
  font-size: clamp(14px, 12.667px + 0.174vw, 16px);
  line-height: 140%;
}

ul, ol {
  padding: 0 0 4px 16px;
}
ul li, ol li {
  padding: 0 0 12px;
  line-height: 140%;
}

.event-content ul li:not(.breadcrumb),
.viewPlace ul:not(.slick-dots) li:not(.breadcrumb) {
  position: relative;
  list-style-type: none;
}
.event-content ul li:not(.breadcrumb):before,
.viewPlace ul:not(.slick-dots) li:not(.breadcrumb):before {
  position: absolute;
  left: -16px;
  content: "";
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-main);
}

ol.inner-list {
  counter-reset: li;
  list-style: none;
  padding: 16px;
}
ol.inner-list > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}

a {
  color: #4F94FF;
  text-decoration: none;
  will-change: auto;
  transition: var(--standard-transition);
}
@media (hover: hover) {
  a:hover {
    color: #4F94FF;
    outline: none;
    text-decoration: underline;
  }
}

.table.table-inner {
  /*border: 1px solid var(--green-medium);

  &>tbody>tr>td,
  &>thead>tr>th {
      border: 1px solid var(--green-medium);
  }*/
  /*&>tbody>tr:nth-child(2n)>td {
      background-color: var(--green-sea-light);
  }        

  &>tbody>tr:hover>td {
      background-color: var(--green-main);
      color: var(--white);
  }*/
}
.table.table-inner tr > td,
.table.table-inner tr > th {
  padding: clamp(12px, 2.857px + 1.19vw, 20px);
  transition: var(--standard-transition);
}
.table.table-inner tr > th {
  font-weight: 700;
  /*background-color: var(--green-sea);*/
}

.talc {
  padding-top: 16px;
  text-align: center;
  font-style: italic;
  font-weight: 14px;
}
.custom-dropdown.dropdown.ui {
  border-radius: 3px;
  border: 1px solid transparent;
}
.custom-dropdown.dropdown.ui .dropdown.icon {
  padding-right: 8px;
}
.custom-dropdown.dropdown.ui .dropdown.icon:before {
  content: url(/application/images/select_arrow-small.svg);
}
.custom-dropdown.dropdown.ui .search {
  color: #000;
}
.custom-dropdown.dropdown.ui.loading .dropdown.loader {
  display: block;
}
.custom-dropdown.dropdown.ui .dropdown.loader {
  float: right;
  display: none;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1.21428571em;
  top: 0.78571429em;
  right: 1em;
  z-index: 3;
  margin: -0.78571429em;
  padding: 0.91666667em;
  opacity: 0.8;
  transition: opacity 0.1s ease;
}
.custom-dropdown.dropdown.ui .dropdown.loader:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  box-shadow: 0 0 0 1px transparent;
  margin: -0.64285714em 0 0 -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  animation: dropdown-spin 0.6s linear;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 transparent transparent;
  border-style: solid;
  border-width: 0.2em;
}
.custom-dropdown.dropdown.ui .default.text {
  color: #7a8190;
}
.custom-dropdown.dropdown.ui.selection .menu {
  margin: 2px -1px;
  border-radius: 3px;
  border: solid 1px #cfcfcf;
  max-height: 16.02857143rem;
}
.custom-dropdown.dropdown.ui.selection .menu:hover {
  border: solid 1px #cfcfcf;
}
.custom-dropdown.dropdown.ui.selection .menu::-webkit-scrollbar {
  width: 3px;
}
.custom-dropdown.dropdown.ui.selection .menu::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #ccc;
  border-radius: 3px;
}
.custom-dropdown.dropdown.ui.selection .menu::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #555;
  background-color: #aaa;
}
.custom-dropdown.dropdown.ui.selection .menu::-webkit-scrollbar-track {
  border-width: 0;
  background-color: #eee;
}
.custom-dropdown.dropdown.ui.selection .menu::-webkit-scrollbar-track:hover {
  background-color: #eee;
}

.ui.dropdown.organization-dropdown .default.text {
  color: rgba(0, 0, 0, 0.5);
}
.ui.dropdown.organization-dropdown .default.text .organization-info {
  display: none;
}
.ui.dropdown.organization-dropdown.selection .menu .item {
  border-top: none;
  padding: 8px 12px !important;
}
.ui.dropdown.organization-dropdown.selection .menu::-webkit-scrollbar {
  width: 17px;
}
.ui.dropdown.organization-dropdown.selection .menu::-webkit-scrollbar-thumb, .ui.dropdown.organization-dropdown.selection .menu::-webkit-scrollbar-thumb:hover {
  border: 6px solid #fff;
  border-radius: 9px;
}
.ui.dropdown.organization-dropdown.selection .menu::-webkit-scrollbar-track, .ui.dropdown.organization-dropdown.selection .menu::-webkit-scrollbar-track:hover {
  background-color: #fff;
}
.ui.dropdown.organization-dropdown .organization-name {
  color: #000E20;
  line-height: 19px;
}
.ui.dropdown.organization-dropdown .organization-name .highlight {
  font-weight: 600;
}
.ui.dropdown.organization-dropdown .organization-inn,
.ui.dropdown.organization-dropdown .organization-address {
  color: #625F6A;
  font-size: 14px;
  line-height: 20px;
}
.ui.dropdown.organization-dropdown .highlight {
  background: #FFEBD4;
}

.connection__inner .ui.search.selection.dropdown.organization-dropdown.js-autocomplete-company .default.text, .form_modal .ui.search.selection.dropdown.organization-dropdown.js-autocomplete-company .default.text {
  color: rgba(0, 0, 0, 0.5);
}

.ui.search.dropdown > .text {
  top: 6px;
}
@charset "UTF-8";
@import 'app.variable.css';
#events-page h1, #events-page h2 {
  color: var(--green-main);
}

#main-event-block {
  padding-top: clamp(64px, 109.714px - 5.952vw, 24px);
  padding-bottom: clamp(24px, -40px + 8.333vw, 80px);
}

.event-bg {
  margin-top: 8px;
  background: url("/application/images/general-event-bg.png") no-repeat center/cover;
  height: 92px;
  border-radius: 24px;
}
.events-bg {
  display: grid;
  margin-top: 32px;
  place-items: center;
  background: url("/application/images/events-index-bg.png") no-repeat center/cover;
  border-radius: 24px;
}
.events-bg h1 {
  padding-top: clamp(80px, -32px + 14.583vw, 178px);
  padding-bottom: clamp(32px, -20.571px + 6.845vw, 78px);
  text-align: center;
  font-size: clamp(32px, -11.429px + 5.655vw, 70px);
  font-weight: 700;
}

.card__date {
  color: var(--grey);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 991px) {
  .renewal.d-grid.grid-items_2 {
    gap: 0;
    background: none;
    border-radius: 20px 20px 0 0;
  }
}
.renewal .event-form-img {
  position: static;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.renewal .event-form-left {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}
@media (max-width: 767px) {
  .renewal .event-form-left {
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .renewal .event-form-left .event-form-dates.caption-event__date {
    justify-content: center;
    align-items: center;
  }
}
.renewal .event-form-left h1 {
  padding-top: 0;
  font-size: clamp(18px, 11.143px + 0.893vw, 24px);
  text-align: left;
  color: var(--green-main);
  font-weight: 700;
  line-height: 125%;
}
@media (max-width: 991px) {
  .renewal .event-form-left h1 {
    text-align: center;
    color: #fff;
  }
}
.renewal .event-form-left h2 {
  position: relative;
  text-align: left !important;
  font-size: 30px;
  line-height: 125%;
  z-index: 2;
}
@media (max-width: 991px) {
  .renewal .event-form-left h2 {
    font-size: 20px;
    text-align: center !important;
  }
}
.renewal .event-form-left h3.type-event {
  display: inline-block;
  padding: 4px 10px;
  background: var(--white);
  color: var(--green-main);
  font-weight: 400;
  font-size: 14px;
  border-radius: 60px;
}
.renewal .event-form-left h3.date-event {
  padding: 24px 0 0 0;
  font-weight: 400;
  font-size: 1rem;
  color: var(--black);
}
@media (max-width: 991px) {
  .renewal .event-form-left h3.date-event {
    color: var(--white);
  }
}
.renewal .event-form-left .add-calendar-wrap {
  margin-bottom: 0;
}
.renewal .event-form-left .add-calendar-wrap p {
  font-size: 14px;
}

.add-calendar-wrap {
  display: flex;
  position: relative;
  margin-bottom: 24px;
  flex-wrap: wrap;
  z-index: 1;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .add-calendar-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
}
.add-calendar-link {
  padding: 0;
}
@media (hover: hover) {
  .add-calendar-link:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
.add-calendar-link a {
  display: block;
  padding: 4px 10px;
  width: 100%;
  height: 100%;
  color: var(--green-main);
  border-radius: 60px;
  background: var(--white);
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .add-calendar-link a:hover {
    color: var(--white);
    background: var(--green-main);
    text-decoration: none;
  }
}

.closeRegister.closeEvent {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: url("/application/images/events/event-over_bg.svg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .closeRegister.closeEvent {
    display: none;
  }
}
.closeRegister.closeEvent .date-event {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.event-connection {
  position: relative;
  padding: 40px 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}

.event-next__info .event-title__tag, .event__info .event-title__tag {
  display: inline-block;
  margin-right: 16px;
  color: #625F6A;
}

.event-content-table {
  margin: 0 auto;
  max-width: 820px;
}
.event-content-table-speaker {
  width: 100px;
}
@media (max-width: 767px) {
  .event-content-table-speaker {
    width: 50px;
  }
}
.event-content-table th, .event-content-table td {
  padding: 24px 10px;
  font-size: 16px;
  line-height: 140%;
}
@media (min-width: 641px) and (max-width: 1199px) {
  .event-content-table th, .event-content-table td {
    padding: 14px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .event-content-table th, .event-content-table td {
    padding: 24px 8px;
    font-size: 14px;
  }
}
.event-content-table th {
  text-align: center;
  color: #FF7A00;
}
.event-content-table td {
  color: var(--black);
}
.event-content-table td p {
  padding: 0 0 10px 0;
}
@media (max-width: 640px) {
  .event-content-table td p {
    font-size: 14px;
  }
}
.event-content-table tr:nth-child(even) {
  background: #FFF9F2;
}
.event-content-column {
  display: grid;
  grid-template-columns: repeat(2, 360px);
  justify-content: center;
  gap: clamp(16px, -11.429px + 3.571vw, 40px);
}
@media (max-width: 767px) {
  .event-content-column {
    grid-template-columns: minmax(auto, 360px);
  }
}
.event-content-column-item {
  padding: 16px;
}
@media (max-width: 767px) {
  .event-content-column-item {
    padding: 12px;
  }
}
.event-content-column-item h3 {
  font-size: 16px;
}
.event-content-column-item p {
  padding-bottom: 0;
  font-size: 14px;
  color: var(--grey);
}
.event-content-column-item.bordered {
  border-radius: 10px;
  border: 1px solid #E0E0E0;
}
.event-content-column-item.oranged {
  background-color: #FFF9F2;
  border-radius: 10px;
}
.event-content-column-item-person {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
}
.event-content-block {
  padding: 40px;
}
@media (min-width: 993px) and (max-width: 1440px) {
  .event-content-block {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .event-content-block {
    padding: 48px 0px;
    border-radius: 0;
  }
}
.event-content-block.accented {
  background: var(--grey-light);
  border-radius: 20px;
}
@media (max-width: 991px) {
  .event-content-block.accented {
    border-radius: 0;
  }
}
.event-content-block h2 {
  padding: 0 0 48px 0;
  text-align: center;
  font-size: clamp(24px, 10.286px + 1.786vw, 36px);
  color: var(--green-main);
  line-height: 120%;
}

.event-speakers img {
  max-width: 120px;
  border-radius: 10px;
}

.event-interest img {
  max-width: 24px;
}

.event-form {
  margin: 0 auto;
  max-width: 580px;
}
.event-form.event-content-block {
  background: var(--white);
}
.event-form .phone-country-selector__container {
  margin-top: calc(50% - 200px);
}
.event-form-right {
  padding: 0;
}
@media (max-width: 992px) {
  .event-form-right {
    background: linear-gradient(207.12deg, rgba(255, 198, 219, 0.6) 29.16%, rgba(224, 242, 239, 0.6) 57.89%, rgba(229, 224, 255, 0.6) 83.22%);
  }
}
.event-form-left {
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 992px) {
  .event-form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 480px;
  }
  .event-form-left h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .event-form-left {
    min-height: 320px;
    border-radius: 0;
    padding: 24px clamp(16px, 1.5vw, 24px);
  }
}
.event-form-left h1, .event-form-left h3 {
  position: relative;
  z-index: 1;
}
.event-form-left h3 {
  padding-top: 0;
}
@media (min-width: 768px) and (max-width: 992px) {
  .event-form-left h1 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .event-form-left h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.event-form-left .images-priority-event {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.event-form-left .images-priority-event:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(94, 120, 155, 0.8);
}
.event-form-left-content {
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  gap: 24px;
}
.event-form-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 688px;
  height: 411px;
  background-size: cover;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .event-form-img {
    width: 584px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .event-form-img {
    width: 500px;
    height: 302px;
  }
}
@media (max-width: 992px) {
  .event-form-img {
    display: none;
  }
}
.event-form-main {
  position: relative;
  display: flex;
  padding: 48px;
  flex-wrap: wrap;
  border-radius: 20px;
  background: var(--green-sea-light);
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .event-form-main {
    min-height: 680px;
  }
}
@media (min-width: 993px) and (max-width: 1440px) {
  .event-form-main {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .event-form-main {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .event-form-main {
    border-radius: 0;
  }
}
.event-form-result {
  margin: 0 auto 32px auto;
  width: 240px;
  height: 220px;
  background: url("/application/images/events/reg-success.svg") 50% 50% no-repeat;
  background-size: cover;
}
.event-form-error {
  display: block;
  position: absolute;
  bottom: -22px;
  right: 0;
}
.event-form-error-checkbox {
  right: auto;
  top: 16px;
  left: -5px;
}
.event-form-wrap h3 {
  padding-top: 0;
}
.event-form-wrap .ui.search.dropdown > .text {
  top: -1px;
}
.event-form-wrap .phone-country-selector {
  max-height: 38px;
  border: solid 1px #E0E0E0;
}
.event-form-wrap input,
.event-form-wrap textarea,
.event-form-wrap select,
.event-form-wrap .multiselect.dropdown-toggle,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown {
  margin-bottom: 16px;
  height: 38px !important;
  color: var(--black);
  background: #ffffff;
  border: solid 1px #E0E0E0;
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .event-form-wrap input:hover,
  .event-form-wrap textarea:hover,
  .event-form-wrap select:hover,
  .event-form-wrap .multiselect.dropdown-toggle:hover,
  .event-form-wrap .ui.search.selection.dropdown.organization-dropdown:hover {
    border: solid 1px #5E789B;
  }
}
.event-form-wrap input.required.error,
.event-form-wrap textarea.required.error,
.event-form-wrap select.required.error,
.event-form-wrap .multiselect.dropdown-toggle.required.error,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown.required.error {
  border: 1px solid #E00;
}
.event-form-wrap input ::-webkit-input-placeholder,
.event-form-wrap textarea ::-webkit-input-placeholder,
.event-form-wrap select ::-webkit-input-placeholder,
.event-form-wrap .multiselect.dropdown-toggle ::-webkit-input-placeholder,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #828282;
}
.event-form-wrap input ::-moz-placeholder,
.event-form-wrap textarea ::-moz-placeholder,
.event-form-wrap select ::-moz-placeholder,
.event-form-wrap .multiselect.dropdown-toggle ::-moz-placeholder,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown ::-moz-placeholder {
  /* Firefox 19+ */
  color: #828282;
}
.event-form-wrap input :-ms-input-placeholder,
.event-form-wrap textarea :-ms-input-placeholder,
.event-form-wrap select :-ms-input-placeholder,
.event-form-wrap .multiselect.dropdown-toggle :-ms-input-placeholder,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown :-ms-input-placeholder {
  /* IE 10+ */
  color: #828282;
}
.event-form-wrap input :-moz-placeholder,
.event-form-wrap textarea :-moz-placeholder,
.event-form-wrap select :-moz-placeholder,
.event-form-wrap .multiselect.dropdown-toggle :-moz-placeholder,
.event-form-wrap .ui.search.selection.dropdown.organization-dropdown :-moz-placeholder {
  /* Firefox 18- */
  color: #828282;
}
.event-form-wrap input[type=checkbox] + label,
.event-form-wrap input[type=radio] + label {
  color: var(--black);
}
.event-form-wrap input[type=checkbox] + label,
.event-form-wrap input[type=radio] + label {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-top: 15px;
  font-size: 14px;
  width: 100%;
}
.event-form-wrap input[type=checkbox] + label::before {
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  margin-right: 2px;
  content: "";
  width: 18px;
  height: 18px;
  vertical-align: middle;
  border: 1px solid #E0E0E0;
  background-color: #fff;
  cursor: pointer;
  border-radius: 2px;
}
.event-form-wrap .alert-error {
  color: #EE0000;
  font-size: 12px;
  line-height: 18px;
  background: transparent;
  border: none;
}
.event-form-wrap span.position-relative {
  display: block;
}
.event-form-wrap span.position-relative:last-of-type {
  margin-bottom: 0;
}
.event-form-wrap span label {
  padding-bottom: 8px;
  font-size: 12px;
}
.event-form-wrap .dropdown.custom-dropdown .dropdown.loader {
  top: 50%;
}
.event-form-wrap .multiselect_gray button.multiselect {
  height: 42px;
  font-size: 14px;
}
.event-form-wrap .multiselect_gray button.multiselect .multiselect-selected-text {
  color: #828282;
}
.event-form-wrap .multiselect_gray button.multiselect:hover {
  cursor: pointer;
}
.event-form-wrap select {
  color: #828282;
}
.event-form-wrap select option {
  color: var(--black);
}
.event-form-wrap select:hover {
  cursor: pointer;
}

@media (max-width: 767px) {
  .events-wrapper .event__img {
    width: 80px;
    height: 80px;
  }
  .events-wrapper .event__description {
    padding-top: 0;
    padding-left: 16px;
    flex-grow: 1;
    flex-basis: 0;
  }
}

.record-marker {
  position: relative;
}
.record-marker.available {
  width: 100%;
}
.record-marker.available:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 133px;
  height: 26px;
  background-image: url(/application/images/record-available_bg.svg);
  background-size: cover;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .event__img {
    max-width: 100%;
  }
}

.events-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .events-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 880px) and (max-width: 1199px) {
  .events-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 879px) {
  .events-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .events-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 767px) and (min-width: 426px) {
  .events-wrapper .event-wrapper {
    width: 320px;
  }
}
@media (max-width: 425px) {
  .events-wrapper .event-wrapper {
    width: 100%;
  }
}

.new-event_mobile-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(94, 120, 155, 0.8);
  border-radius: 20px 20px 0 0;
}
.new-event-bg {
  padding: 48px;
  background: var(--green-sea-light);
  border-radius: 24px;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 991px) {
  .new-event-bg {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) and (max-width: 1379px) {
  .new-event-bg {
    padding: 36px;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .new-event-bg {
    padding: 24px;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .new-event-bg {
    padding: 0;
    border-radius: 20px 20px 0 0;
  }
}
.new-event-announce {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 992px) {
  .new-event-announce {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .new-event-announce.right {
    padding: 0 10px 24px 10px;
  }
}

.event {
  background: #FFFFFF;
  padding: 16px;
  border: 1px solid #E0E0E0;
}
@media (hover: hover) {
  .event:hover {
    cursor: pointer;
    box-shadow: var(--hover-shadow);
    text-decoration: none;
  }
}
@media only screen and (max-width: 990px) {
  .event {
    padding: 16px;
    min-width: auto;
  }
}
@media only screen and (max-width: 620px) {
  .events {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.event__preview {
  background-size: cover;
  padding: 24px;
  margin-bottom: 8px;
  margin-right: -10px;
  margin-left: -10px;
  background-position: right;
}
@media only screen and (max-width: 450px) {
  .event__preview {
    padding: 8px;
    margin-bottom: 1rem;
  }
}
.event__preview .btn_wide {
  margin: 8px 0px 0px;
}
.event__meta {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-size: 14px;
  width: 100%;
  flex-wrap: wrap;
  color: var(--green-main);
}
@media (max-width: 767px) {
  .event__meta {
    gap: 16px;
    font-size: 12px;
  }
}
.event__title {
  position: relative;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  font-size: 16px;
  color: var(--black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 150%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .event__title {
    -webkit-line-clamp: 2;
  }
}
@media (hover: hover) {
  .event__title:hover {
    color: #000;
    outline: none;
    text-decoration: none;
  }
}
.event__info {
  padding-top: 8px;
  font-style: normal;
  font-weight: normal;
  line-height: 18px;
  font-size: 12px;
  color: #625F6A;
  width: 100%;
}
.event__preview-title {
  color: #1e2128;
  padding: 16px 0;
  text-align: left;
}
.event__pr {
  z-index: 0;
}
@media screen and (min-width: 990px) {
  .event__pr {
    padding-right: 34px;
  }
}
.event_accent {
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 16px;
}
.event_accent .event__description {
  display: flex;
  padding: 16px 0;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .event_accent .event__description {
    padding: 0 0 16px 0;
  }
}
.event__logo {
  width: 170px;
  flex: 0 1 170px;
  background-position: 100% 0%;
}
@media (max-width: 1199px) {
  .event__logo {
    background-position: 0;
  }
}
.event__img {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .event__priority {
    background: #fff;
    padding: 0px;
  }
}
.event__prioritycontent {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 16px;
}
@media only screen and (max-width: 768px) {
  .event__prioritycontent {
    background-color: #fff;
    padding: 0px;
    border-radius: 0px;
  }
}
.event__priorityimg {
  display: none;
}
@media only screen and (max-width: 768px) {
  .event__priorityimg {
    display: block;
    background-size: cover;
    height: 156px;
    margin-bottom: 16px;
  }
}
.eventprev .event {
  width: 23.6%;
}
@media only screen and (max-width: 1150px) {
  .eventprev .event {
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .eventprev .event {
    width: 100%;
  }
}
@media only screen and (max-width: 630px) {
  .eventprev .event {
    width: 100%;
    margin: 0 auto 15px;
  }
  .eventprev .event.event-prev__item_block {
    margin: 0 !important;
  }
}
.eventprev .event__title {
  font-size: 20px;
}
.eventprev .event_accent {
  width: 49%;
}
@media only screen and (max-width: 1150px) {
  .eventprev .event_accent {
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .eventprev .event_accent {
    width: 100%;
  }
}
.event_border {
  border-radius: 20px;
  border: 1px solid #E0E0E0;
}
@media (max-width: 767px) {
  .event_border {
    border-radius: 10px;
  }
}

.event-title {
  display: block;
  margin: 0 auto;
  max-width: 1220px;
  min-height: 400px;
}
.event-title__img {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 16px 16px 0 0;
  line-height: 0;
}
.event-title__text .event-title__tag {
  margin-top: 16px;
}
.event-title__date {
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
.event-title__type {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  color: var(--green-main);
  line-height: 1;
  border-radius: 60px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .event-title__type {
    display: flex;
    align-items: center;
  }
}
.event-title__title {
  font-size: clamp(18px, 11.143px + 0.893vw, 24px);
  font-weight: bold;
  color: var(--green-main);
  line-height: 140%;
  aspect-ratio: auto;
}
@media (max-width: 991px) {
  .event-title__title {
    display: grid;
    padding: 32px 16px;
    place-items: center;
    text-align: center;
    color: #fff;
  }
}
.event-title__info {
  font-size: 1rem;
  line-height: 26px;
  text-align: left;
}

.event-next {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.event-next__logo {
  display: block;
  position: absolute;
  top: 10px;
  right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}
.event-next__item {
  width: 100%;
  min-height: 338px;
  height: 100%;
  padding: 0;
  color: #000;
}
@media (max-width: 767px) {
  .event-next__item {
    max-width: 420px;
  }
}
.event-next__item.hover-block {
  padding: 0;
  max-width: none;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  padding: 16px;
}
@media (max-width: 1280px) and (min-width: 1025px) {
  .event-next__item.hover-block {
    min-height: 330px;
  }
}
.event-next__item.hover-block:hover {
  box-shadow: 0px 20px 40px 0px rgba(1, 2, 2, 0.05);
}
.event-next__img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 190px;
  border-radius: 5px;
}
.event-next__info {
  padding-top: 16px;
  background-color: #fff;
}
.event-next__info .event-title__tag {
  font-size: 14px;
}
.event-next__meta {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.event-next__date {
  padding-bottom: 10px;
  font-size: 14px;
  flex: 0 0 auto;
}
.event-next__type {
  padding-bottom: 10px;
  font-size: 14px;
  flex: 0 0 auto;
}
.event-next__title {
  position: relative;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: clamp(1rem, 1vw, 18px);
  text-decoration: none;
}
@media (hover: hover) {
  .event-next__title:hover {
    text-decoration: none;
  }
}

.event-prev {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.event-prev__logo {
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0px 0px 0px 10px;
}
.event-prev__title {
  font-size: 20px;
  color: #f28645;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 20px;
}
.event-prev__item {
  max-width: 330px;
  width: 100%;
  min-height: 191px;
  height: 100%;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #E0E0E0;
  margin: 0px 20px 20px 0px;
  transition: all 0.2s ease-in-out 0s;
}
.event-prev__item:hover .event-prev__title {
  text-decoration: underline;
  color: #4583c8;
}
.event-prev__item:nth-child(7n+5) {
  max-width: 686px;
  border: solid 1px #cfcfcf;
  display: flex;
  flex-flow: row nowrap;
  align-content: stretch;
  transition: all 0.3s ease-in-out 0s;
}
.event-prev__item:nth-child(7n+5) .event-prev__img {
  max-width: 350px;
  width: 100%;
}
.event-prev__item_active {
  max-width: 686px;
  border: solid 1px #cfcfcf;
  display: flex;
  flex-flow: row nowrap;
  align-content: stretch;
  transition: all 0.3s ease-in-out 0s;
}
.event-prev__item_active .event-prev__img {
  max-width: 350px;
  width: 100%;
}
.event-prev__item-in {
  flex: 0 0 auto;
}
.event-prev__item_block {
  min-height: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.event-prev__info {
  max-width: 330px;
  box-sizing: border-box;
  padding: 16px;
  flex-flow: row wrap;
}
.event-prev__info > div:first-child {
  position: relative;
  height: 110px;
  overflow: hidden;
  margin-bottom: 8px;
}
.event-prev__info > div:first-child:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 24px;
  width: 100%;
  background: linear-gradient(0deg, #fff, transparent);
}
.event-prev__img {
  display: inline;
  max-width: 0px;
  width: 0px;
  min-height: 191px;
  flex: 0 1 auto;
  background-repeat: no-repeat;
  background-size: cover;
}
.event-prev__info {
  display: block;
  font-size: 14px;
  line-height: 1.57;
  text-align: left;
  color: rgba(30, 33, 40, 0.5);
}
.event-prev__info-item {
  display: inline-block;
  vertical-align: middle;
}
.event-prev__more {
  text-align: center;
  display: block;
  width: 100%;
  padding-top: 44px;
}
.event-prev__more .btn {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 1122px) {
  .event-prev__item {
    max-width: 290px;
  }
  .event-prev__item:nth-child(7n+5),
  .event-prev__item_active {
    max-width: 600px;
  }
  .event-prev__item:nth-child(7n+5) .event-prev__img,
  .event-prev__item_active .event-prev__img {
    max-width: 290px;
  }
}
@media only screen and (max-width: 990px) {
  .event-prev__item {
    width: 100%;
    min-height: 191px;
    height: 100%;
    padding: 0;
    margin: 0 20px 20px 0;
  }
  .event-prev__item_block {
    min-height: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 870px) {
  .event-prev__item {
    margin: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .event-title__text {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .event-title__img {
    max-width: 100%;
    width: 100%;
  }
  .event-title__img .event-title__type {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) and (max-width: 991px) {
  .event-title__img .event-title__type {
    font-weight: 400;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .event-title__img .event-title__date {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 991px) {
  .event-title__img .event-title__date {
    font-weight: 400;
    font-size: 12px;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .event-title__img .event-title__btn {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 750px) {
  .event-prev__info > div:first-child {
    height: inherit;
  }
  .event-prev__info > div:first-child:after {
    display: none;
  }
  .event-prev__item {
    min-height: inherit;
    margin: 0 auto 20px;
  }
  .event-prev__item_block {
    margin: 0;
  }
}
@media only screen and (max-width: 450px) {
  .event-prev__img {
    display: none;
  }
  .event-prev__item:nth-child(7n+5),
  .event-prev__item_active {
    border-width: 0px;
  }
  .event-prev__info {
    padding: 8px;
  }
}
.events_home .event__img {
  max-width: none;
  flex: 0 0 100%;
  height: 133px;
  min-height: 133px;
  max-height: 133px;
}
.events_home .event {
  width: auto;
  height: auto;
  margin: 0;
  min-height: auto;
  min-width: auto;
}
@media (max-width: 767px) {
  .events_home .event {
    max-width: none;
    width: 100%;
  }
}
.events_home .event__description {
  width: auto;
}
.events_home .event_accent {
  flex: 1 1 100%;
}
.events_home .event__title {
  height: 52px;
}
.events_home .event__title:after {
  background: transparent;
}
@media (max-width: 767px) {
  .events_home .event__meta {
    opacity: 1;
  }
}

.block--hidden,
.block-text--hidden {
  display: none;
}

.event__title:hover::after,
a.event__title:hover::after {
  background: none;
}

.magic-link:hover .event__title:after {
  background: none;
}
.magic-link:hover a.event__title:after {
  background: none;
}

.event-content .reg__form input[type=text],
.event-content .reg__form input[type=number],
.event-content .reg__form select {
  position: relative;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  padding: 5px;
  font: 300 17px/1.2 Ubuntu, Arial, sans-serif;
  border: 0;
  background: transparent;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
  border-bottom: 1px solid #222;
  color: #222;
  outline: none;
}
.event-content input::-webkit-outer-spin-button,
.event-content input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.event-content input[type=number] {
  -moz-appearance: textfield;
}
.event-content .reg__form input[type=text].error,
.event-content .reg__form input[type=number].error,
.event-content .reg__form select.error {
  border-bottom: 1px solid red;
  box-shadow: none;
}

@media (min-width: 768px) {
  .main-container_main-page .event_accent {
    min-height: 256px;
    height: auto !important;
  }
}

/* new directum */
.event-content .box {
  margin: 0 auto;
  max-width: 1380px;
  width: 100%;
  padding: 48px 0px;
}
@media (max-width: 1400px) and (min-width: 992px) {
  .event-content .box {
    padding: 48px 10px;
  }
}
@media (max-width: 991px) {
  .event-content .box {
    padding: 48px 16px;
  }
}
.event-content .box h2 {
  text-align: center;
}
@media (max-width: 992px) {
  .event-content .box.view {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .event-content .box.view .event-content-block.accented {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.event-content .box.register-event {
  background-color: #F1F9FC;
  padding: 10px 40px;
}

/******страница мероприятия*******/
.caption-event {
  display: block;
  position: relative;
  margin: 24px auto 0 auto;
  background-size: cover;
}
.caption-event h1, .caption-event h2, .caption-event h3, .caption-event h4, .caption-event h5 {
  color: var(--green-main);
  padding-bottom: 0;
}
.caption-event__type {
  font-size: 28px;
  padding-top: 30px;
  line-height: 120%;
}
@media (max-width: 767px) {
  .caption-event__type {
    font-size: 18px;
  }
}
.caption-event__type p {
  font-size: 28px;
}
@media (max-width: 767px) {
  .caption-event__type p {
    font-size: 18px;
  }
}
.caption-event__title > span {
  padding: 30px 0px;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  .caption-event__title > span {
    padding: 0;
  }
}
.caption-event__title > span > h1 {
  font-size: 36px;
  color: #000;
  line-height: 120%;
}
@media (max-width: 767px) {
  .caption-event__title > span > h1 {
    font-size: 24px;
    text-align: left;
  }
}
.caption-event__title > span > span {
  font-size: 24px;
  padding: 0px 0px 10px 0px;
  display: inline-block;
  border-bottom: 1px solid #f7941f;
}
.caption-event__date {
  display: inline-block;
  padding-top: 40px;
  padding-bottom: 24px;
  line-height: 120%;
}
@media (max-width: 991px) {
  .caption-event__date {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}
.caption-event__date p {
  font-size: 28px;
}
@media (max-width: 767px) {
  .caption-event__date p {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

.menu-event {
  text-align: center;
  background-color: #F1F9FC;
  padding: 10px 10%;
  margin-bottom: 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.menu-event > a {
  font-size: 18px;
  cursor: pointer;
}
.menu-event > a:not(.button) {
  padding: 0px 10px;
  text-decoration: none;
  color: #232323;
}
.menu-event > a:not(.button):hover {
  color: #f7941f;
  text-decoration: underline;
}

.bgcolor-event {
  background-color: #F4F4F4;
}

.title-report-event {
  color: #f7941f;
  font-size: 18px;
}

.description-report-event {
  padding-bottom: 10px;
}

.tab-event {
  max-width: 1200px;
  margin: 20px auto 0;
}
.tab-event > div.tab-event__heder > div:nth-child(1) {
  color: #000;
  font-weight: bold;
}
.tab-event > div > div {
  padding-bottom: 10px;
  width: 33%;
}
.tab-event > div > div:nth-child(1) {
  color: #f7941f;
}
.tab-event .tab-event__heder {
  color: #000;
  font-weight: bold;
}

#moreUsers {
  margin: -10px auto 0px;
}

#btn__moreUsers {
  text-align: center;
  padding-bottom: 20px;
}

#btn__moreUsers > span {
  cursor: pointer;
  color: #0e76c3;
  transition: all 0.4s ease-in-out 0;
}

#btn__moreUsers > span > span {
  text-decoration: underline;
}

#btn__moreUsers > span:hover {
  color: #f7941f;
}

.org-event {
  text-align: center;
}
.org-event__item {
  display: inline-block;
  max-width: 300px;
  margin: 20px 10px 0px 10px;
}
.org-event__item p {
  padding-bottom: 0px;
}
.org-event__ava {
  display: block;
  margin: 0 auto 10px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  overflow: hidden;
  max-width: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.alert-error {
  width: initial;
  color: red;
  background: #ffeaea;
  margin: 5px;
  border-width: 0px;
  border-bottom: 1px solid red;
  display: inline-block;
  line-height: 20px;
  padding: 0px;
}

.register-event input[type=password],
.register-event input[type=text],
.register-event select {
  height: 45px;
  font-size: 16px;
}
.register-event select option:not(:first-child) {
  color: #000;
}
.register-event input.error,
.register-event select.error,
.register-event textarea.error {
  border-color: red;
  box-shadow: 0 0 2px 0 red;
}
.register-event .resultsend .alert-error {
  display: inline-block;
  max-width: 300px;
  padding: 2px 5px;
  box-shadow: 0 0 2px 0 red;
  border-radius: 5px;
  background-color: #FDE6E6;
  margin: 10px;
}

/*.resultsend {
	padding-top: 16px;
}*/
.forms__item {
  display: inline-block;
  min-width: 295px;
  margin: 0px 0px 0px 0px;
  margin: 0px 20px 30px 0px;
  vertical-align: top;
}

.users-event {
  position: relative;
  padding: 0px 0px 0px;
  display: inline-block;
  width: 49%;
  line-height: 1.4;
  vertical-align: top;
}
.users-event .item-user {
  position: relative;
  padding: 0px;
  display: table;
  width: 100%;
  max-width: 500px;
}
.users-event .item-user:last-child {
  margin-bottom: 20px;
}

.user-message {
  display: inline-block;
  width: 49%;
  line-height: 1.4;
  vertical-align: top;
}
.user-message > p {
  padding-left: 30px;
}

.forms__item__info {
  font-size: 14px;
}

.item-user i {
  content: "";
  display: table-cell;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  width: 16px;
  background-position: -92px 50%;
  cursor: pointer;
}
.item-user::before {
  content: "";
  display: table-cell;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  text-align: center;
  background-position: -62px 50%;
}
.item-user:nth-child(1)::before {
  content: "1";
}
.item-user:nth-child(2)::before {
  content: "2";
}
.item-user:nth-child(3)::before {
  content: "3";
}
.item-user:nth-child(4)::before {
  content: "4";
}
.item-user:nth-child(5)::before {
  content: "5";
}
.item-user:nth-child(6)::before {
  content: "6";
}
.item-user > span {
  font-size: 15px;
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.form_btn {
  display: block;
  text-align: center;
}

.btn-add {
  font-size: 15px;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  color: #000;
  padding: 5px 10px;
  margin-bottom: 15px;
}
.btn-add i {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin-right: 10px;
  vertical-align: middle;
}

.program {
  max-width: 1200px;
  margin: 0 auto;
}
.program > div > div {
  padding-bottom: 20px;
}
.program > div > div:nth-child(3) p:last-child {
  padding-bottom: 0px;
}
.program > div > div:nth-child(1) {
  min-width: 390px;
}
.program > div > div p,
.program > div > div ul,
.program > div > div li {
  max-width: 100%;
}
.program .program__title {
  color: #f7941f;
}

.tab-place {
  max-width: 1100px;
  margin: 0 auto;
}
.tab-place > div > div {
  width: 50%;
}
.tab-place__left {
  text-align: right;
}

.event-places {
  display: inline-block;
  max-width: 450px;
  width: 100%;
  position: relative;
  text-align: left;
  height: 300px;
  overflow-x: hidden;
}
.event-places label {
  font-size: 16px;
}
.event-places__parner-name {
  color: #f7941f;
}
.event-places__parner-name::before {
  content: "«";
}
.event-places__parner-name::after {
  content: "»";
}
.event-places::-webkit-scrollbar {
  width: 5px;
}
.event-places::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #aaa;
  border-radius: 5px;
}
.event-places::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #555;
  background-color: #777;
}
.event-places::-webkit-scrollbar-track {
  border-width: 0;
}
.event-places::-webkit-scrollbar-track:hover {
  background-color: #eee;
}

.list-place {
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 1030px) {
  #reg-event {
    text-align: center;
  }
}
@media only screen and (max-width: 769px) {
  .event-content .tab > div > div {
    display: block;
    padding-right: 0px;
  }
  .program > div > div {
    padding-bottom: 5px;
  }
  .program > div > div:nth-child(3) {
    padding-bottom: 20px;
  }
  .event-content .box.register-event {
    padding: 0 10px 10px;
  }
  .menu-event {
    flex-flow: row wrap;
    text-align: center;
    justify-content: center;
  }
  .menu-event > a:not(.button) {
    padding-bottom: 10px;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 1300px) {
  .caption-event {
    background-position: 50% 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .caption-event {
    background-position: 0px 0px;
  }
}
@media only screen and (max-width: 426px) {
  .caption-event {
    top: 0px;
  }
}
@media (max-width: 767px) {
  #regform {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-event-img {
  border-radius: 16px;
}

.event-content-for-who {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
}
@media (max-width: 767px) {
  .event-content-for-who {
    grid-template-columns: repeat(1, minmax(auto, 480px));
    justify-content: center;
  }
}
.event-content-for-who li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 24px 60px;
  background: #FFF9F2;
  border-radius: 10px;
}
.event-content-for-who li:before {
  top: calc(50% - 12px) !important;
  left: 24px !important;
  width: 24px !important;
  height: 24px !important;
  background: url("/application/images/events-participants-icon.svg") no-repeat center/contain !important;
}
.filter {
  padding: 24px 8px;
}
.filter__title {
  font-size: 14px;
  text-transform: uppercase;
  margin: 24px 0 16px;
}
.filter__item {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .filter__item {
    margin-bottom: 8px;
  }
  .filter__item:last-child {
    margin-bottom: 0px;
  }
}
.filter__item_btn {
  max-width: 95px;
  min-width: 95px;
}
@media screen and (max-width: 991.98px) {
  .filter__item_btn {
    max-width: none;
    width: auto;
  }
}
.filter__tags {
  display: block;
  width: 100%;
  height: 36px;
  color: rgba(1, 1, 1, 0.5);
  background-color: #fbfbfb;
  border: solid 1px #cfcfcf;
  background-image: none;
  border-radius: 3px;
  box-shadow: none;
  padding: 0 8px;
  margin-bottom: 0px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  padding-right: 32px;
}
.filter__tags_solutions {
  background-color: #fff;
}
.filter__tags-list {
  display: inline-block;
  max-width: 93%;
  max-height: 30px;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 3px;
}
.filter__tags-list > div {
  width: 2000px;
  display: flex;
}
.filter__placeholder {
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 20px;
  font-size: 14px;
}
.filter__tag {
  display: flex;
  align-items: center;
  position: relative;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  padding: 5px 9px;
  font-size: 14px;
  line-height: 16px;
  border-radius: 5px;
  margin: 0 6px 0 0px;
  max-width: 210px;
  height: 28px;
}
.filter__tag-title {
  max-height: 30px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  color: #000e20;
}
.filter__close {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  cursor: pointer;
  margin-left: 6px;
  background-image: url(/application/images/icon-clean.svg);
  background-repeat: no-repeat;
}
.filter__dropdown {
  width: 100%;
  display: block;
  background-color: #fff;
  background-image: none;
  transition: all 300ms ease-in-out 0s;
  padding: 0;
}
.filter__dropdown-mobile {
  border-radius: 3px;
  position: absolute;
  z-index: 9;
  top: 38px;
  overflow-x: auto;
  visibility: hidden;
  max-height: 0px;
  box-shadow: 0 2px 10px rgba(8, 31, 62, 0.25);
  border: solid 1px #cfcfcf;
  width: 100%;
  padding: 0;
}
.filter__dropdown-mobile_active {
  transition: all 300ms ease-in-out 0s;
  max-height: 485px;
  padding-bottom: 6px;
  visibility: visible;
  width: 100%;
  background: #fff;
}
.filter__dropdown-mobile .filter__dropdown-item input[type=checkbox] + label {
  margin-top: 0px;
  margin-bottom: 8px;
  color: #000e20;
}
.filter__dropdown-mobile::-webkit-scrollbar {
  width: 3px;
}
.filter__dropdown-mobile::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 2px;
  border-color: #777;
  background-color: #ccc;
  border-radius: 3px;
}
.filter__dropdown-mobile::-webkit-scrollbar-thumb:hover {
  border-width: 1px 1px 1px 2px;
  border-color: #555;
  background-color: #aaa;
}
.filter__dropdown-mobile::-webkit-scrollbar-track {
  border-width: 0;
  background-color: #eee;
}
.filter__dropdown-mobile::-webkit-scrollbar-track:hover {
  background-color: #eee;
}
.filter__dropdown-item {
  display: block;
  position: relative;
  padding: 0;
  top: 0;
  font-size: 12px;
}
@media (max-width: 991px) {
  .filter__dropdown-item {
    color: rgba(1, 1, 1, 0.5);
    background-color: #fbfbfb;
    padding: 6px 8px 1px;
    font-size: 15px;
  }
}
.filter__dropdown-item:after {
  display: none;
}
.filter__dropdown-item input[type=checkbox] + label {
  margin-top: 0px;
  margin-bottom: 16px;
}
.filter__dropdown-item input[type=checkbox] + label:before {
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  top: 0;
}
@media (max-width: 991px) {
  .filter__dropdown-item input[type=checkbox] + label:before {
    top: 3px;
  }
}
.filter__dropdown-item:hover {
  color: #000;
}
@media (max-width: 991px) {
  .filter__dropdown-item:hover {
    background-color: #ebebeb;
  }
}
.filter__dropdown-item:hover input[type=checkbox] + label:before {
  border: 1px solid #7a8190;
}
.filter__dropdown-item input[type=checkbox]:checked + label::before {
  background-color: #ff6e16;
  background-image: url(/application/images/icon_chec.svg);
  background-repeat: no-repeat;
  background-position: 2px 2px;
  border: 1px solid #ff6e16;
}

@media (min-width: 768px) {
  .client-filter__description.box-wrapper.text-center label {
    max-width: 100%;
  }
}
.partner-filter__description.box-wrapper.text-center label {
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (max-width: 768px) {
  .partner-filter__description.box-wrapper.text-center label {
    max-width: 100%;
  }
}

.partner-competence-list__item {
  font-size: 12px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
}
.partner-competence-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #b8b8b8;
  background-color: #fff;
  cursor: pointer;
  border-radius: 2px;
}
.partner-competence-list__item.active:before {
  background-image: url(/application/images/checkbox.png);
  background-repeat: no-repeat;
  background-position: 1px 2px;
}

@media screen and (min-width: 1200px) {
  .partner-status {
    flex-wrap: nowrap;
  }
  .partner-status-item {
    flex-grow: 1;
  }
}
.client-filter {
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .client-filter {
    flex-wrap: wrap;
  }
}
.client-filter__item {
  flex: 1 0 20%;
}
@media screen and (max-width: 767px) {
  .client-filter__item {
    flex: 1 0 100%;
  }
}
/* inter variable*/
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-optical-sizing: auto;
  font-style: normal;
  src: url("/application/fonts/Inter/Inter-V.ttf") format("truetype");
}
@import 'app.variable.css';
footer {
  padding: clamp(24px, -3.429px + 3.571vw, 48px) 16px;
  background-color: var(--green-main);
}
footer p {
  padding-bottom: 0;
  color: var(--white);
  text-align: center;
}
@import 'app.variable.css';
.alert.alert-success {
  background: transparent;
  border: none;
}

.form-group.ui-dropdown .custom-dropdown.dropdown.ui,
.form.form_subscription .phone-group {
  border-radius: 7px;
}

.form .phone-country-selector .selected-country {
  border-radius: 7px 0 0 7px;
}

.form .phone-group .phone-number {
  border-radius: 0 7px 7px 0;
}

.ui.search.dropdown > input.search {
  left: 0 !important;
}

.form input,
.form textarea,
.form select {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 8px;
  font-size: 14px;
  line-height: 1.44;
  letter-spacing: 0.2px;
  border-radius: 7px;
  transition: var(--standard-transition);
}
.form input.error-field,
.form textarea.error-field,
.form select.error-field {
  border-color: #881818;
}
.form input:disabled,
.form textarea:disabled,
.form select:disabled {
  background-color: #e8e8e8;
  border: solid 1px transparent;
  cursor: not-allowed;
}
.form textarea {
  padding: 8px;
  min-height: 76px;
  resize: none;
}
.form-group {
  padding: 0 0 16px;
}
.form-response-data {
  max-width: 700px;
  margin: 16px auto 0 auto;
}
.form .description span,
.form span {
  font-size: 14px;
}
.form a:not(.btn) {
  color: var(--green-light) !important;
  text-decoration: none !important;
}
.form_subscription {
  margin: auto;
  max-width: 459px;
}
.form_subscription input,
.form_subscription textarea,
.form_subscription select {
  margin-bottom: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
}
.form_subscription input::-moz-placeholder, .form_subscription textarea::-moz-placeholder, .form_subscription select::-moz-placeholder {
  /* general */
  color: rgba(255, 255, 255, 0.5);
}
.form_subscription input::placeholder,
.form_subscription textarea::placeholder,
.form_subscription select::placeholder {
  /* general */
  color: rgba(255, 255, 255, 0.5);
}
.form_subscription input::-webkit-input-placeholder,
.form_subscription textarea::-webkit-input-placeholder,
.form_subscription select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
}
.form_subscription input::-moz-placeholder,
.form_subscription textarea::-moz-placeholder,
.form_subscription select::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
}
.form_subscription input:-ms-input-placeholder,
.form_subscription textarea:-ms-input-placeholder,
.form_subscription select:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.5);
}
.form_subscription input:-moz-placeholder,
.form_subscription textarea:-moz-placeholder,
.form_subscription select:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.5);
}
@media (hover: hover) {
  .form_subscription input:hover,
  .form_subscription textarea:hover,
  .form_subscription select:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.form_subscription input:focus,
.form_subscription textarea:focus,
.form_subscription select:focus {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px rgba(112, 172, 48, 0.3) inset;
  outline: none;
}
.form_subscription input:disabled,
.form_subscription textarea:disabled,
.form_subscription select:disabled {
  background-color: #e8e8e8;
  border: solid 1px transparent;
  cursor: not-allowed;
}
.form_subscription .white-bordered {
  margin-top: 28px;
  padding: 14px 24px;
}
.form_subscription input {
  min-width: auto;
  height: 56px;
  max-width: 459px;
  width: 100%;
}
.form_subscription select {
  height: 56px;
}
.form_subscription option {
  color: var(--black);
}
.form_subscription .ui.selection.dropdown.organization-dropdown {
  background: rgba(255, 255, 255, 0.1);
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .form_subscription .ui.selection.dropdown.organization-dropdown:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.form_subscription .ui.selection.dropdown.organization-dropdown:focus {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.form_subscription .ui.selection.dropdown.organization-dropdown input {
  color: #fff;
}
.form_subscription .ui.selection.dropdown.organization-dropdown input:focus {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 0 5px rgba(112, 172, 48, 0.3) inset !important;
  outline: none;
}
.form_subscription .ui.selection.dropdown.organization-dropdown .default.text {
  color: rgba(255, 255, 255, 0.5019607843);
}
.form_subscription .ui.selection.dropdown.organization-dropdown .dropdown.loader:before {
  border-color: #f6f6f6 transparent;
}
.form_modal input,
.form_modal textarea,
.form_modal select,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search,
.form_modal .form .phone-country-selector .selected-country {
  color: var(--black);
  border: solid 1px #E0E0E0;
}
.form_modal input::-moz-placeholder, .form_modal textarea::-moz-placeholder, .form_modal select::-moz-placeholder, .form_modal .ui.search.selection.dropdown.organization-dropdown > input.search::-moz-placeholder, .form_modal .form .phone-country-selector .selected-country::-moz-placeholder {
  /* general */
  color: rgba(96, 96, 96, 0.5);
}
.form_modal input::placeholder,
.form_modal textarea::placeholder,
.form_modal select::placeholder,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search::placeholder,
.form_modal .form .phone-country-selector .selected-country::placeholder {
  /* general */
  color: rgba(96, 96, 96, 0.5);
}
.form_modal input::-webkit-input-placeholder,
.form_modal textarea::-webkit-input-placeholder,
.form_modal select::-webkit-input-placeholder,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search::-webkit-input-placeholder,
.form_modal .form .phone-country-selector .selected-country::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(96, 96, 96, 0.5);
}
.form_modal input::-moz-placeholder,
.form_modal textarea::-moz-placeholder,
.form_modal select::-moz-placeholder,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search::-moz-placeholder,
.form_modal .form .phone-country-selector .selected-country::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(96, 96, 96, 0.5);
}
.form_modal input:-ms-input-placeholder,
.form_modal textarea:-ms-input-placeholder,
.form_modal select:-ms-input-placeholder,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search:-ms-input-placeholder,
.form_modal .form .phone-country-selector .selected-country:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(96, 96, 96, 0.5);
}
.form_modal input:-moz-placeholder,
.form_modal textarea:-moz-placeholder,
.form_modal select:-moz-placeholder,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search:-moz-placeholder,
.form_modal .form .phone-country-selector .selected-country:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(96, 96, 96, 0.5);
}
@media (hover: hover) {
  .form_modal input:hover,
  .form_modal textarea:hover,
  .form_modal select:hover,
  .form_modal .ui.search.selection.dropdown.organization-dropdown > input.search:hover,
  .form_modal .form .phone-country-selector .selected-country:hover {
    border: 1px solid rgb(112, 172, 48) !important;
  }
}
.form_modal input:focus,
.form_modal textarea:focus,
.form_modal select:focus,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search:focus,
.form_modal .form .phone-country-selector .selected-country:focus {
  border: 1px solid rgb(112, 172, 48);
  box-shadow: 0 0 5px rgba(112, 172, 48, 0.3) inset !important;
  outline: none;
}
.form_modal input:disabled,
.form_modal textarea:disabled,
.form_modal select:disabled,
.form_modal .ui.search.selection.dropdown.organization-dropdown > input.search:disabled,
.form_modal .form .phone-country-selector .selected-country:disabled {
  background-color: #e8e8e8;
  border: solid 1px transparent;
  cursor: not-allowed;
}
.form_modal .form .phone-country-selector .selected-country {
  border-right: none;
}
@media (hover: hover) {
  .form_modal .ui.selection.dropdown:hover {
    border: solid 1px transparent;
  }
}
.form_modal .description span {
  color: var(--black);
}

.control-label {
  font-size: 16px;
  color: #1e2128;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  position: relative;
  margin: 6px 5px 0 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  display: block;
  position: relative;
  margin-top: 15px;
  padding-left: 26px;
  width: 100%;
  text-align: left;
  color: var(--white);
}
@media (max-height: 700px) {
  input[type=radio] + label,
  input[type=checkbox] + label {
    margin-top: 8px;
  }
}

input[type=checkbox] + label::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
  border: 1px solid #b8b8b8;
  background-color: #fff;
  top: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  border-radius: 3px;
}

input + label:hover {
  cursor: pointer;
}

input[type=checkbox]:checked + label::before {
  background-image: url(/application/images/checkbox.png);
  background-repeat: no-repeat;
  background-position: 1px 2px;
}

input[type=checkbox].error-field + label {
  color: #881818;
  transition: all 200ms ease-in-out;
}
input[type=checkbox].error-field + label a {
  text-decoration: underline;
}

input[type=checkbox].error-field + label:before {
  background-color: #ffeae9;
}

label.input_search {
  display: block;
  width: 80%;
  margin: auto;
  position: relative;
}

label.input_search:before {
  content: "";
  display: block;
  background-image: url(/application/images/search_icon.svg);
  width: 19px;
  height: 19px;
  position: absolute;
  left: 5px;
  top: 10px;
  z-index: 11;
}

.ui.search.selection.dropdown.organization-dropdown {
  padding-left: 8px;
  padding-right: 8px;
  height: 56px;
}
.ui.search.selection.dropdown.organization-dropdown .default.text {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3em;
  font-size: 14px;
}
.ui.search.selection.dropdown.organization-dropdown > input.search {
  padding-left: 8px;
  border: 1px solid transparent;
}
.ui.search.selection.dropdown.organization-dropdown:has(.error-field) {
  border-color: #881818;
}
@import 'app.variable.css';
.section-border {
  border-radius: var(--40-20) var(--40-20) 0 0;
}
.section-border.bg-gradient-blue-white-blue::after {
  content: "";
  height: clamp(20px, -2.857px + 2.976vw, 40px);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: calc(clamp(20px, -2.857px + 2.976vw, 40px) * -1);
  background-color: #e8f5ff;
}
.section-topped {
  position: relative;
  top: calc(clamp(20px, -2.857px + 2.976vw, 40px) * -1);
}

.p-80 {
  padding: clamp(24px, -40px + 8.333vw, 80px) 0;
}
.p-104 {
  padding: clamp(32px, -50.286px + 10.714vw, 104px) 0;
}
.p-topped {
  padding-bottom: clamp(64px, -29.714px + 12.202vw, 146px) !important;
}

.radius-16 {
  border-radius: var(--radius-16);
}
.radius-40 {
  border-radius: var(--40-20);
}

.grid-items_center {
  display: grid;
  place-items: center;
}
.grid-items_case {
  grid-template-columns: 380px minmax(0, 1fr);
  gap: clamp(24px, -11.429px + 3.571vw, 40px);
}
@media (max-width: 991px) {
  .grid-items_case {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid-items_2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .grid-items_2 {
    grid-template-columns: repeat(1, minmax(auto, 480px));
    justify-content: center;
  }
}
.grid-items .d-grid.grid-items_2-1 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-items_3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .grid-items_3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-items_3 {
    grid-template-columns: repeat(1, minmax(auto, 480px));
    justify-content: center;
  }
}
.grid-items_4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .grid-items_4 {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .grid-items_4 {
    grid-template-columns: repeat(1, minmax(auto, 480px));
    justify-content: center;
  }
}
@import 'app.variable.css';
.hamburger {
  position: relative;
}
@media (max-width: 991px) {
  .hamburger {
    position: static;
  }
}
.hamburger svg {
  cursor: pointer;
}
.hamburger svg rect {
  fill: #000;
  transition: var(--standard-transition);
  transform-origin: center;
}
.hamburger svg:hover rect {
  fill: var(--green-main);
}
.hamburger-menu {
  position: absolute;
  border-radius: 16px;
  background-color: #fff;
  padding: clamp(16px, 1.7vw, 28px) 0;
  width: 200px;
  z-index: 100;
  top: 55px;
  left: calc(50% - 100px);
  box-shadow: 0 0 30px -3px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 36px);
  pointer-events: none;
  opacity: 0;
  transition: var(--standard-transition);
}
@media (max-width: 991px) {
  .hamburger-menu {
    top: 0;
    left: 0;
    padding: 100px 10px 10px 10px;
    width: 100%;
    height: 90vh;
    z-index: -1;
  }
}
.hamburger-menu:before {
  content: "";
  position: absolute;
  border-bottom: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  top: -12px;
  left: calc(50% - 12px);
}
@media (max-width: 991px) {
  .hamburger-menu:before {
    display: none;
  }
}
.hamburger-menu__item {
  width: 100%;
  text-align: center;
  color: #000;
  transition: var(--standard-transition);
  display: block;
}
@media (max-width: 991px) {
  .hamburger-menu__item {
    text-align: left;
  }
}
.hamburger-menu__item:hover {
  color: var(--green-main);
  text-decoration: none;
}
@import 'app.variable.css';
.header {
  position: fixed;
  top: 16px;
  padding: 0 16px;
  /*top: clamp(24px, calc(13.333px + 1.389vw), 40px);*/
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--standard-transition);
}
@media (max-width: 991px) {
  .header {
    padding: 0 24px;
  }
}
.header-inner {
  border-radius: 60px;
  background-color: #fff;
  padding: 8px clamp(16px, 2vw, 30px);
  min-height: clamp(40px, 4vw, 62px);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--hover-shadow);
}
.header__logo {
  width: 150px;
  height: 40px;
  cursor: pointer;
  line-height: 0;
}
@media (max-width: 991px) {
  .header__menu {
    display: none;
  }
}
.header__hamburger {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 40px);
}
.header__hamburger .btn {
  padding: 12px 16px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .header__hamburger {
    gap: 0;
  }
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  transition: var(--standard-transition);
}
@media (max-width: 991px) {
  .header__phone {
    display: none;
  }
}
.header__phone svg path {
  stroke: #000;
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .header__phone:hover {
    color: var(--green-main);
    text-decoration: none;
  }
  .header__phone:hover svg path {
    stroke: var(--green-main);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header__phone-number {
    display: none;
  }
}
.header.scrolled {
  top: 10px;
}
.header.active .hamburger-menu {
  pointer-events: all;
  opacity: 1;
}
@media (max-width: 991px) {
  .header.active .header-inner {
    border-radius: 60px 60px 0 0;
    width: 100%;
  }
  .header.active .hamburger-icon rect:nth-child(1) {
    transform: translate(4px, 4px) rotate(-45deg);
  }
  .header.active .hamburger-icon rect:nth-child(2) {
    transform: rotate(45deg);
  }
  .header.active .hamburger-icon rect:nth-child(3) {
    transform: translate(-4px, -4px) rotate(-45deg);
  }
}
@import 'app.variable.css';
.lead-magnit-implementation {
  background: url(/application/images/lead-isup-bg.webp), linear-gradient(80deg, #29659B 8%, #84D084 100%);
  background-size: cover;
  border-radius: 20px;
  color: #fff;
}
.lead-magnit-implementation h1,
.lead-magnit-implementation h2 {
  font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
  text-align: left;
  color: #fff;
  line-height: 120%;
}
.lead-magnit-implementation .form-implementation {
  padding: clamp(1rem, 0.6rem + 2vw, 3rem);
  max-width: 718px;
}
.lead-magnit-implementation .form-implementation .alert-success {
  background-color: transparent;
  color: #fff;
}
.lead-magnit-implementation .form-implementation .thank a {
  color: var(--green-medium) !important;
  text-decoration: none !important;
}
.lead-magnit-implementation .form_subscription {
  max-width: 100%;
}
.lead-magnit-implementation .form_subscription input,
.lead-magnit-implementation .form_subscription select,
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 100%;
  transition: 0.3s ease-in-out;
  color: #fff;
}
.lead-magnit-implementation .form_subscription input:hover,
.lead-magnit-implementation .form_subscription select:hover,
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown:hover {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.lead-magnit-implementation .form_subscription input::-moz-placeholder, .lead-magnit-implementation .form_subscription select::-moz-placeholder, .lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown::-moz-placeholder {
  color: #fff;
}
.lead-magnit-implementation .form_subscription input::placeholder,
.lead-magnit-implementation .form_subscription select::placeholder,
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown::placeholder {
  color: #fff;
}
.lead-magnit-implementation .form_subscription input:focus,
.lead-magnit-implementation .form_subscription select:focus,
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown:focus {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(255, 255, 255);
}
.lead-magnit-implementation .form_subscription input:has(.error-field),
.lead-magnit-implementation .form_subscription select:has(.error-field),
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown:has(.error-field) {
  background: rgba(255, 240, 240, 0.5);
  border: 2px solid #ff0500;
}
.lead-magnit-implementation .form_subscription input.error-field,
.lead-magnit-implementation .form_subscription select.error-field,
.lead-magnit-implementation .form_subscription .ui.selection.dropdown.organization-dropdown.error-field {
  background: rgba(255, 240, 240, 0.5);
  border: 2px solid #ff0500;
}
.lead-magnit-implementation .form_subscription input[type=checkbox].error-field + label {
  color: #ff8282;
}
.lead-magnit-implementation .form_subscription .ui.search.selection.dropdown.organization-dropdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
}
.lead-magnit-implementation .form_subscription .ui.search.selection.dropdown.organization-dropdown .default.text {
  color: #fff;
}
.lead-magnit-implementation .form_subscription .custom-dropdown.dropdown.ui .search {
  color: #fff;
}
.lead-magnit-implementation .form_subscription option {
  color: #000;
}
.lead-magnit-implementation__man {
  margin-left: auto;
  max-width: clamp(480px, 336.985px + 11.928vw, 566px);
  aspect-ratio: 566/664;
}
@media (max-width: 991px) {
  .lead-magnit-implementation__man {
    display: none;
  }
}
.lead-magnit-implementation-sticky {
  position: sticky;
  top: calc(50% - 114px);
}
.lead-magnit-implementation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .lead-magnit-implementation-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.lead-magnit-implementation-grid.projects-guide .lead-magnit-implementation-grid__item {
  color: #000e20;
  background: rgba(193, 255, 114, 0.37);
}
.lead-magnit-implementation-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  width: 306px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background-color: #E8F5FF;
  color: var(--green-main);
  font-weight: 600;
  font-size: clamp(14px, 12.667px + 0.37vw, 18px);
  line-height: 150%;
  cursor: default;
  padding: 16px;
}
@media (max-width: 991px) {
  .lead-magnit-implementation-grid__item {
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    gap: 10px;
    padding: 24px 16px;
    border-radius: 15px;
    width: 100%;
    min-width: 320px;
    aspect-ratio: auto;
  }
  .lead-magnit-implementation-grid__item div:nth-child(2) {
    flex-grow: 1;
    flex-basis: 0;
  }
}
@media (max-width: 359px) {
  .lead-magnit-implementation-grid__item {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .lead-magnit-implementation-grid__item img {
    max-width: 32px;
  }
}

.radius-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background-color: var(--green-main);
}
@media (max-width: 991px) {
  .radius-img-container {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
}
@import 'app.variable.css';
.jumbotron {
  position: relative;
  margin-top: 32px;
  background: url("/application/images/jumbotron-main-decals.png") no-repeat center/contain, linear-gradient(180deg, rgba(255, 255, 255, 0.4) -12.23%, rgba(173, 220, 255, 0.4) 100%);
}
.jumbotron .viewPlace {
  padding-bottom: clamp(76px, 18.857px + 7.44vw, 126px);
  z-index: 2;
}
.jumbotron:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 31%;
  background: url("/application/images/jumbotron-decal-left.png") no-repeat center/cover;
  aspect-ratio: 0.78/1;
  z-index: 1;
}
@media (max-width: 767px) {
  .jumbotron:after {
    display: none;
  }
}
.jumbotron:before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 25%;
  background: url("/application/images/jumbotron-decal-right.png") no-repeat center/cover;
  aspect-ratio: 0.75/1;
  transform: translateY(-50%);
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .jumbotron:before {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .jumbotron:before {
    top: auto;
    bottom: 0;
    width: 100%;
    opacity: 0.4;
    transform: none;
  }
}
.jumbotron h1, .jumbotron p {
  text-align: center;
}
.jumbotron h1 {
  margin: 0 auto;
  /*padding-top: clamp(120px, calc(85.714px + 4.464vw), 150px);*/
  padding-top: 100px;
  max-width: 760px;
  text-transform: uppercase;
}
.jumbotron .title-slide-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.jumbotron .title-slide-block.mobile {
  margin-left: 8px;
}
@media (max-width: 767px) {
  .jumbotron .title-slide-block.mobile {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .jumbotron .title-slide-block.desktop {
    display: block;
  }
}
.jumbotron .title-slide-wrap {
  position: relative;
  display: inline-block;
  height: var(--slide-text);
  overflow: hidden;
}
.jumbotron .title-slide-inner {
  display: flex;
  flex-direction: column;
}
.jumbotron .title-slide-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--slide-text);
}
.jumbotron .btn-wrap {
  padding: 40px 0 32px 0;
}
.jumbotron-main-pic {
  margin: 0 auto;
  width: 100%;
  max-width: 1066px;
  background: url("/application/images/jumbotron-main-pic.png") no-repeat center/cover;
  aspect-ratio: 2.07/1;
}
@media (max-height: 800px) {
  .jumbotron-main-pic {
    max-height: 400px;
  }
}
.jumbotron-main-vid-link {
  margin-top: 24px;
  font-size: 14px;
  text-align: center;
}
.jumbotron-main-vid-link a {
  position: relative;
  padding-left: 30px;
  color: #29659B;
}
.jumbotron-main-vid-link a::before {
  position: absolute;
  content: "";
  top: calc(50% - 11px);
  left: 0;
  width: 22px;
  height: 22px;
  background: url("/application/images/play-link-icon.svg") no-repeat center/cover;
}

.about-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(auto, 440px) 1fr;
  grid-auto-rows: 1fr;
  gap: clamp(16px, 2.083vw, 30px);
}
@media (max-width: 1199px) {
  .about-wrap {
    display: block;
  }
}
.about-pic {
  background: url("/application/images/about-pic-bg.webp") no-repeat center/cover;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .about-pic {
    display: none;
  }
}
.about-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 440px));
  justify-content: center;
  gap: clamp(16px, 2.083vw, 30px);
}
.about-content:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: clamp(180px, 152.571px + 3.571vw, 204px);
  background: url("/application/images/about-wrap-decal.png") no-repeat center/cover;
  aspect-ratio: 1/1;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .about-content:before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-content {
    margin: 0 auto;
    max-width: 900px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .about-content {
    grid-template-columns: repeat(1, minmax(auto, 360px));
  }
}
.about-content-item {
  padding: var(--24-16);
  text-align: left;
  border-radius: 20px;
  aspect-ratio: 1.63/1;
}
.about-content-item:nth-child(even) {
  text-align: right;
}
@media (max-width: 767px) {
  .about-content-item:nth-child(even) {
    text-align: left;
  }
}
.about-content-item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.about-content-item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.about-content-item:nth-child(3) {
  grid-area: 2/1/3/2;
}
@media (min-width: 767px) {
  .about-content-item:nth-child(3) h4 {
    padding-right: 20%;
  }
}
@media (min-width: 767px) {
  .about-content-item:nth-child(3) p {
    padding-right: 12%;
  }
}
.about-content-item:nth-child(4) {
  grid-area: 2/2/3/3;
}
@media (min-width: 767px) {
  .about-content-item:nth-child(4) h4 {
    padding-left: 15%;
  }
}
@media (min-width: 767px) {
  .about-content-item:nth-child(4) p {
    padding-left: 12%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-content-item {
    padding: 32px 24px;
  }
}
@media (max-width: 767px) {
  .about-content-item {
    padding: 0;
    grid-area: auto !important;
    background-image: none !important;
    box-shadow: 0px 20px 40px 0px rgba(1, 2, 2, 0.05);
    aspect-ratio: auto;
  }
}
@media (max-width: 767px) {
  .about-content-item h4 {
    padding-bottom: 0;
  }
}
.about-content-item p:last-of-type {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .about-content-item .about-item-header {
    padding: 16px;
  }
  .about-content-item .about-item-header:nth-child(1) {
    background-color: #C9EFC7;
    border-radius: 20px 20px 20px 20px;
  }
  .about-content-item .about-item-header:nth-child(1) h4 {
    position: relative;
    padding-right: 52px;
  }
  .about-content-item .about-item-header:nth-child(1) h4:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 36px;
    height: 36px;
    background-color: #F3FFF3;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--standard-transition);
    z-index: 1;
  }
  .about-content-item .about-item-header:nth-child(1) h4:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 6px;
    width: 24px;
    height: 24px;
    background: url("/application/images/arrow-top-green.svg") no-repeat center/cover;
    transform: translateY(-50%);
    transition: var(--standard-transition);
    z-index: 1;
  }
}
.about-content-item .about-item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-content-item .about-item-content {
    display: none;
    padding: 16px;
    background-color: var(--white);
    border-radius: 0 0 20px 20px;
  }
  .about-content-item .about-item-content p {
    opacity: 0;
  }
}
.about-content-item.active .about-item-header {
  border-radius: 20px 20px 0 0;
}
.about-content-item.active .about-item-header h4:before {
  background-color: var(--white);
}
.about-content-item.active .about-item-header h4:after {
  transform: translateY(-50%) rotate(180deg);
}
.about-content-item.active .about-item-content {
  display: grid;
  grid-template-rows: 1fr;
}

.about-content-item:nth-child(1) {
  background-image: url(/application/images/about-item-bg-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.about-content-item:nth-child(2) {
  background-image: url(/application/images/about-item-bg-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.about-content-item:nth-child(3) {
  background-image: url(/application/images/about-item-bg-3.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.about-content-item:nth-child(4) {
  background-image: url(/application/images/about-item-bg-4.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.platform-bg {
  position: relative;
  background: url("/application/images/platform-bg.png") no-repeat center/cover, linear-gradient(90deg, #6bc76b -37.09%, #245989 77.21%);
  border-radius: var(--40-20);
  overflow: hidden;
}
@media (max-width: 991px) {
  .platform-bg {
    background: linear-gradient(166.04deg, #6BC76B -44.85%, #245989 74.02%);
  }
}
.platform-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.083vw, 30px);
}
@media (max-width: 991px) {
  .platform-wrap {
    grid-template-columns: repeat(1, minmax(auto, 360px));
    justify-content: center;
  }
}
.platform-item {
  padding: clamp(16px, 2.083vw, 30px) clamp(12px, -8.571px + 2.679vw, 30px);
  background: linear-gradient(49.07deg, rgba(255, 255, 255, 0.05) 62.83%, rgba(255, 255, 255, 0.0351171) 89.73%, rgba(255, 255, 255, 0) 119.81%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0px 1px 6px 0px rgba(255, 255, 255, 0.2) inset;
}
.platform-item h3, .platform-item p {
  color: var(--white);
}
.platform-item h3 {
  text-align: center;
}
.platform-item:nth-child(2) {
  transition-delay: 0.5s !important;
}
.platform-item:nth-child(3) {
  transition-delay: 1s !important;
}
.platform-item p {
  font-weight: 300;
  line-height: 150%;
}
.platform-item p:last-of-type {
  padding-bottom: 24px;
}
.platform-item img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}

.users-wrap {
  position: relative;
}
@media (max-width: 1199px) {
  .users-wrap {
    display: flex;
    margin-top: 64px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 84px 24px;
  }
}
.users-item {
  position: relative;
  left: 50%;
  padding: clamp(12px, 2.857px + 1.19vw, 20px);
  width: 100%;
  max-width: clamp(420px, 353.481px + 5.548vw, 460px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
.users-item p:nth-child(1) {
  text-align: center;
  font-weight: 700;
}
.users-item p:nth-child(2) {
  padding-bottom: 0;
}
.users-item:nth-child(1) {
  transform: translate(calc(clamp(526px, 439.526px + 7.212vw, 578px) * -1), 38px);
}
.users-item:nth-child(1):before {
  background: url("/application/images/users-item-directors.png") no-repeat center/contain;
}
.users-item:nth-child(2) {
  transform: translate(clamp(140px, 106.741px + 2.774vw, 160px), 0);
  transition-delay: 1.2s;
}
.users-item:nth-child(2):before {
  background: url("/application/images/users-item-offices.png") no-repeat center/contain;
}
.users-item:nth-child(3) {
  transform: translate(calc(clamp(580px, 430.333px + 12.483vw, 670px) * -1), 0);
  transition-delay: 0.3s;
}
.users-item:nth-child(3):before {
  background: url("/application/images/users-item-ceo.png") no-repeat center/contain;
}
.users-item:nth-child(4) {
  transform: translate(clamp(160px, 76.852px + 6.935vw, 210px), -80px);
  transition-delay: 0.9s;
}
.users-item:nth-child(4):before {
  background: url("/application/images/users-item-it.png") no-repeat center/contain;
}
.users-item:nth-child(5) {
  transform: translate(calc(clamp(300px, 133.703px + 13.87vw, 400px) * -1), -70px);
  transition-delay: 0.6s;
}
.users-item:nth-child(5):before {
  background: url("/application/images/users-item-finances.png") no-repeat center/contain;
}
.users-item:before {
  position: absolute;
  content: "";
  top: -38px;
  left: 12px;
  width: 122px;
  height: 76px;
  z-index: 1;
}
@media (max-width: 991px) {
  .users-item:before {
    top: -68px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .users-item {
    left: unset;
    transform: none !important;
  }
}
.users-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 302px;
  background: url("/application/images/users-projects-logo.png") no-repeat center/cover;
  aspect-ratio: 1/1.13;
  transform: translate(-50%, -70%);
}

.demo-bg {
  background: url("/application/images/demo-bg.png") no-repeat center/cover, linear-gradient(114.14deg, #29659B 5.92%, #84D084 93.95%);
}
.demo-bg .btn-wrap {
  margin-top: clamp(16px, -38.857px + 7.143vw, 64px);
  text-align: left;
}
@media (max-width: 991px) {
  .demo-bg .btn-wrap {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .demo-bg h2, .demo-bg p {
    text-align: center;
  }
}
.demo-img {
  width: 100%;
  max-width: 681px;
  background: url("/application/images/demo-img.png") no-repeat center/cover;
  aspect-ratio: 2/1;
}

.clients-slider-item {
  position: relative;
  margin: 0 12px 48px 12px;
  padding: 20px 32px 32px 32px;
  width: 420px;
  border-radius: 20px;
  transition: var(--standard-transition);
  pointer-events: none;
  /*@media (hover: hover) {
           &:hover {
               cursor: pointer;
  	box-shadow: var(--hover-shadow);
  }
       }*/
}
@media screen and (max-width: 991px) {
  .clients-slider-item {
    padding: 16px 24px 24px 24px;
  }
}
.clients-slider-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.clients-slider-item p {
  line-height: 140%;
}
.clients-slider-item.citated {
  justify-content: space-between !important;
  background: var(--green-sea) url(/application/images/clients-slider-quotes-green.svg) no-repeat top right/auto;
}
.clients-slider-item.citated p:last-of-type {
  padding: 16px;
  width: 100%;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
}
.clients-slider-item.greyed {
  justify-content: start !important;
  background: #F0F0F0;
}
.clients-slider-item.greyed div {
  margin-top: 20px;
}
.clients-slider-item.greyed p {
  font-size: clamp(16px, 13.714px + 0.298vw, 18px);
}
.clients-slider-item.greyed p:last-of-type {
  padding-bottom: 0;
}
.clients-slider-item.greyed b {
  color: var(--green-main);
}
.clients-slider-item.lightblued {
  justify-content: space-between !important;
  background: #EFF5FB;
}
.clients-slider-item.lightblued div {
  margin-top: 20px;
}
.clients-slider-item.lightblued p {
  font-size: clamp(16px, 13.714px + 0.298vw, 18px);
}
.clients-slider-item.lightblued img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.clients-slider.kedo-talks-slider .kedo-talks-slider-item {
  position: relative;
  border-radius: 20px;
  background: url("/application/images/kedo-talks-item-bg.png") no-repeat center/cover;
  aspect-ratio: 1.88/1;
  transition: var(--standard-transition);
}
.clients-slider.kedo-talks-slider .kedo-talks-slider-item-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.clients-slider.kedo-talks-slider .kedo-talks-slider-item-content:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  background: url("/application/images/play-button_green.svg") no-repeat center/cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.clients-slider.kedo-talks-slider .kedo-talks-slider-item-content p {
  position: absolute;
  left: 50%;
  bottom: 32px;
  padding-bottom: 0;
  text-align: center;
  color: var(--white);
  font-size: clamp(14px, 9.429px + 0.595vw, 18px);
  transform: translateX(-50%);
}
@media (hover: hover) {
  .clients-slider.kedo-talks-slider .kedo-talks-slider-item:hover {
    cursor: pointer;
    box-shadow: var(--hover-shadow);
  }
}

.price-bg {
  background: url("/application/images/price-bg.png") no-repeat center/cover, linear-gradient(96.87deg, #6BC76B -5.67%, #204F79 82.9%);
}
.price-wrap {
  display: grid;
  padding: clamp(16px, 2.083vw, 30px);
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-radius: 30px;
  background: linear-gradient(rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.0351171) 50%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 1px 6px 0px rgba(255, 255, 255, 0.2) inset;
}
@media (max-width: 767px) {
  .price-wrap {
    grid-template-columns: 260px;
    justify-content: center;
  }
}
.price-item {
  display: grid !important;
  gap: clamp(16px, 11.429px + 0.595vw, 20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 1px 6px 0px rgba(255, 255, 255, 0.2) inset;
}
@media (max-width: 767px) {
  .price-item {
    gap: 0;
  }
}
.price-item p {
  display: block;
  padding: var(--24-16);
  text-align: center;
  font-size: clamp(12px, 7.429px + 0.595vw, 16px);
  color: var(--white);
  font-weight: 300;
}
.price-item p.d-block.d-md-none {
  text-align: left !important;
}
.price-item span {
  display: none;
}
@media (max-width: 767px) {
  .price-item span {
    display: block;
  }
}
.price-item:nth-child(2) {
  background: var(--green-main);
}
.price-item:nth-child(3) {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
.price-item:nth-child(4) {
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
.price-item-users {
  font-size: var(--24-16);
}

.implementation-bg {
  background: linear-gradient(180deg, #E8F5FF 4.62%, #FFFFFF 100%);
}
.implementation-bg .implementation-schedule {
  display: block;
  width: 100%;
  max-width: 100%;
}
.implementation-wrap {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(4, 252px);
  gap: 24px;
  justify-content: center;
}
@media (min-width: 641px) and (max-width: 1199px) {
  .implementation-wrap {
    grid-template-columns: repeat(2, 252px);
  }
}
@media (max-width: 640px) {
  .implementation-wrap {
    grid-template-columns: 252px;
  }
}
.implementation-item {
  padding: 16px;
  background: var(--white);
  border-radius: 20px;
}
.implementation-item ul li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  list-style-type: none;
}
.implementation-item ul li:before {
  position: absolute;
  left: -16px;
  content: "";
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.implementation-item:nth-child(1) h5 {
  color: var(--blue);
}
.implementation-item:nth-child(1) ul li:before {
  background: var(--blue);
}
.implementation-item:nth-child(2) h5 {
  color: var(--green-medium);
}
.implementation-item:nth-child(2) ul li:before {
  background: var(--green-medium);
}
.implementation-item:nth-child(3) h5 {
  color: var(--blue-dark);
}
.implementation-item:nth-child(3) ul li:before {
  background: var(--blue-dark);
}
.implementation-item:nth-child(4) h5 {
  color: var(--green-main);
}
.implementation-item:nth-child(4) ul li:before {
  background: var(--green-main);
}

.company-pulse-bg {
  position: relative;
}
.company-pulse-bg:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 38%;
  background: url("/application/images/company-pulse-decal.png") no-repeat center/cover;
  aspect-ratio: 1/2.2;
}
@media (max-width: 991px) {
  .company-pulse-bg:before {
    display: none;
  }
}
.company-pulse-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: clamp(24px, 18.667px + 1.481vw, 40px);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .company-pulse-wrap {
    grid-template-columns: repeat(2, 360px);
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .company-pulse-wrap {
    grid-template-columns: repeat(1, minmax(300px, 440px));
    justify-content: center;
  }
}
.company-pulse-item:nth-of-type(1) {
  grid-area: 1/1/2/3;
}
.company-pulse-item:nth-of-type(2) {
  grid-area: 1/3/2/4;
}
.company-pulse-item:nth-of-type(3) {
  grid-area: 1/4/2/5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .company-pulse-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .company-pulse-item:nth-of-type(2) {
    grid-area: 2/1/3/2;
  }
  .company-pulse-item:nth-of-type(3) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 767px) {
  .company-pulse-item:nth-of-type(1) {
    grid-area: auto;
  }
  .company-pulse-item:nth-of-type(2) {
    grid-area: auto;
  }
  .company-pulse-item:nth-of-type(3) {
    grid-area: auto;
  }
}
.company-pulse-item .no-pagination > div {
  margin-bottom: 24px;
}
.company-pulse-item .no-pagination > div:last-of-type {
  margin-bottom: 0;
}
.company-pulse-item .no-pagination p:not(.card__date) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 150%;
  overflow: hidden;
}
.company-pulse-item .d-grid.grid-items_2.gap-3 {
  height: 312px;
}
@media (max-width: 1199px) {
  .company-pulse-item .d-grid.grid-items_2.gap-3 {
    height: auto;
  }
}
.company-pulse-item .subscribe-me {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  height: 312px;
  transition: var(--standard-transition);
  background: linear-gradient(157.57deg, #29659B 2.55%, #85D8FD 117.73%);
  border-radius: 16px;
}
@media (max-width: 1199px) {
  .company-pulse-item .subscribe-me {
    height: auto;
  }
}
.company-pulse-item .subscribe-me-content {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}
.company-pulse-item .subscribe-me-content p {
  padding-bottom: 0;
  text-align: center;
  font-size: clamp(12px, 11.333px + 0.185vw, 14px);
  color: var(--white);
  line-height: 140%;
}
.company-pulse-item .subscribe-me-content img {
  display: block;
  margin: 0 auto;
  width: 181px;
  height: 119px;
}
.company-pulse-item .subscribe-me-content .btn {
  padding: 10px 36px;
  font-weight: 400;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
@media (hover: hover) {
  .company-pulse-item .subscribe-me-content .btn:hover {
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
  }
}
@media (hover: hover) {
  .company-pulse-item .subscribe-me-content:hover {
    color: inherit;
    text-decoration: none;
  }
}
@media (hover: hover) {
  .company-pulse-item .subscribe-me:hover {
    cursor: pointer;
    box-shadow: var(--hover-shadow);
  }
}
.company-pulse-item h3 a {
  color: #000;
}
@media (hover: hover) {
  .company-pulse-item h3 a:hover {
    color: #000;
    text-decoration: none;
  }
}
@import 'app.variable.css';
.menu {
  display: flex;
  gap: clamp(16px, 2.2vw, 40px);
  align-items: center;
}
.menu-item {
  color: #000;
  font-size: clamp(14px, 12.667px + 0.174vw, 16px);
  line-height: 1;
  transition: var(--standard-transition);
  cursor: pointer;
  white-space: nowrap;
}
@media (hover: hover) {
  .menu-item:hover {
    color: var(--green-main);
    text-decoration: none;
    text-shadow: 0 0 0 var(--green-main), 0 0 0 var(--green-main);
  }
}
.menu-item.active {
  color: var(--green-main);
  text-shadow: 0 0 0 var(--green-main), 0 0 0 var(--green-main);
}
@import 'app.variable.css';
.modal-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content-wrapper {
  border-radius: 16px;
  margin: 0;
  transform: none;
  position: static;
}
.modal-title {
  display: none;
}

.cookie-bg {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  width: 100%;
  font-size: 12px;
  z-index: 999;
  line-height: 120%;
}

.modal-odd {
  background-image: url(/application/images/odd-modal-bg.webp);
  background-repeat: no-repeat;
  background-color: #fff;
  padding: 70px 55px;
  color: #000;
  line-height: 120%;
  background-position: 100% 100%;
  overflow: clip;
  font-size: 14px;
  border-radius: 30px;
  min-width: 1000px;
}
@media (max-width: 991px) {
  .modal-odd {
    display: none;
  }
}
.modal-odd .cross {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.modal-odd .cross:before {
  content: "";
  width: 2px;
  height: 100%;
  transform: rotate(45deg);
  background-color: #000;
  top: 0;
  left: 50%;
  position: absolute;
}
.modal-odd .cross:after {
  content: "";
  width: 2px;
  height: 100%;
  transform: rotate(-45deg);
  background-color: #000;
  top: 0;
  left: 50%;
  position: absolute;
}
.modal-odd__date {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 30px;
  line-height: 120%;
  font-weight: 700;
}
.modal-odd__preheader {
  font-size: 20px;
  margin-top: 8px;
  line-height: 120%;
}
.modal-odd__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 1.7rem + 1.5vw, 3.5rem);
  margin: 44px 0 16px 0;
  line-height: 120%;
  text-transform: uppercase;
  font-weight: 700;
}
.modal-odd__title span {
  color: var(--orange);
}
.modal-odd__text {
  max-width: 405px;
  margin-bottom: 40px;
  line-height: 140%;
}
.modal-odd__btn {
  color: #fff;
  background-color: var(--orange);
  transition: 0.4s ease-in-out;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  padding: 12px 37px;
  border-radius: 12px;
}
.modal-odd__btn:hover {
  background-color: var(--orange-hover);
  color: #fff;
  text-decoration: none;
}
@import 'app.variable.css';
#presscenter-block {
  padding: clamp(64px, 45.714px + 2.381vw, 80px) 0;
}

.news-bg {
  display: grid;
  margin-top: 32px;
  place-items: center;
  background: url("/application/images/news-bg.png") no-repeat center/cover;
  border-radius: 24px;
}
.news-bg h1 {
  padding-top: clamp(80px, -32px + 14.583vw, 178px);
  padding-bottom: clamp(32px, -20.571px + 6.845vw, 78px);
  font-size: clamp(32px, -11.429px + 5.655vw, 70px);
  text-align: center;
  color: var(--green-main);
  font-weight: 700;
}

.analytics-block .tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 0.333rem + 0.741vw, 1rem);
  font-size: clamp(0.75rem, 0.708rem + 0.185vw, 0.875rem);
}
@media (max-width: 991px) {
  .analytics-block .tag-filter {
    display: none;
  }
}
.analytics-block .tag-filter__item {
  padding: clamp(0.5rem, 0.417rem + 0.37vw, 0.75rem) clamp(0.75rem, 0.667rem + 0.37vw, 1rem);
  color: #000;
  font-size: 14px;
  background-color: #F4F4F4;
  text-wrap: nowrap;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.analytics-block .tag-filter__item.selected, .analytics-block .tag-filter__item:hover {
  color: #fff;
  background-color: var(--green-main);
}
.analytics-block-sticky.fixed-header {
  position: sticky;
}
.analytics-block-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(114.5deg, #29659B, #84D084);
  border-radius: 20px;
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .analytics-block-custom:hover {
    cursor: pointer;
    box-shadow: var(--hover-shadow);
    text-decoration: none;
  }
}
.analytics-block-custom p {
  padding: 0;
  text-align: center;
  color: var(--white);
}
.analytics-block-custom img {
  display: block;
  margin: 0 auto;
  width: 154px;
  height: 158px;
}
.analytics-block-services {
  display: grid;
  padding: 16px;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  background-color: #F4F4F4;
  border-radius: clamp(1rem, 0.917rem + 0.37vw, 1.25rem);
}
.analytics-block-services-item {
  padding: clamp(1rem, 0.667rem + 1.481vw, 2rem);
  background-color: #fff;
  border-radius: 10px;
}
.analytics-block-services-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  .analytics-block-services-item-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .analytics-block-services-item-wrap img {
    max-width: 100% !important;
  }
}
.analytics-block-services-item p {
  margin-top: 16px;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .analytics-block-services-item p {
    font-size: 14px;
    line-height: 20px;
  }
}
.analytics-block-services.mobile {
  display: grid;
  padding: clamp(1rem, 0.667rem + 1.481vw, 2rem);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #333333;
}
.analytics-block-services.mobile h4 {
  padding: 0;
  margin: 0;
  grid-area: 1/1/2/3;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
.analytics-block-services.mobile .analytics-block-services-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.analytics-block-services.mobile .analytics-block-services-item:nth-of-type(1) {
  grid-area: 2/1/3/2;
  background: #3E3E3E;
}
.analytics-block-services.mobile .analytics-block-services-item:nth-of-type(2) {
  grid-area: 2/2/3/3;
  background: #3E3E3E;
}
.analytics-block-sorting {
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: 1fr 160px;
  gap: 16px;
}
@media (max-width: 768px) {
  .analytics-block-sorting {
    display: flex;
    margin: 0 auto 16px auto;
    flex-direction: column-reverse;
    gap: 16px;
    max-width: 480px;
  }
}
.analytics-block-news-wrap {
  display: grid;
  grid-template-columns: minmax(auto, 912px) minmax(auto, 436px);
  gap: clamp(1rem, 0.667rem + 1.481vw, 2rem);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .analytics-block-news-wrap {
    grid-template-columns: minmax(auto, 912px) minmax(auto, 320px);
  }
}
@media (max-width: 991px) {
  .analytics-block-news-wrap {
    grid-template-columns: repeat(1, minmax(auto, 480px));
    justify-content: center;
  }
}
.analytics-block-news-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
.analytics-block-news-list a {
  color: inherit;
}
.analytics-block-news-item {
  display: block;
  padding: clamp(16px, -6.857px + 2.976vw, 36px);
  background: var(--blue-light);
  border-radius: var(--radius-16);
  transition: var(--standard-transition);
}
@media (hover: hover) {
  .analytics-block-news-item:hover {
    cursor: pointer;
    box-shadow: var(--hover-shadow);
    text-decoration: none;
  }
}
.analytics-block-news-item .card__title {
  padding-bottom: 24px;
}
.analytics-block-news-item .card__preview p {
  display: -webkit-box;
  padding: 0;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.analytics-block-news-item .card__blog-type {
  padding: 4px 10px;
  background: var(--white);
  text-align: center;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--green-main);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .analytics-block-news-item .card__blog-type {
    max-width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
.analytics-block-news-item .card__date {
  font-size: clamp(12px, 9.714px + 0.298vw, 14px);
  color: #606060;
}

.blog-post-header {
  padding-top: clamp(1px, -54.857px + 7.143vw, 48px);
}
.blog-post-header .card__blog-type,
.blog-post-header .news__date {
  font-size: 12px;
  line-height: 1;
}
.blog-post-header .card__blog-type {
  padding: 4px 10px;
  color: var(--green-main);
  border: 1px solid var(--green-main);
  border-radius: 60px;
}
.blog-post-header .news__date {
  text-align: right;
  color: #798288;
}
.blog-post-header.viewPlace {
  padding-left: 0;
  padding-right: 0;
}
.blog-post-news-data {
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-post-news-head {
  display: grid;
  padding: clamp(16px, -20.571px + 4.762vw, 48px);
  place-items: center;
  background: url("/application/images/news-header-bg.webp") no-repeat center/cover;
  border-radius: 20px;
}
.blog-post-news-head h1 {
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  text-align: center;
  color: var(--white);
}
.blog-post-news-head.analytics {
  background: url("/application/images/analytics-header-bg.webp") no-repeat center/cover;
}
.blog-post-container {
  padding-top: 128px;
}
@media (max-width: 767px) {
  .blog-post-container {
    padding-top: 160px;
  }
}
.blog-post-container h2 {
  padding: clamp(20px, 16px + 1.111vw, 32px) 0;
  color: var(--green-main);
}
.blog-post-container h3 {
  padding-top: 8px;
}
.blog-post-container ul, .blog-post-container ol {
  padding: 8px 0 16px 24px;
}
.blog-post-container ul li, .blog-post-container ol li {
  position: relative;
  list-style-type: none;
}
.blog-post-container ul li:last-child, .blog-post-container ol li:last-child {
  padding-bottom: 0;
}
.blog-post-container ul li:before {
  position: absolute;
  left: -16px;
  content: "";
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--green-main);
  border-radius: 50%;
}
.blog-post-container ol {
  counter-reset: li;
}
.blog-post-container ol > li {
  counter-increment: li;
}
.blog-post-container ol > li:before {
  position: absolute;
  content: counter(li);
  color: var(--green-main);
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: right;
  direction: rtl;
}
.guide-wrap {
  position: relative;
}
@media (max-width: 639px) {
  .guide-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 320px;
  }
}
.guide-item {
  position: relative;
  padding: clamp(18px, 11.143px + 0.893vw, 24px);
  justify-content: space-between !important;
  height: 550px !important;
  background: linear-gradient(114.5deg, #29659B 2.1%, #84D084 93.93%);
  border-radius: 20px;
  overflow: hidden;
}
.guide-item.guide-1:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1/1.16;
  background: url("/application/images/guide-item-bg-1.png") no-repeat center/cover;
}
.guide-item.guide-2:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1/1.33;
  background: url("/application/images/guide-item-bg-2.png") no-repeat center/cover;
}
.guide-item h3 {
  padding: 0;
  width: 100%;
  font-size: clamp(18px, 11.143px + 0.893vw, 24px);
  color: var(--white);
  text-align: center;
}
.guide-item-tag {
  padding-bottom: 24px;
  width: 100%;
  text-align: center;
}
.guide-item-tag span {
  display: inline-block;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 300;
  border: 1px solid var(--white);
  border-radius: 24px;
}
.guide-item .w-100,
.guide-item .btn-wrap {
  position: relative;
  z-index: 1;
}
.guide-item .btn-wrap {
  width: 100%;
}
.guide-item .btn-wrap .orange-bg {
  display: block;
  box-shadow: 0px 16px 35px 0px rgba(1, 12, 28, 0.2);
}

.notice-block {
  padding: var(--32-16);
  background: var(--green-sea-light);
  border-radius: 20px;
}
.notice-block P:last-child {
  padding-bottom: 0;
}
.codeCountry {
  font-size: 14px;
  max-width: 130px;
}

.phone-country-selector {
  position: relative;
  width: 100%;
  max-width: 56px;
  max-height: 56px;
  border-radius: 3px 0 0 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.phone-country-selector .selector-arrow {
  position: absolute;
  background: transparent url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1.757%204.586L.343%206l4.242%204.243L6%2011.657l1.414-1.414L11.656%206l-1.414-1.414L6%208.828%201.757%204.586z%22%20fill%3D%22%23828B95%22/%3E%0A%3C/svg%3E%0A) no-repeat;
  width: 12px;
  aspect-ratio: 1;
  top: calc(50% - 6px);
  right: 8px;
}
.phone-country-selector .selected-country {
  position: relative;
  width: 56px;
  background-color: rgba(255, 255, 255, 0.30196);
  padding: 18px 4px;
  min-height: 100%;
  transition: 0.4s ease-in-out;
  border-radius: 3px 0 0 3px;
}
.phone-country-selector .selected-country:before {
  content: "";
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 12px);
  height: 24px;
  width: 24px;
  background-size: contain;
  background-position: 50%;
}
.phone-country-selector .selected-country.ru:before {
  background-image: url(/application/images/flag-russia.png);
}
.phone-country-selector .selected-country.az:before {
  background-image: url(/application/images/flag-azer.png);
}
.phone-country-selector .selected-country.am:before {
  background-image: url(/application/images/flag-armenia.png);
}
.phone-country-selector .selected-country.by:before {
  background-image: url(/application/images/flag-belarus.png);
}
.phone-country-selector .selected-country.kz:before {
  background-image: url(/application/images/flag-kazakhstan.png);
}
.phone-country-selector .selected-country.kg:before {
  background-image: url(/application/images/flag-kyrgyzstan.png);
}
.phone-country-selector .selected-country.md:before {
  background-image: url(/application/images/flag-moldova.png);
}
.phone-country-selector .selected-country.tj:before {
  background-image: url(/application/images/flag-tadzhikistan.png);
}
.phone-country-selector .selected-country.tm:before {
  background-image: url(/application/images/flag-turkmenistan.png);
}
.phone-country-selector .selected-country.uz:before {
  background-image: url(/application/images/flag-uzbekistan.png);
}
.phone-country-selector .selected-country.other:before {
  background-image: url(/application/images/flag-earth.png);
}
.phone-country-selector__container {
  position: relative;
  display: none;
  width: 300px;
  max-width: 90vw;
  background-color: rgba(255, 255, 255, 0.30196);
  padding: 8px;
  border-radius: 3px;
  min-height: 100%;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.4s ease-in-out;
  filter: drop-shadow(0px 2px 10px rgba(8, 31, 62, 0.25));
  margin-left: -1px;
}
.phone-country-selector .country-flag {
  position: relative;
  font-size: 14px;
  line-height: 140%;
  padding: 8px 0 8px 40px;
  cursor: default;
}
.phone-country-selector .country-flag:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 24px;
  width: 24px;
  background-size: contain;
  background-position: 50%;
}
.phone-country-selector .country-flag.active {
  display: block;
}
.phone-country-selector .country-flag.ru:before {
  background-image: url(/application/images/flag-russia.png);
}
.phone-country-selector .country-flag.az:before {
  background-image: url(/application/images/flag-azer.png);
}
.phone-country-selector .country-flag.am:before {
  background-image: url(/application/images/flag-armenia.png);
}
.phone-country-selector .country-flag.by:before {
  background-image: url(/application/images/flag-belarus.png);
}
.phone-country-selector .country-flag.kz:before {
  background-image: url(/application/images/flag-kazakhstan.png);
}
.phone-country-selector .country-flag.kg:before {
  background-image: url(/application/images/flag-kyrgyzstan.png);
}
.phone-country-selector .country-flag.md:before {
  background-image: url(/application/images/flag-moldova.png);
}
.phone-country-selector .country-flag.tj:before {
  background-image: url(/application/images/flag-tadzhikistan.png);
}
.phone-country-selector .country-flag.tm:before {
  background-image: url(/application/images/flag-turkmenistan.png);
}
.phone-country-selector .country-flag.uz:before {
  background-image: url(/application/images/flag-uzbekistan.png);
}
.phone-country-selector .country-flag.other:before {
  background-image: url(/application/images/flag-earth.png);
}
.phone-country-selector .country-flag:hover {
  background-color: #F4F4F4;
}
.phone-country-selector.active {
  overflow: visible;
}
.phone-country-selector.active .selected-country {
  background-color: rgba(255, 255, 255, 0.8);
}
.phone-country-selector.active .phone-country-selector__container {
  display: block;
  background-color: #fff;
  z-index: 9;
  color: #000;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
  overflow: auto;
  max-height: 200px;
  scrollbar-width: thin;
}
.phone-country-selector.active .selector-arrow {
  top: calc(50% - 3px);
  transform: rotate(180deg);
}
.phone-mask {
  cursor: text;
  display: block;
  position: relative;
  width: 100%;
  max-height: 56px;
}
.phone-number {
  position: relative;
  z-index: 1;
}
.phone-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid transparent;
}
.phone-group:has(.error-field) {
  border-color: #a94442;
}
.phone-group:has(.error-field) input.error-field {
  border-color: transparent;
}
@import 'app.variable.css';
.form_modal {
  background-color: #fff;
  z-index: 11;
  text-align: center;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
  padding: 24px 32px;
}
@media (max-width: 767px) {
  .form_modal {
    padding: 16px;
  }
}
.form_modal .cross {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  aspect-ratio: 1/1;
  font-size: 2rem;
  cursor: pointer;
  color: var(--green-main);
  transition: var(--standard-transition);
  font-style: normal;
}
.form_modal_500 {
  width: 500px;
  max-width: 100%;
}

.requestForm {
  margin: 0 auto;
  max-width: 352px;
  padding-bottom: 24px;
}
.requestForm input {
  margin: 0 auto;
  max-heigth: 42px;
}
.requestForm input[type=checkbox] + label {
  text-align: left;
  padding-left: 30px;
  line-height: 16px;
  font-size: 14px;
}
.requestForm .form-group {
  padding-bottom: 16px;
}
.requestForm .btn_link {
  min-width: auto;
  max-width: 95px;
  padding: 0 10px;
  margin-right: 15px;
}
.requestForm .btn_second {
  min-width: auto;
  padding: 0 19px;
}
.select {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.select:after {
  position: absolute;
  right: 11%;
  top: 50%;
  content: " ";
  width: 16px;
  height: 16px;
  background: url("/application/images/select-arrow.svg") no-repeat center/cover;
  transform: translateY(-50%);
}
.select select {
  position: relative;
  padding: 12px 38px 12px 16px;
  position: relative;
  padding-right: 32px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 40px;
}
.select select:focus {
  outline: none;
}
@media (hover: hover) {
  .select select:hover {
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .select select {
    width: 100%;
  }
}
@import 'app.variable.css';
.slick-initialized.slick-slider .slick-arrow {
  width: 32px;
  height: 32px;
  background: #F4F4F4;
  opacity: 1 !important;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .slick-initialized.slick-slider .slick-arrow:not(.slick-disabled):hover {
    background: var(--green-main);
  }
  .slick-initialized.slick-slider .slick-arrow:not(.slick-disabled):hover:after, .slick-initialized.slick-slider .slick-arrow:not(.slick-disabled):hover:before {
    background: #ffffff;
  }
}
.slick-initialized.slick-slider .slick-arrow:after, .slick-initialized.slick-slider .slick-arrow:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 3px;
  background: var(--green-main);
  border-radius: 3px;
}
.slick-initialized.slick-slider .slick-arrow:after {
  top: 18px;
  left: 8px;
  transform: rotate(45deg);
}
.slick-initialized.slick-slider .slick-arrow:before {
  top: 11px;
  left: 8px;
  transform: rotate(135deg);
}
.slick-initialized.slick-slider .slick-arrow.slick-disabled:after, .slick-initialized.slick-slider .slick-arrow.slick-disabled:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 3px;
  background: #E0E0E0;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 50px;
  }
}
.slick-initialized.slick-slider.slick-dotted .slick-dots {
  display: block;
  position: absolute;
  bottom: -36px;
  left: 50%;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  transform: translateX(-50%);
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: #f4f4f4;
  border-radius: 50%;
  transition: var(--standard-transition);
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li.slick-active {
  background: var(--green-main);
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li button:hover, .slick-initialized.slick-slider.slick-dotted .slick-dots li button:focus {
  outline: none;
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li button:hover:before,
.slick-initialized.slick-slider.slick-dotted .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #f4f4f4;
  text-align: center;
}
.slick-initialized.slick-slider.slick-dotted .slick-dots li.slick-active button:before {
  background: var(--green-main);
}

.clients-slider .slick-list {
  padding: 0;
  max-width: 100%;
  overflow: unset;
}
.clients-slider .slick-track .slick-slide {
  display: flex;
  margin: 0 12px;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 991px) {
  .clients-slider .slick-track .slick-slide {
    margin: 0 6px;
  }
}
.clients-slider .slick-track .slick-slide img {
  margin: 0 auto;
  width: 100%;
}
.clients-slider .slick-arrow {
  top: auto;
  bottom: -72px;
}
.clients-slider .slick-next {
  right: calc(50% - 40px);
}
.clients-slider .slick-prev {
  left: calc(50% - 40px);
}

.tools-slider,
.tools-slider-mobile {
  position: relative;
}
.tools-slider.slick-slider .slick-track .slick-slide,
.tools-slider-mobile.slick-slider .slick-track .slick-slide {
  display: block;
  margin: 0 8px;
}
.tools-slider.slick-slider .slick-list,
.tools-slider-mobile.slick-slider .slick-list {
  padding: 0 !important;
  max-width: 100% !important;
}
.tools-slider.slick-slider .slick-arrow,
.tools-slider-mobile.slick-slider .slick-arrow {
  display: block;
  top: calc(50% - 16px);
}
.tools-slider.slick-slider .slick-arrow.slick-next,
.tools-slider-mobile.slick-slider .slick-arrow.slick-next {
  right: 0;
}
.tools-slider.slick-slider .slick-arrow.slick-prev,
.tools-slider-mobile.slick-slider .slick-arrow.slick-prev {
  left: 0;
}

.slick {
  overflow: hidden;
  max-height: 350px;
  position: relative;
  width: 100%;
  margin-top: 16px;
}
.slick-arrow {
  position: absolute;
  padding: 10px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
  z-index: 10;
  transition: var(--standard-transition);
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
  transform: rotate(180deg);
}

.slick-track {
  display: flex;
  margin: auto;
}

.slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

.slick-list {
  width: 100%;
  max-width: 1380px;
  padding: 0;
  padding-top: 8px;
  display: block;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.slider-img {
  position: relative;
  margin-bottom: 32px;
  padding: 0 60px;
  box-sizing: border-box;
}
.slider-img.slick-slider .slick-track .slick-slide {
  padding: 0;
  margin: 0;
  flex-direction: column;
}
.slider-img.slick-slider img {
  padding: 0 1px;
}
@media screen and (max-width: 640px) {
  .slider-img {
    padding: 0 0;
  }
}
.slider-img .slick-list {
  padding: 0;
}
.slider-img .slick-arrow {
  top: calc(50% - 16px);
}
.slider-img .slick-prev {
  left: 0;
}
.slider-img .slick-next {
  right: 0;
}
@import 'app.variable.css';
.clients-ticker {
  position: relative;
}
.clients-ticker .ticker {
  display: flex;
  overflow: hidden;
}
.clients-ticker .ticker_list {
  display: flex;
}
.clients-ticker .ticker_list.ticker-left {
  animation: ticker-left 30s infinite linear;
}
.clients-ticker .ticker_list img {
  display: block;
  margin: 0 32px;
  padding: 12px 24px;
}
.case-header {
  padding: clamp(16px, 4.444vw, 64px);
  border-radius: 20px;
}
.case-header h1 {
  text-align: center;
}
.case-header.case-kuzbassrazrezugol {
  background: url("/application/images/cases/bannerKuzbassCase.png") no-repeat center/cover;
}
.case-header.case-kuzbassrazrezugol h1, .case-header.case-kuzbassrazrezugol h4, .case-header.case-kuzbassrazrezugol p {
  color: var(--white);
}

.case-totals {
  display: flex;
  margin: 0 auto 48px auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.case-totals-item {
  width: 100%;
  max-width: 230px;
  text-align: center;
}
.case-totals-item h4 {
  padding: 0;
  font-size: clamp(26px, 2.25vw, 32px);
}
.case-totals-item p {
  padding: 0;
  font-size: 14px;
  line-height: 140%;
}
.case-totals-prev {
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}

.client-card_fixed.case-menu {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--hover-shadow);
  border-radius: 16px;
}
.client-card_fixed.case-menu .client-case-logo {
  display: block;
  margin-bottom: 24px;
}
.client-card_fixed.case-menu .menu-wrap.menu-scrolled p {
  position: relative;
  margin-bottom: 14px;
}
.client-card_fixed.case-menu .menu-wrap.menu-scrolled p:last-child {
  margin-bottom: 0;
}
.client-card_fixed.case-menu .menu-wrap.menu-scrolled p a {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  transition: var(--standard-transition);
}
.client-card_fixed.case-menu .menu-wrap.menu-scrolled p a.active {
  color: var(--green-main);
  text-shadow: 0 0 0 var(--green-main), 0 0 0 var(--green-main);
}
@media (hover: hover) {
  .client-card_fixed.case-menu .menu-wrap.menu-scrolled p:hover a {
    color: var(--green-main);
    text-shadow: 0 0 0 var(--green-main), 0 0 0 var(--green-main);
  }
}

.quote-block {
  display: grid;
  margin: clamp(24px, 14.857px + 1.19vw, 32px) 0 clamp(36px, 22.286px + 1.786vw, 48px) 0;
  padding: var(--24-16);
  grid-template-columns: 140px 1fr;
  gap: var(--24-16);
  border: 5px solid rgba(150, 212, 71, 0.3);
  border-radius: 20px;
}
@media (max-width: 640px) {
  .quote-block {
    grid-template-columns: repeat(1, minmax(auto, 640px));
  }
}
.quote-person img {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  max-width: 124px;
  border-radius: 20px;
}
.quote-person p {
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}
.quote-person p b {
  display: block;
  padding-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .quote-person {
    grid-area: 2/1/3/2;
  }
}
.quote-text {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.083vw, 30px) 0;
}
.quote-text::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 123px;
  height: 93px;
  background: url("/application/images/quotes.svg") no-repeat center/cover;
}
.quote-text-content p {
  font-style: italic;
  line-height: 150%;
}
.quote-text-content p:last-child {
  padding-bottom: 0;
}
@media (max-width: 640px) {
  .quote-text {
    grid-area: 1/1/2/2;
  }
}
@import 'app.variable.css';
.switcher-content {
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}
.switcher-content-left, .switcher-content-right {
  display: grid;
  place-items: center;
}
.switcher-content-left {
  padding: clamp(16px, -11.429px + 3.571vw, 40px);
}
.switcher-content-left p:last-of-type {
  padding-bottom: 0;
}
.switcher-content-right {
  padding: 32px 8px;
}
.switcher-content-right video {
  width: 100%;
  max-width: 862px;
}
@media (max-height: 800px) {
  .switcher-content-right video {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .switcher-content-right {
    padding: 16px;
  }
}
.switcher-content.active {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 24px;
}
@media (max-width: 767px) {
  .switcher-content {
    display: block !important;
  }
}
.switcher-column {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 40px);
}
.switcher-column-top {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  max-width: 768px;
}
@media (max-width: 767px) {
  .switcher-column-top {
    grid-template-columns: 1fr;
  }
}
.switcher-column-top p {
  padding-top: 8px;
  padding-bottom: 0;
  font-size: 14px;
  text-align: center;
  transition: var(--standard-transition);
}
.switcher-column-top .switcher-item {
  transition: var(--standard-transition);
  cursor: pointer;
}
.switcher-column-top .switcher-item-icon {
  position: relative;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 9px;
  transition: var(--standard-transition);
}
.switcher-column-top .switcher-item-icon svg {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  fill: var(--white);
  stroke: var(--green-main);
  transition: var(--standard-transition);
  transform: translate(-50%, -50%);
}
@media (hover: hover) {
  .switcher-column-top .switcher-item-icon:hover {
    background: var(--green-main);
  }
  .switcher-column-top .switcher-item-icon:hover svg {
    fill: var(--green-main);
    stroke: var(--white);
  }
}
.switcher-column-top .switcher-item.slick-active .switcher-item-icon {
  background: var(--green-main);
  transform: scale(1.1);
}
.switcher-column-top .switcher-item.slick-active .switcher-item-icon svg {
  fill: var(--green-main);
  stroke: var(--white);
}
.switcher-column-top .switcher-item.slick-active p {
  transform: scale(1.2);
  font-weight: 700;
}
.switcher-column-top .switcher-item__content {
  background-color: #fff;
  padding: 0 16px;
  display: none;
  transition: var(--standard-transition);
  color: #000;
  font-weight: 400;
  border-radius: 0px 0px 16px 16px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .switcher-column-top .switcher-item__content {
    display: block;
    margin-top: 16px;
    height: 100%;
    border-radius: 20px;
  }
}
.switcher-column-top .switcher-item.active .switcher-item-icon {
  background: var(--green-main);
  transform: scale(1.1);
}
.switcher-column-top .switcher-item.active .switcher-item-icon svg {
  fill: var(--green-main);
  stroke: var(--white);
}
@media (max-width: 767px) {
  .switcher-column-top .switcher-item.active .switcher-item__content {
    padding: 12px;
  }
}
.switcher-column-top .switcher-item.active p {
  transform: scale(1.2);
  font-weight: 700;
}
.switcher-column-top .switcher-content {
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}
.switcher-column-top .switcher-content.active {
  display: flex;
}
.switcher-column-bottom {
  width: 100%;
}
.switcher-column-bottom .slick-arrow {
  display: none !important;
}
:root {
  --white: #fff;
  --black: #000;
  --blue: #29659B;
  --blue-light: #E8F5FF;
  --blue-dark: #5697D2;
  --orange-light: #FFD299;
  --green-main: #70AC30;
  --green-light: #96D447;
  --green-sea: #F0F9F0;
  --green-sea-light: #F3FFF3;
  --green-medium: #84D084;
  --grey: #606060;
  --grey-dark: #8B9EB7;
  --grey-light: #F6F6F6;
  --orange-gradient: linear-gradient(90deg, #FF8F35 0%, #FF6E16 100%);
  --orange-light: #ff8f35;
  --orange-dark: #FF6E16;
  --orange: #FF8600;
  --orange-hover: #F86A3C;
  --blue-to-green: linear-gradient(60deg, #29659B, #84D084);
  --hover-shadow: 0 4px 20px 0 rgba(112,172,48,.1);
  --standard-transition: all .3s ease-in-out;
  --radius-16: 16px;
  --radius-20: 20px;
  --24-16: clamp(16px, calc(6.857px + 1.19vw), 24px);
  --32-16: clamp(16px, calc(-2.286px + 2.381vw), 32px);
  --40-20: clamp(20px, calc(-2.857px + 2.976vw), 40px);
  --slide-text: clamp(24px, calc(16.667px + 2.037vw), 46px);
}