/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.container {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }
  .container:before, .container:after {
    content: '';
    display: table; }
  .container:after {
    clear: both; }

.container--outer {
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px; }
  .container--outer:before, .container--outer:after {
    content: '';
    display: table; }
  .container--outer:after {
    clear: both; }

.is-hidden {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute; }

*, *:before, *:after {
  box-sizing: border-box; }

html {
  overflow-x: hidden; }

html,
body {
  height: 100%; }

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-family: "open-sans", arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  background-color: white;
  color: #333333; }

img,
iframe {
  max-width: 100%;
  display: block; }

img {
  height: auto; }

a {
  color: #00a3e0;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out; }
  a:hover {
    color: black;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    text-decoration: underline; }

p, ul, ol {
  margin-bottom: 20px; }

ul, ol {
  padding-left: 2em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

strong {
  font-weight: 700; }

em {
  font-style: italic; }

h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 40px;
  color: black; }

h2 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 40px;
  color: black; }

h3 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2em;
  margin-bottom: 6px;
  color: black; }

.header {
  background-color: black; }
  .header::after {
    clear: both;
    content: "";
    display: table; }
  @media (min-width: 0) and (max-width: 619px) {
    .header {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media (min-width: 620px) {
    .header {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .header__logo {
    float: left;
    margin-bottom: 0;
    padding-left: 10px; }
    @media (min-width: 620px) {
      .header__logo {
        padding-left: 30px; } }
    .header__logo__link {
      overflow: hidden;
      text-indent: 101%;
      white-space: nowrap;
      display: inline-block; }
      @media (min-width: 0) and (max-width: 619px) {
        .header__logo__link {
          background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/logo-mobile.png");
          background-repeat: no-repeat;
          background-position: 0 0;
          width: 157px;
          height: 30px; } }
  @media only screen and (min-width: 0) and (max-width: 619px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 192dpi), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 2dppx) {
    .header__logo__link {
      background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/logo-mobile@2x.png");
      -webkit-background-size: 157px 30px;
      -moz-background-size: 157px 30px;
      -o-background-size: 157px 30px;
      background-size: 157px 30px; } }

      @media (min-width: 620px) {
        .header__logo__link {
          background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/logo.png");
          background-repeat: no-repeat;
          background-position: 0 0;
          width: 190px;
          height: 36px; } }
  @media only screen and (min-width: 620px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 620px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 620px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 620px) and (min-resolution: 192dpi), only screen and (min-width: 620px) and (min-resolution: 2dppx) {
    .header__logo__link {
      background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/logo@2x.png");
      -webkit-background-size: 190px 36px;
      -moz-background-size: 190px 36px;
      -o-background-size: 190px 36px;
      background-size: 190px 36px; } }

  @media (min-width: 0) and (max-width: 619px) {
    .header__nav {
      display: none;
      clear: both;
      text-align: center; }
      .header__nav.is-open {
        display: block; } }
  @media (min-width: 620px) {
    .header__nav {
      float: right;
      padding-top: 17px;
      padding-right: 30px; } }
  .header__nav__list {
    list-style: none;
    padding: 0;
    margin: 0; }
  .header__nav__item {
    font-weight: 700; }
    @media (min-width: 620px) {
      .header__nav__item {
        display: inline-block;
        margin-left: 20px; } }
  .header__nav__link {
    color: white; }
    .header__nav__link:hover {
      color: #00a3e0; }
    @media (min-width: 0) and (max-width: 619px) {
      .header__nav__link {
        display: block;
        padding: 10px; } }
    @media (min-width: 620px) {
      .header__nav__link {
        background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav-icon.png");
        background-repeat: no-repeat;
        background-position: 0 0;
        background-position: 100% 50%;
        background-repeat: no-repeat;
        padding-right: 15px; } }
  @media only screen and (min-width: 620px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 620px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 620px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 620px) and (min-resolution: 192dpi), only screen and (min-width: 620px) and (min-resolution: 2dppx) {
    .header__nav__link {
      background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav-icon@2x.png");
      -webkit-background-size: 11px 7px;
      -moz-background-size: 11px 7px;
      -o-background-size: 11px 7px;
      background-size: 11px 7px; } }

  @media (min-width: 0) and (max-width: 619px) {
    .header__toggle {
      position: absolute;
      top: 20px;
      right: 20px;
      bottom: auto;
      left: auto;
      color: white;
      background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav.png");
      background-repeat: no-repeat;
      background-position: 0 0;
      width: 34px;
      height: 34px;
      cursor: pointer; } }
  @media only screen and (min-width: 0) and (max-width: 619px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 192dpi), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 2dppx) {
    .header__toggle {
      background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav@2x.png");
      -webkit-background-size: 34px 34px;
      -moz-background-size: 34px 34px;
      -o-background-size: 34px 34px;
      background-size: 34px 34px; } }
  @media (min-width: 0) and (max-width: 619px) {
      .header__toggle.is-active {
        background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav-close.png");
        background-repeat: no-repeat;
        background-position: 0 0; } }
    @media only screen and (min-width: 0) and (max-width: 619px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (min--moz-device-pixel-ratio: 2), only screen and (min-width: 0) and (max-width: 619px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 192dpi), only screen and (min-width: 0) and (max-width: 619px) and (min-resolution: 2dppx) {
      .header__toggle.is-active {
        background-image: url("https://ukpages.deloitte.com/rs/676-RGI-700/images/nav-close@2x.png");
        -webkit-background-size: 34px 34px;
        -moz-background-size: 34px 34px;
        -o-background-size: 34px 34px;
        background-size: 34px 34px; } }

  @media (min-width: 620px) {
    .header__toggle {
      display: none; } }

.page {
  background-color: #f3f3f3;
  padding-top: 40px; }
  .has-feature .page {
    padding-top: 0; }
  .page__title {
    font-weight: 700;
    margin-bottom: 20px; }
  .page__intro p {
    font-size: 24px;
    line-height: 1.3em; }
  .page__header {
    background-color: #F3F3F3;
    position: relative;
    text-align: center; }
    .reversed .page__header {
      background-color: #F3F3F3;
      color: black; }
    .page__header.is-feature .page__header__image {
      max-height: 300px;
      width: auto; }
      @media (min-width: 700px) {
        .page__header.is-feature .page__header__image {
          float: right;
          max-height: none;
          width: 50%; } }
      @media (min-width: 900px) {
        .page__header.is-feature .page__header__image {
          float: none; } }
    .has-feature .page__header {
      margin-bottom: 40px; }
    .page__header .container--outer {
      position: relative; }
    .page__header__image {
      display: inline-block;
      width: 100%; }
    .page__header__content {
      text-align: left;
      color: white;
      padding-left: 10px; }
      .reversed .page__header__content {
        color: black; }
      @media (min-width: 480px) {
        .page__header__content {
          max-width: 400px; } }
      @media (min-width: 700px) {
        .page__header__content {
          position: absolute;
          top: auto;
          right: auto;
          bottom: 10px;
          left: 30px;
          width: 50%; } }
      @media (min-width: 900px) {
        .page__header__content {
          max-width: 250px; } }
      @media (min-width: 1000px) {
        .page__header__content {
          max-width: 390px; } }
    .page__header__title {
      font-weight: 700;
      margin-bottom: 20px; }
    .page__header__intro p {
      font-size: 20px;
      line-height: 1.2em; }
  @media (min-width: 768px) {
    .page__content__main.has-sidebar {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 58.8%;
      margin-left: 0%;
      margin-right: 3%; }
      .page__content__main.has-sidebar:before, .page__content__main.has-sidebar:after {
        content: '';
        display: table; }
      .page__content__main.has-sidebar:after {
        clear: both; }
      .page__content__main.has-sidebar:last-child {
        margin-right: 0%; } }
  .page__content__main.no-sidebar .page__content__inner {
    *zoom: 1;
    width: auto;
    max-width: 570px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px; }
    .page__content__main.no-sidebar .page__content__inner:before, .page__content__main.no-sidebar .page__content__inner:after {
      content: '';
      display: table; }
    .page__content__main.no-sidebar .page__content__inner:after {
      clear: both; }
  .page__content {
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 40px; }
    .page__content::after {
      clear: both;
      content: "";
      display: table; }
    .page__content.has-sidebar .page__content__container {
      *zoom: 1;
      width: auto;
      max-width: 1000px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      .page__content.has-sidebar .page__content__container:before, .page__content.has-sidebar .page__content__container:after {
        content: '';
        display: table; }
      .page__content.has-sidebar .page__content__container:after {
        clear: both; }
    @media (min-width: 768px) {
      .page__content.has-sidebar .page__content__main {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 58.8%;
        margin-left: 0%;
        margin-right: 3%; }
        .page__content.has-sidebar .page__content__main:before, .page__content.has-sidebar .page__content__main:after {
          content: '';
          display: table; }
        .page__content.has-sidebar .page__content__main:after {
          clear: both; }
        .page__content.has-sidebar .page__content__main:last-child {
          margin-right: 0%; } }
    @media (min-width: 768px) {
      .page__content.has-sidebar .page__content__side {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 38.2%;
        margin-left: 0%;
        margin-right: 3%; }
        .page__content.has-sidebar .page__content__side:before, .page__content.has-sidebar .page__content__side:after {
          content: '';
          display: table; }
        .page__content.has-sidebar .page__content__side:after {
          clear: both; }
        .page__content.has-sidebar .page__content__side:last-child {
          margin-right: 0%; } }
    .page__content.no-sidebar .page__content__inner {
      *zoom: 1;
      width: auto;
      max-width: 570px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      .page__content.no-sidebar .page__content__inner:before, .page__content.no-sidebar .page__content__inner:after {
        content: '';
        display: table; }
      .page__content.no-sidebar .page__content__inner:after {
        clear: both; }
    .page__content.no-sidebar .page__content__infographic {
      *zoom: 1;
      width: auto;
      max-width: 1000px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px;
      text-align: center;
      margin-bottom: 40px; }
      .page__content.no-sidebar .page__content__infographic:before, .page__content.no-sidebar .page__content__infographic:after {
        content: '';
        display: table; }
      .page__content.no-sidebar .page__content__infographic:after {
        clear: both; }
      .page__content.no-sidebar .page__content__infographic img {
        display: inline-block;
        width: 100%; }
  .page .legals {
    margin-top: -40px;
    padding-top: 10px; }
    .page .legals .page__content__inner {
      *zoom: 1;
      width: auto;
      max-width: 1000px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 12px; }
      .page .legals .page__content__inner:before, .page .legals .page__content__inner:after {
        content: '';
        display: table; }
      .page .legals .page__content__inner:after {
        clear: both; }

        
  

label {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 700;
  display: block;
  margin-bottom: 5px; }

input,
textarea {
  border: 1px solid #d0d0ce;
  margin: 0;
  background-color: white;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  width: 100%; }

input[type='checkbox'],
input[type='radio'] {
  width: auto; }

.button {
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent; }
  .button__inner {
    display: inline-block;
    background-color: #00a3e0;
    color: white;
    padding: 15px 60px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 15px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out; }
    .button__inner:hover {
      -webkit-transition: background-color 0.2s ease-in-out;
      -moz-transition: background-color 0.2s ease-in-out;
      transition: background-color 0.2s ease-in-out;
      background-color: black;
      color: white; }
    .reversed .button__inner {
      background-color: white;
      color: #00a3e0;
      border: 1px solid #00a3e0;
      -webkit-transition: background-color 0.2s ease-in-out;
      -moz-transition: background-color 0.2s ease-in-out;
      transition: background-color 0.2s ease-in-out; }
      .reversed .button__inner:hover {
        -webkit-transition: background-color 0.2s ease-in-out;
        -moz-transition: background-color 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out;
        background-color: #00a3e0;
        color: white; }

.panels {
  padding-top: 40px; }
  .panels::after {
    clear: both;
    content: "";
    display: table; }

.panel {
  background-color: white;
  font-size: 14px; }
  .panel.black {
    background-color: black; }
    .panel.black .panel__title,
    .panel.black .panel__content {
      color: white; }
  @media (min-width: 0) and (max-width: 767px) {
    .panel {
      margin-bottom: 40px; }
      .panel:last-child {
        margin-bottom: 0; } }
  @media (min-width: 480px) {
    .panel {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%; }
      .panel:before, .panel:after {
        content: '';
        display: table; }
      .panel:after {
        clear: both; }
      .panel:nth-child(2n) {
        margin-right: 0%;
        float: right; }
      .panel:nth-child(2n + 1) {
        clear: both; } }
  @media (min-width: 768px) {
    .panel {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.3333333333%;
      margin-left: 0%;
      margin-right: 3%; }
      .panel:before, .panel:after {
        content: '';
        display: table; }
      .panel:after {
        clear: both; }
      .panel:nth-child(2n) {
        margin-right: 3%;
        float: left; }
      .panel:nth-child(2n + 1) {
        clear: none; }
      .panel:nth-child(3n) {
        margin-right: 0%;
        float: right; }
      .panel:nth-child(3n + 1) {
        clear: both; } }
  .panel p:last-child {
    margin-bottom: 0; }
  .panel__content {
    padding: 20px;
    border-top: 2px solid #f3f3f3; }
  .panel__image {
    width: 100%; }
  .panel__type {
    color: #97999b;
    font-weight: 700;
    margin-bottom: 8px; }
  .panel__title {
    font-weight: 700;
    margin-bottom: 12px; }
  .panel__more a {
    color: #62b5e5; }
    .panel__more a:hover {
      color: white; }

.social {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px; }
  .social__item {
    display: inline-block;
    margin-right: 10px; }
    .social__item:last-child {
      margin-right: 0; }
    .social__item:hover img {
      opacity: .8; }

.footer {
  font-size: 14px;
  padding-top: 40px; }
  .footer::after {
    clear: both;
    content: "";
    display: table; }