/*
 * Work page specific styles - desktop version
 */
/*
 * Styles, which don't generate any output and can be safely imported from
 * all root level stylesheets
 */
/*
 * Paths
 */
/**
 * Animation & transition settings
 */
/*
 * Color Palette
 */
/*
 * Form color palette
 */
/*
 * Footer color palette
 */
/*
 * Settings for the `<body>` element
 */
/*
 * Text
 *
 * Settings for text, fonts, sizes
 */
/**
 * Text sizes
 *
 * Resolution specific font sizes, line height, etc.
 * All styles cascade up
 *
 * For each style is generated "%text--size-NAME" placeholder selector
 * Each style can also be used included using mixin "@include text--size(NAME);"
 *
 * See extends/_text-styles.scss
 */
/**
 * Link styles
 *
 * Settings for the anchor elements
 * For each link style is generated "%link--style-NAME" placeholder selector
 *
 * See extends/_links.scss
 *
 * @demo
 *   @extend %link--style-heading;
 */
/**
 * Grid
 *
 * Grid system settings
 * All resolution styles cascade up from mobile to desktop
 *
 * @demo
 *   <div class="row row--pad">...</div>
 *   <div class="row row--pad-small">...</div>
 */
/**
 * For each grid container is generated ".container--NAME" classname, except
 * for "default", for which ".container" classname is generated
 *
 * @demo
 *   <div class="container"></div>
 *   <div class="container container--footer"></div>
 */
/**
 * Spacing
 *
 * Settings for spacing between most of the elements
 *
 * @demo
 *   @include margins($spacing);
 *   @include margins($spacing-medium);
 */
/**
 * Breakpoints for devices / orientations / screens
 * Following already are default values, uncomment if needed
 */
/**
 * Minimal body width
 */
/**
 * Returns nth property from css property list
 *
 * @property {map} $list List
 * @property {number} $index Item index
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @code
 *     $spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
 *     $spacer-top-only:    pick-css-nth($spacer, 1); // => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
 *     $spacer-bottom-only: pick-css-nth($spacer, 3); // => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
 */
/**
 * @function map-deep-get Deep get for sass maps
 * @author https://css-tricks.com/snippets/sass/deep-getset-maps/
 * @description
 * Returns deeply nested property from a map
 *
 *     $paddings: map-deep-get($grid-containers, default, paddings, xs);
 */
/**
 * Mixin for object-fit plugin
 *
 * @see https://github.com/bfred-it/object-fit-images
 * @see components/_background.scss
 * @example
 *   @include object-fit(contain);
 *   @include object-fit(cover, top);
 */
/**
 * Converts SVG into data url so that this SVG could be used as a
 * background image
 *
 * @demo
 *     background-image: svg-to-data-url('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>');
 */
/**
 * Selectors to target specific browsers without affecting specificity or
 * limiting use in media queries
 *
 * Pros:
 *   - Works with media queries
 *
 * Conts:
 *   - Can't be used with @extend as that will invalidate other selectors
 *
 * See http://browserstrangeness.bitbucket.org/css_hacks.html
 */
/**
 * Target Internet Explorer, but not Edge
 *
 * @demo
 *     div {
 *       @include browser-ie () {
 *         // ...
 *       }
 *     }
 */
/**
 * Target Edge
 */
/**
 * Target Firefox
 */
/**
 * Target Safari
 */
/**
 * Target all WebKit browsers
 */
/**
 * Breakpoints for devices / orientations / screens
 *
 * @code
 *     @include media-breakpoint (lg-up) {
 *         // ...
 *     }
 */
/**
 * Returns if media query name is valid and values exist
 */
/**
 * Output content in a media query
 *
 * @code
 *     .icon {
 *         @include media-breakpoint (sm-down) {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in retina display media query
 *
 * @code
 *     .icon {
 *         @include media-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in non-retina display media query
 *
 * @code
 *     .icon {
 *         @include media-non-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Image rendering quality
 * In Chrome background image quality is not the best when using background-size
 */
