<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* variables */
/* catalog categories */
/* press review categories */
/* industries */
/* fonts */
/* mixins */
.columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1399px) {
  .columns {
    flex-direction: column;
  }
}

.column--left {
  width: 25%;
}
@media (max-width: 1599px) {
  .column--left {
    width: 22.5%;
  }
}
@media (max-width: 1399px) {
  .column--left {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--items {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .btn-group--items {
    display: flex;
    flex-direction: column-reverse;
  }
}

.btn-group--item .btn--icon &gt; svg {
  fill: #101010;
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--item:last-child {
    margin-bottom: 4px;
  }
}
@media (max-width: 1023px) {
  .btn-group--item:first-child {
    margin-bottom: 0px;
  }
  .btn-group--item:last-child {
    margin-bottom: 15px;
  }
}

.btn-group--itemFilter {
  display: none;
}
.btn-group--itemFilter .btn--icon &gt; svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1399px) {
  .btn-group--itemFilter {
    display: flex;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--itemFilter {
    width: auto;
    flex: 1;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--itemInfo {
    width: 250px;
  }
}

.column--right {
  width: 71.25%;
}
@media (max-width: 1599px) {
  .column--right {
    width: 73.75%;
  }
}
@media (max-width: 1399px) {
  .column--right {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .column--right {
    margin-bottom: 0px;
  }
}

.columns {
  margin-top: 50px;
  margin-bottom: 200px;
}

.page-intro {
  margin-bottom: 50px;
}

@media (min-width: 1400px) {
  .btn-group {
    display: none;
  }
}

.loader {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

/* filter panel - start */
.filter-panel {
  opacity: 0;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-panel.load {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 1400px) {
  .filter-panel {
    position: sticky;
    top: 25px;
  }
}
@media (max-width: 1399px) {
  .filter-panel {
    max-height: 0px;
    transition: all 500ms cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
    padding: 0 10px;
  }
  .filter-panel.show {
    max-height: 2500px;
    margin-bottom: 50px;
    transition: all 750ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.filter-panel--group {
  margin-bottom: 30px;
}
.filter-panel--group:last-child {
  margin-bottom: 0;
}
.heading--filterPanel {
  margin-bottom: 15px;
}

.filter-panel--groupButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1399px) {
  .filter-panel--groupButtons {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.filter--input {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #D4D4D4;
  font-size: 1.0625rem;
  line-height: 1.375;
  padding-bottom: 2px;
}
.filter--input::placeholder {
  color: #777777;
  opacity: 1;
}
.filter--input:-ms-input-placeholder {
  color: #777777;
}
.filter--input::-ms-input-placeholder {
  color: #777777;
}
.filter--input:focus {
  outline: none;
}

.filter--checkbox {
  display: none;
}
.filter--checkbox:checked + .filter-checkbox--label .filter-checkbox--labelSquare:after {
  opacity: 1;
}

.filter--select {
  width: 100%;
  font-size: 1.0625rem;
  background-color: #F3F3F3;
  border: 0px;
  padding: 8px 5px;
}
.filter--select:focus {
  outline: none;
}

.filter-panel--search {
  display: flex;
  align-items: center;
}
.filter-panel--search .filter--input {
  width: calc(100% - 30px);
}
.filter-panel--search &gt; svg {
  fill: #777777;
  margin-right: 15px;
}

.filter-checkbox--wrap {
  margin-bottom: 10px;
}

.filter-checkbox--label {
  display: flex;
  cursor: pointer;
}

.filter-checkbox--labelSquare {
  position: relative;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  margin-right: 15px;
  border-radius: 5px;
  background-color: #DEE1E5;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-checkbox--labelSquare:after {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  top: 1px;
  left: 2px;
  border: 3px solid #333333;
  border-top: none;
  border-right: none;
  background: rgba(0, 0, 0, 0);
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.filter-checkbox--labelText {
  width: calc(100% - 30px);
  font-size: 1.0625rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 1400px) {
  .btn-reset-filters {
    background-color: transparent;
    color: #333333;
    padding: 0;
  }
  .btn-reset-filters .btn--title {
    font-weight: 400;
  }
}

body:not(.touch-device) .btn-reset-filters:hover {
  background-color: transparent;
}

/* filter panel - end */
/* videos - start */
.videos--wrap {
  position: relative;
  opacity: 0;
  pointer-events: none;
}
.videos--wrap.load {
  opacity: 1;
  pointer-events: all;
}

.boxes-group {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #F3F4F6;
}
.boxes-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0px;
}
.boxes-group .heading {
  margin-bottom: 25px;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  margin: -50px 0 0 -30px;
}
@media (max-width: 767px) {
  .boxes {
    margin: 0;
  }
}
.boxes .box {
  width: calc((100% - 90px) / 3);
  margin: 50px 0 0 30px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .boxes .box {
    width: calc((100% - 60px) / 2);
  }
}
@media (max-width: 767px) {
  .boxes .box {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
  .boxes .box:last-child {
    margin-bottom: 0px;
  }
}
.boxes .box--title {
  font-weight: 700;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.boxes .img-wrap {
  box-shadow: 0px 0px 15px 5px #DEDEDE;
}

.search-no-results {
  width: 100%;
  padding: 50px 0;
  font-size: 1.125rem;
  color: #999999;
}
@media (min-width: 768px) {
  .search-no-results {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .search-no-results {
    padding: 20px 0;
  }
}

.videos--loadMore {
  position: absolute;
  width: 325px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 20px;
}
.videos--loadMore .btn--title {
  font-size: 1.1875rem;
  text-transform: none;
}
@media (max-width: 479px) {
  .videos--loadMore {
    width: 95%;
  }
}

/* videos - end */
</pre></body></html>