.nolist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yellow-icon svg path {
    fill: var(--main-yellow-color);
    stroke: var(--main-yellow-color);
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none; 
            user-select: none;
}


.introtext-block h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}
.introtext-block {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.introtext-block .subtitle {
    line-height: 1.5;
}

.tabs-pills {
    background: var(--main-light-grey-blue);
}
.tabs-pills ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.tabs-pills .tab-pill a {
    font-weight: 300;
    transition: 0.2s background ease, 0.2s font-weight ease;
}
.tabs-pills .tab-pill.uk-active a,
.tabs-pills .tab-pill a:hover {
    background-color: #fff;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
}

.tabs__info .tabs-media {
    border-radius: 30px;
}
.tabs__info .tabs-content {
    border-radius: 30px;
    background-color: var(--main-light-grey-blue);
}

.columns-right-bg-image .col-1-2:first-child {
    padding-top: 120px;
    padding-bottom: 120px;
}
.columns-right-bg-image .col-1-2:last-child {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}
.columns-right-bg-image .col-1-2:last-child img {
    position: absolute;
    bottom: -100px;
}
@media screen and (max-width: 960px) {
    .columns-right-bg-image .col-1-2:first-child {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media screen and (max-width: 480px) {
    .columns-right-bg-image .col-1-2:last-child {
        min-height: 250px;
    }
    .columns-right-bg-image .col-1-2:last-child img {
        bottom: -80px;
    }
}
@media screen and (max-width: 360px) {
    .columns-right-bg-image .col-1-2:last-child {
        min-height: 150px;
    }
}


.uk-switcher > :not(.uk-active) {
  display: none;
}

.uk-animation-fade {
  -webkit-animation-name: uk-fade;
          animation-name: uk-fade;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.uk-animation-reverse {
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

/*
 * Fade
 */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.uk-slider-container {
    overflow: hidden;
}