/**
 * @function placeholder Set input placeholder styles
 * @demo
 *     input {
 *         @include placeholder () {
 *             color: #000;
 *         }
 *     }
 */
/**
 * Margins mixin
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @demo
 *     @include padding(inherit 20px);
 *
 * @demo
 *     @include padding((
 *         xs: inherit 20px,
 *         md: inherit 40px
 *     ));
 */
/*
 * Grid generator mixins
 */
/**
 * Mixin to generate grid container classnames
 *
 * @property {map} $containers Containers
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixins to generate content for grid container classname
 *
 * @property {map} $container Container
 * @property {map} $container.max-width List of max-widths
 * @property {map} $container.paddings  List of paddings
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixin to generate column classnames for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 */
/**
 * Mixin to generate column paddings for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 * @property {number?} $gutter      Gutter between columns
 */
/*
 * 1. Fix for IE where paddings are not taken into account even with box-sizing
 * 2. Fix for Firefox
 */
/*
 * Button normal state style mixin
 *
 * Sets styles to button normal state
 * 1. We overwrite disabled state too because if classname is used, then :hover, :active will take precedent
 */
/*
 * Button hover state style mixin
 *
 * Sets styles to button hover, focused states
 */
/*
 * Button active state style mixin
 *
 * Sets styles to active state
 */
/*
 * Button hover + active state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Active button state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Button disabled state style mixin
 */
/*
 * Button style
 *
 * Sets hover, active, focus, disabled styles
 */
/*
 * Button size
 *
 * Sets different size for different breakpoints
 */
/*
 * Square button modifier mixin
 */
/*
 * Text size
 *
 * Sets different size for different breakpoints
 */
/*
 * Link normal state style mixin
 *
 * Sets styles to link normal state
 */
/*
 * Link hover state style mixin
 *
 * Sets styles to link hover and focused states
 */
/*
 * Link active state style mixin
 *
 * Sets styles to link active state
 */
/*
 * Link hover and active state style mixin
 *
 * Sets styles to link hover, focused and active states
 */
/*
 * Link disabled state style mixin
 *
 * Sets styles to link disabled state
 */
/*
 * Image icon generator mixin
 */
/*
 * Retina image for icon
 */
/**
 * Animations
 *
 * Enables transition for all properties for elements
 *
 * @demo
 *     div { @extend %transition; }
 */
/**
 * Layout component mixin and placeholder classname, which is above other components
 *
 * @demo
 *     .lightbox { @extend %layout-order-above-top; }
 *     .header { @extend %layout-order-top; }
 *
 *     .lightbox { @include layout-order-above-top(); }
 *     .header { @include layout-order-top(); }
 */
/**
 * Layout component mixin and placeholder classname which covers parent
 *
 * @demo
 *     .btn-large:before { @extend %layout-position-overlay; }
 *     .btn-small:before { @extend %layout-position-overlay-extended; }
 *
 *     .btn-large:before { @include layout-position-overlay(); }
 *     .btn-small:before { @include layout-position-overlay-extended(); }
 */
/**
 * Text style mixin and placeholder classnames
 *
 * Used to keep all standard text and all headings consistent without code
 * duplication / to improve maintainability
 *
 * See settings/_text.scss
 *
 * @demo
 *     body  { @extend %text--default; }
 *     h1    { @extend %text--heading; }
 *
 *     body  { @include text--default(); }
 *     h1    { @include text--heading(); }
 */
.form-control-select--large.nice-select, select.form-control-select--large {
  font-family: "Museo Sans Cyrl", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-transform: none;
  color: #333333; }

/**
 * Text size / style mixin and placeholder classname generator
 * For each style is generated "%text--size-NAME" placeholder selector
 *
 * See settings/_text.scss
 *
 * @demo
 *     .class { @extend %text--size-h1; }
 *
 *     .class { @include text--size(h1); }
 *
 *     .class {
 *         @include text--size((
 *             xs:  ( 'font-size': 1.4rem,  'line-height': 24 / 14 * 1em )
 *         ));
 *     }
 */
.form-control-select--large.nice-select, select.form-control-select--large, .form-control--file__list__item {
  font-size: 1.6rem;
  line-height: 1.3125em; }

.work__intro h3 {
  font-size: 1.8rem;
  line-height: 1.66667em; }

/**
 * Link style mixin and placeholder classname generator
 *
 * For each link theme defined in settings/_colors.scss creates
 * a %link--style-NAME placeholder classname
 *
 * See settings/_links.scss
 *
 * @demo
 *     a     { @extend %link--style-default; }
 *     nav a { @extend %link--style-text; }
 *
 *     a     { @include link--style(default); }
 *     nav a { @include link--style(text); }
 */
/**
 * Large input style
 *
 * Using jquery-nice-select library for dropdowns
 */
.form-control-select--large.nice-select {
  height: 60px;
  padding-left: 20px;
  padding-right: 42px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  font-weight: 500;
  line-height: 60px; }
  .form-control-select--large.nice-select:after,
  .form-control-select--large.nice-select li:first-child:after {
    right: 20px;
    top: 28px;
    border-width: 7px 3.5px 0 3.5px; }
  .form-control-select--large.nice-select:hover, .form-control-select--large.nice-select:active, .form-control-select--large.nice-select:focus {
    border-color: #acb5bb; }
  .form-control-select--large.nice-select.open > .list {
    transform: translateY(0); }
  .form-control-select--large.nice-select.open:after {
    z-index: 7; }
  .form-control-select--large.nice-select .list {
    background-color: #ffffff;
    border-radius: 4px 4px;
    box-shadow: 0 10px 20px rgba(18, 42, 96, 0.12);
    border: 1px solid #c2cbd2;
    color: #90989f;
    box-sizing: content-box;
    transform: translateY(-30px);
    left: -1px;
    top: -1px; }
    .form-control-select--large.nice-select .list .list {
      box-shadow: none;
      border: 0;
      transform: none !important;
      left: auto;
      top: auto; }
  .form-control-select--large.nice-select ul.list {
    padding-bottom: 14px; }
  .form-control-select--large.nice-select .option {
    line-height: 40px;
    min-height: 40px;
    padding-left: 20px;
    padding-right: 42px; }
    .form-control-select--large.nice-select .option:hover, .form-control-select--large.nice-select .option.focus, .form-control-select--large.nice-select .option.selected.focus {
      background-color: #ffffff; }
    .form-control-select--large.nice-select .option.focus {
      color: #306bf5; }
    .form-control-select--large.nice-select .option.selected, .has-hover .form-control-select--large.nice-select .option:hover {
      color: #333333; }
    .form-control-select--large.nice-select .option.disabled, .has-hover .form-control-select--large.nice-select .option.disabled:hover {
      background-color: transparent;
      color: #90989f; }
    .form-control-select--large.nice-select .option:first-child {
      line-height: 60px;
      min-height: 60px;
      border-bottom: 1px solid #c2cbd2;
      margin-bottom: 8px; }

.form-control-select--large.form-control-select--placeholder {
  color: #90989f; }

select[required] + .form-control-select--large.form-control-select--placeholder .current:after {
  content: " *";
  color: #de2152; }

/**
 * Fallback
 */
select.form-control-select--large {
  -moz-appearance: button;
  -webkit-appearance: button;
  height: 60px;
  padding-left: 20px;
  padding-right: 10px;
  border: 0;
  background-color: #ffffff;
  background-position: right 16px top 27px;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  line-height: 58px; }

.form-control--file {
  margin-top: 2rem;
  margin-bottom: 4rem; }
  .form-control--file input {
    position: absolute;
    z-index: -9999;
    height: 0px;
    width: 0px;
    padding: 0px;
    margin: 0px;
    line-height: 0;
    outline: 0px;
    border: 0px;
    opacity: 0; }
  .form-control--file label {
    cursor: pointer; }
  .form-control--file__list {
    margin-top: 1.5rem;
    margin-bottom: 0; }
    .form-control--file__list__item {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      padding: 1.8rem 55px 1.8rem 0;
      border-bottom: 1px solid #edeef0;
      position: relative;
      white-space: nowrap; }
      .form-control--file__list__item:last-child {
        border-bottom: none; }
      .form-control--file__list__item:after {
        content: '';
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 100%);
        position: absolute;
        right: 40px;
        top: 0;
        bottom: 0;
        width: 47px; }
      .form-control--file__list__item span {
        flex-grow: 1;
        overflow: hidden; }
      .form-control--file__list__item__controls {
        position: absolute;
        right: 0; }
      .form-control--file__list__item > .icon {
        color: #306bf5;
        margin-right: 1rem;
        flex-shrink: 0; }

.work {
  padding-bottom: 8rem; }
  .work__intro {
    padding: 2.4rem 0 6rem; }
    .work__intro > img {
      display: block;
      width: 100%;
      height: auto; }
    .work__intro-text {
      font-size: 1.6rem;
      line-height: 1.625em;
      padding-right: 6rem; }
      .work__intro-text--heading {
        font-size: 2rem;
        line-height: 1.5em; }
  .work__rd-is {
    padding-top: 1.5rem; }
    .work__rd-is__count {
      color: #306bf5;
      font-weight: 900;
      font-size: 5rem;
      line-height: 0.8em;
      margin-bottom: 0.6rem; }
    .work__rd-is__title {
      font-size: 1.6rem;
      line-height: 1.5em; }
  .work__advantages {
    padding-top: 2.2rem; }
  .work__advantages-item {
    box-shadow: 0 8px 24px 0 rgba(0, 12, 40, 0.08);
    border-radius: 4px;
    background: #ffffff;
    height: 100%; }
    .work__advantages-item__icon {
      color: #306bf5;
      height: 185px;
      border-bottom: 1px solid #edeef0;
      display: flex;
      align-items: center;
      justify-content: center; }
    .work__advantages-item__title {
      font-size: 1.6rem;
      line-height: 1.375em;
      padding: 3rem 6rem 3rem 4rem; }

.work__content {
  padding-top: 6.6rem; }
  .work__content-title {
    text-transform: none;
    font-size: 3rem;
    line-height: 0.8em; }
  .work__content .form-control-select {
    min-width: 240px; }
  .work__content .vacancy__heading {
    margin: 0;
    line-height: 2.4rem; }
    .work__content .vacancy__heading a {
      display: flex;
      align-items: flex-end; }
      .work__content .vacancy__heading a .icon {
        top: 2px; }
    .work__content .vacancy__heading-post {
      flex-grow: 1; }
    .work__content .vacancy__heading-salary {
      font-size: 1.6rem;
      line-height: 2.4rem;
      text-transform: none;
      margin-right: 50px;
      flex-basis: 100px;
      text-align: right; }
    .work__content .vacancy__heading-city {
      font-size: 1.6rem;
      line-height: 2.4rem;
      font-weight: 500;
      text-transform: none;
      flex-basis: 100px;
      margin-right: 30px; }
  .work__content .vacancy__content {
    padding-right: 400px;
    padding-top: 4.5rem; }

  .work__button .btn {
    font-size: 2rem;
    line-height: 1.2em;
  }
.work__button {
  margin-bottom: 60px;
}
.work__button .btn--larger {
  padding: 4px 100px 0;
}

.cv .heading-tab {
  margin-bottom: 2.5rem; }

/*# sourceMappingURL=work.css.map */
