﻿@import url('https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i');

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-50%, -50%);
            transform: rotate(360deg) translate(-50%, -50%);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
            transform: rotate(0deg) translate(-50%, -50%);
  }

  to {
    -webkit-transform: rotate(360deg) translate(-50%, -50%);
            transform: rotate(360deg) translate(-50%, -50%);
  }
}

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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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: none;
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

select,
input,
button,
textarea {
  font-family: inherit;
}

a {
  color: #1393f6;
  text-decoration: none;
}

a:hover {
  color: #1272d5;
}

p {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
.page-title,
.section-title,
.container-title,
.card-title,
.info-title {
  color: #333;
  font-weight: 700;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
.page-title small,
.section-title small,
.container-title small,
.card-title small,
.info-title small {
  display: block;
  font-style: italic;
  font-weight: 400;
}

.page-title--high-contrast,
.section-title--high-contrast,
.container-title--high-contrast,
.card-title--high-contrast,
.info-title--high-contrast {
  color: #1393f6;
}

h1,
.page-title {
  font-size: 24px;
  margin-bottom: 4px;
}

h1 small,
.page-title small {
  font-size: 16px;
  margin-top: 8px;
}

h2,
.section-title {
  font-size: 18px;
  margin-bottom: 4px;
}

h2 small,
.section-title small {
  font-size: 14px;
  margin-top: 4px;
}

h3,
.container-title {
  font-size: 16px;
  margin-bottom: 4px;
}

h3 small,
.container-title small {
  font-size: 14px;
  margin-top: 4px;
}

h4,
.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

h4 small,
.card-title small {
  font-size: 14px;
  margin-top: 4px;
}

h5,
.info-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

h5 small,
.info-title small {
  font-size: 12px;
  margin-top: 4px;
}

html {
  position: relative;
}

html.sticky {
  min-height: 100%;
}

body {
  color: #333;
  font-family: 'Lato','Arial',sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.sticky body {
  margin-bottom: 520px;
}

.content-centered {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
}

.btn {
  background-color: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  letter-spacing: .3px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background-color .2s;
          transition: background-color .2s;
}

.btn[disabled] {
  opacity: .3;
}

.btn--fluid {
  display: block;
  width: 100%;
}

.btn--loading {
  background-color: rgba(83, 110, 123, .2);
  font-size: 0 !important;
  position: relative;
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}

.btn--loading::before {
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  background-color: transparent;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  border-radius: 15px;
  border-right: 3px solid #fff;
  border-top: 3px solid transparent;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  content: '';
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 20px;
}

.btn--high-contrast {
  background-color: #1393f6;
  color: #fff;
}

.btn--high-contrast:not([disabled]):hover {
  background-color: #1272d5;
}

.btn--high-contrast-reversed {
  background-color: rgba(255, 255, 255, .9);
  color: #1393f6;
}

.btn--high-contrast-reversed:not([disabled]):hover {
  background-color: #fff;
}

.btn--low-contrast {
  background-color: #e7e7e7;
  color: rgba(51, 51, 51, .5);
}

.btn--low-contrast:not([disabled]):hover {
  background-color: rgba(51, 51, 51, .2);
}

.btn--low-contrast-reversed {
  background-color: rgba(51, 51, 51, .1);
  color: #fff;
}

.btn--low-contrast-reversed:not([disabled]):hover {
  background-color: rgba(51, 51, 51, .14);
}

.btn--medium-contrast {
  background-color: #1272d5;
  color: #fff;
}

.btn--medium-contrast:not([disabled]):hover {
  background-color: #004183;
}

.btn--medium-contrast-reversed {
  background-color: rgba(51, 51, 51, .25);
  color: #fff;
}

.btn--medium-contrast-reversed:not([disabled]):hover {
  background-color: rgba(51, 51, 51, .3);
}

.btn--outline {
  background-color: #fff;
  border: solid 1px #1393f6;
  color: #1393f6;
}

.btn--outline:not([disabled]):hover {
  background-color: rgba(19, 147, 246, .1);
}

.btn--outline-reversed {
  border: solid 1px #fff;
  color: #fff;
}

.btn--outline-reversed:not([disabled]):hover {
  background-color: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn--raised {
  background-color: #1393f6;
  box-shadow: 6px 6px 20px 0 rgba(51, 51, 51, .2);
  color: #fff;
}

.btn--raised:not([disabled]):hover {
  background-color: #1272d5;
}

.btn--raised-reversed {
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 6px 6px 20px 0 rgba(51, 51, 51, .2);
  color: #1393f6;
}

.btn--raised-reversed:not([disabled]):hover {
  background-color: #fff;
}

.btn--greeny {
  background-color: #40d879;
  color: #fff;
}

.btn--greeny:not([disabled]):hover {
  background-color: #5ebd66;
}

.btn--mini {
  font-size: 12px;
  padding: 10px 20px;
}

.btn--small {
  font-size: 13px;
  padding: 11px 22px;
}

.btn--regular {
  font-size: 14px;
  padding: 16px 32px;
}

.btn--big {
  font-size: 16px;
  padding: 21px 42px;
}

.media-box {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  color: rgba(51, 51, 51, .6);
  display: -webkit-box;
  display:    -moz-box;
  display: -webkit-flex;
  display:         flex;
  display: -ms-flexbox;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.media-box__title {
  color: #1393f6;
}

.media-box__title small {
  color: rgba(51, 51, 51, .6);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.media-box__sidebar,
.media-box__content {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  display: block;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.no-flexbox .media-box__sidebar,
.no-flexbox .media-box__content {
  display: table-cell;
}

.media-box__sidebar {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  padding-right: 15px;
}

.media-box__content {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
     -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 14px;
  word-break: break-word;
}

.picture {
  max-width: 100%;
}

.picture__image {
  background-color: #fff;
  display: block;
  height: auto;
  max-width: 100%;
}

.picture--rounded .picture__image {
  border-radius: 50%;
}

.picture--cover {
  display: block;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  width: auto;
}

.picture--cover .picture__image {
  -moz-force-broken-image-icon: 1;
  height: auto;
  left: 50%;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.rating {
  color: rgba(51, 51, 51, .6);
  font-size: 12px;
}

.rating__stars {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.rating__star-item {
  display: inline-block;
}

.card {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  box-shadow: 0 4px 8px 0 rgba(51, 51, 51, .12);
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 24px;
  width: inherit;
}

.card__title {
  color: #333;
}

.card__header .card__title {
  color: #536e7b;
}

.card__content {
  color: rgba(51, 51, 51, .6);
  font-size: 14px;
}

.card__header + .card__content {
  margin-top: 16px;
}

.card__footer {
  color: rgba(51, 51, 51, .78);
  font-size: 12px;
  margin-top: 16px;
}

.card--highlighted .card__title {
  color: #536e7b;
  font-style: italic;
}

.no-flexbox .card {
  width: 100%;
}

.icon {
  display: inline-block;
  margin: 2px 20px 0;
  vertical-align: top;
}

.icon img {
  max-width: 100%;
}

.icon--small {
  margin-left: 7px;
  margin-right: 7px;
  width: 8px;
}

.hint {
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  display: -webkit-box;
}

.no-flexbox .hint {
  display: table;
}

.no-flexbox .hint__message {
  display: table-cell;
}

.hint__icon {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.pagination__item {
  display: inline-block;
}

.pagination__item + .pagination__item {
  margin-left: 3px;
}

.pagination__item a {
  border: solid 1px rgba(51, 51, 51, .2);
  border-radius: 6px;
  display: block;
  height: 100%;
  padding: 6px 10px;
  width: 100%;
}

.pagination__item-jump {
  border: 0;
  display: inline-block;
  padding: 6px 5px;
}

.pagination__item--disabled {
  opacity: .3;
}

.pagination__item--active:not(.pagination__item--disabled) a,
.pagination__item:hover:not(.pagination__item--disabled) a {
  background-color: #1393f6;
  border-color: #1393f6;
  color: #fff;
}

.page-banner {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
     -moz-box-orient: horizontal;
  display: -webkit-flex;
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-box;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 430px;
  position: relative;
  width: 100%;
}

.page-banner__content {
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  display:    -moz-box;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 30px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.page-banner__content [class*='-title'] {
  color: #fff;
}

.page-banner__picture {
  height: 100%;
  position: absolute;
  width: 100%;
}

.page-banner__picture img {
  height: auto;
}

.page-banner--over .page-banner__content {
  padding-bottom: 135px;
}

.page-banner + .page-banner-over {
  margin-top: -135px;
}

.brand {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
     -moz-box-orient: horizontal;
  color: #fff;
  display: -webkit-box;
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.no-flexbox .brand {
  display: inline-block;
}

.brand__link {
  display: inline-block;
}

.brand__image {
  display: inline-block;
  height: 36px;
  margin-right: 10px;
  vertical-align: top;
  width: 36px;
}

.no-flexbox .brand__image {
  display: inline-block;
}

.brand__name {
  color: #333;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: .8;
  margin-top: 2px;
}

.brand__name small {
  color: #1393f6;
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
}

.no-flexbox .brand__name {
  display: inline-block;
}

.list {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  display:         flex;
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:    -moz-box;
  -webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.no-flexbox .list::before,
.no-flexbox .list::after {
  content: '';
  display: table;
}

.no-flexbox .list::after {
  clear: both;
}

.list--link {
  color: #1393f6;
}

.list--link .list__item {
  -webkit-flex-wrap: nowrap;
     -moz-flex-wrap: nowrap;
      -ms-flex-wrap: none;
          flex-wrap: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

.list--link .list__item:hover,
.list--link .list__item:active,
.list--link .list__item:focus {
  color: #1272d5;
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
}

.list--link .list__item::before {
  content: '›';
}

.list--stacked {
  display: block;
}

.list--stacked .list__item {
  display: block;
  float: none;
  width: auto;
}

.list--stacked .list__item::before {
  margin-right: 2px;
}

.list__item {
  display: -ms-flexbox;
  display:    -moz-flex;
  display: -webkit-flex;
  display: -webkit-box;
  display:         flex;
  display:    -moz-box;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
     -moz-flex-shrink: 0;
          flex-shrink: 0;
  padding: 8px 0;
  -webkit-transition: color .25s, -webkit-transform .25s;
          transition: transform .25s, color .25s, -webkit-transform .25s;
          transition: transform .25s, color .25s;
          transition: color .25s, -webkit-transform .25s;
  width: 25%;
}

.no-flexbox .list__item {
  float: left;
}

.list__item::before {
  margin-right: 5px;
}

.list__item[class*='col-'] {
  padding-left: inherit;
  padding-right: inherit;
}

.menu {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: vertical;
     -moz-box-orient: vertical;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  display: -ms-flexbox;
  display:         flex;
  display: -webkit-flex;
  display:    -moz-box;
  display: -webkit-box;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
  -ms-flex-pack: justify;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 24px;
}

.no-flexbox .menu::before,
.no-flexbox .menu::after {
  content: '';
  display: table;
}

.no-flexbox .menu::after {
  clear: both;
}

.menu--centered {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.menu--over {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.menu--over + .page-banner .page-banner__content {
  padding-top: 90px;
}

.menu__brand {
  -webkit-box-pack: start;
     -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.no-flexbox .menu__brand {
  float: left;
}

.menu__options {
  -webkit-box-pack: end;
     -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}

.no-flexbox .menu__options {
  float: right;
}

.footer {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: vertical;
     -moz-box-orient: vertical;
  display: -webkit-flex;
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-box;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-align: center;
  width: 100%;
}

.footer--sticky {
  bottom: 0;
  -webkit-box-pack: end;
     -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  left: 0;
  max-height: 520px;
  position: absolute;
}

.footer__company-info {
  background-color: #333;
  padding-bottom: 24px;
  padding-top: 24px;
}

.footer__company-disclaimer {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3px;
  margin: 15px auto 0;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.footer__brand {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 24px;
}

.footer__brand a {
  color: rgba(255, 255, 255, .8);
  font-size: 22px;
}

.no-flexbox .footer__brand {
  text-align: center;
}

.footer__social-bar {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  display: -webkit-flex;
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-box;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
}

.no-flexbox .footer__social-bar {
  margin: 0 auto;
  width: auto;
}

.footer__social-bar li {
  line-height: 0;
  margin-left: 30px;
}

.footer__social-bar li:first-child {
  margin-left: 0;
}

.no-flexbox .footer__social-bar li {
  float: left;
}

.footer__link,
.footer__phone {
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}

.footer__link {
  color: rgba(255, 255, 255, .8);
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: color ease .2s;
          transition: color ease .2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__phone {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  color: #fff;
  display: -webkit-box;
  display:    -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  font-size: 18px;
  font-weight: 400;
  -webkit-justify-content: center;
          justify-content: center;
}

.no-flexbox .footer__phone {
  margin: 0 auto;
  width: auto;
}

.footer__phone .hint__icon {
  margin-right: 10px;
}

.footer__menu {
  background-color: rgba(51, 51, 51, .9);
}

.thumbnail {
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-transform .2s linear;
          transition:         transform .2s linear, -webkit-transform .2s linear;
          transition:         transform .2s linear;
          transition: -webkit-transform .2s linear;
  width: 100%;
  will-change: transform;
}

.thumbnail--action {
  display: block;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.thumbnail--action:hover {
  -webkit-transform: translateY(-7px) scale(-1.03) translateZ(1px);
          transform: translateY(-7px) scale(-1.03) translateZ(1px);
  -webkit-transition: -webkit-transform .2s linear;
          transition:         transform .2s linear, -webkit-transform .2s linear;
          transition:         transform .2s linear;
          transition: -webkit-transform .2s linear;
}

.thumbnail--action .thumbnail__photo {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.thumbnail--action .thumbnail__photo img {
  height: auto;
  max-height: 100%;
  width: 100%;
}

.thumbnail__button {
  background-color: rgba(19, 147, 246, .8);
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 16px;
  padding-top: 16px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
  width: 100%;
  z-index: 1;
}

.thumbnail__photo {
  border-radius: 6px;
  display: block;
  width: 100%;
}

.thumbnail__photo img {
  width: auto;
}

.wall {
  padding-bottom: 80px;
  padding-top: 80px;
}

.wall--highlighted {
  background-color: #eff4fa;
}

.wall--separator {
  border-top: 1px solid rgba(18, 114, 213, .2);
}

.widget {
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, .15);
  border-radius: 7px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.widget--over-banner {
  margin-top: -180px;
}

.widget__title {
  border-bottom: 2px solid rgba(19, 147, 246, .2);
  margin: 14px 10%;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.dialog {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: vertical;
     -moz-box-orient: vertical;
  -webkit-box-pack: center;
     -moz-box-pack: center;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.dialog__quote {
  -webkit-align-items: center;
          align-items: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-align: center;
     -moz-box-align: center;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  -webkit-box-pack: center;
     -moz-box-pack: center;
  display: -webkit-box;
  display:    -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  font-style: italic;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 30px;
  position: relative;
}

.dialog__quote::after {
  border-bottom: 15px solid #eff4fa;
  border-left: 15px solid #eff4fa;
  border-right: 15px solid #eff4fa;
  border-top: 15px solid #fff;
  bottom: -29px;
  content: '';
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.dialog__user {
  -webkit-box-pack: center;
     -moz-box-pack: center;
  display: -webkit-flex;
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-box;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: left;
}

.dialog__user-photo {
  margin-right: 10px;
}

.dialog__user-name {
  font-weight: bold;
  line-height: 15px;
  padding-top: 4px;
}

.dialog__user-location {
  font-size: 12px;
  line-height: 15px;
}

.form__container {
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
}

.form__field {
  display: block;
}

.form__field + .form__field {
  margin-top: 16px;
}

.form__input {
  background-color: #eff4fa;
  border: 1px solid rgba(19, 147, 246, .5);
  border-radius: 6px;
  display: block;
  font-size: 14px;
  padding: 13px;
  -webkit-transition: box-shadow .18s;
          transition: box-shadow .18s;
}

.form__field--fluid .form__input {
  width: 100%;
}

.form__input:hover,
.form__input:focus {
  box-shadow: 0 0 1px 1px rgba(18, 114, 213, .5);
  outline: none;
}

.form__input--invalid {
  border-color: #b24141;
}

.form__input--invalid:hover,
.form__input--invalid:focus {
  box-shadow: 0 0 1px 1px rgba(109, 9, 9, .5);
}

.form__text {
  height: auto;
  min-height: 80px;
}

.form__label {
  color: rgba(51, 51, 51, .9);
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form__label-link {
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}

.form__description {
  color: rgba(51, 51, 51, .5);
  font-size: 12px;
}

.form__description.form__field {
  margin-top: 5px;
}

.form input {
  color: #333;
  padding: 13px 11px;
}

.form select {
  height: 45px;
}

.form__check {
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}

.form__check + .form__check {
  margin-top: 16px;
}

.form__check input {
  position: relative;
  z-index: 2;
}

.form__check > input {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.form__check > input:checked ~ label::before {
  background-color: #1393f6;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  content: '\2713';
}

.form__check > input:focus ~ label::before {
  box-shadow: inset 0 0 1px 1px rgba(19, 147, 246, .5);
}

.form__check label {
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
  color: rgba(51, 51, 51, .6);
  display: -webkit-box;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  display:         flex;
  -ms-flex-align: center;
  font-size: 14px;
  margin-left: 11px;
}

.form__check label::before {
  background-color: #eff4fa;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(83, 110, 123, .3);
  content: '';
  height: 18px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 18px;
}

.form__radio {
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}

.form__radio + .form__radio {
  margin-top: 16px;
}

.form__radio input {
  position: relative;
  z-index: 2;
}

.form__radio > input {
  height: 100%;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.form__radio > input:checked ~ label::before {
  background-color: #fff;
  background-image:         radial-gradient(circle, transparent 18%, #1393f6 21%);
  background-image: -webkit-radial-gradient(circle, transparent 18%, #1393f6 21%);
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: none;
  color: #fff;
}

.form__radio > input:focus ~ label::before {
  box-shadow: 0 0 1px 1px rgba(19, 147, 246, .5);
}

.form__radio label {
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
  color: rgba(51, 51, 51, .6);
  display: -webkit-box;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  display:         flex;
  -ms-flex-align: center;
  font-size: 14px;
  margin-left: 11px;
}

.form__radio label::before {
  background-color: #eff4fa;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(83, 110, 123, .3);
  content: '';
  height: 18px;
  left: 0;
  position: absolute;
  width: 18px;
}

.form__message {
  display: inline-block;
  font-size: 12px;
}

.form__message:empty {
  display: none;
}

.form__message--invalid {
  color: #b24141;
}

.form__steps {
  -webkit-align-items: center;
          align-items: center;
  background-color: #e7e7e7;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-box-align: center;
     -moz-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  box-shadow: inset 0 1px 0 0 rgba(51, 51, 51, .05);
  color: rgba(83, 110, 123, .5);
  display: -webkit-box;
  display:    -moz-box;
  display:    -moz-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display:         flex;
  -ms-flex-align: center;
  -webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
  -webkit-flex-wrap: nowrap;
     -moz-flex-wrap: nowrap;
      -ms-flex-wrap: none;
          flex-wrap: nowrap;
  font-size: 12px;
  font-weight: 400;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  margin: 0 auto;
  width: 100%;
}

.form__steps-item {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
  padding: 14px;
  text-align: center;
}

.form__steps-item--active {
  background-color: #fff;
  color: #536e7b;
}

.form__alert-message {
  display: inline-block;
}

.form__alert-message [class*='-title'] {
  color: #1393f6;
}

.form__alert-message small {
  color: rgba(51, 51, 51, .6);
  font-size: 14px;
  font-style: normal;
}

.price-tag {
  text-align: center;
}

.price-tag__label,
.price-tag__value,
.price-tag__description {
  display: block;
  width: 100%;
}

.price-tag__label {
  color: rgba(51, 51, 51, .75);
  font-size: 14px;
  font-style: italic;
}

.price-tag__value {
  font-size: 18px;
  font-style: italic;
}

.price-tag__description {
  color: rgba(51, 51, 51, .5);
  font-size: 12px;
  margin-top: 8px;
}

.price-variation {
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
     -moz-box-orient: horizontal;
  display: -webkit-box;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  display:         flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

.price-variation__item {
  border-top: 1px solid #e7e7e7;
  -webkit-box-direction: normal;
     -moz-box-direction: normal;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  -webkit-box-orient: vertical;
     -moz-box-orient: vertical;
  display: -webkit-box;
  display:         flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display:    -moz-box;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 16px;
  padding-top: 16px;
  width: 50%;
}

.price-variation__item:first-child {
  border-top: 0;
}

.price-variation__item[class*='col-'] {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.price-variation__item--stacked {
  -webkit-box-flex: 100vw;
     -moz-box-flex: 100vw;
  -webkit-flex: 100vw;
      -ms-flex: 100vw;
          flex: 100vw;
}

.media {
  display:         flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display: -webkit-flex;
  display: -webkit-box;
}

.media__image--mini {
  max-height: 175px;
}

.media__title {
  color: #536e7b;
}

.media__description {
  display: inline-table;
}

.media__content {
  color: rgba(0, 0, 0, .6);
}

.container {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display:         flex;
  display:    -moz-flex;
  -webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25%;
  padding-right: 1.25%;
  width: 100%;
}

.no-flexbox .container::before,
.no-flexbox .container::after {
  content: '';
  display: table;
}

.no-flexbox .container::after {
  clear: both;
}

.no-flexbox .container [class*='col-'] {
  float: left;
}

.container--fluid {
  max-width: inherit;
  width: 100%;
}

.container--middle-items {
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-align: center;
     -moz-box-align: center;
  -ms-flex-align: center;
}

[class*='col-'] {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:    -moz-box;
  display:         flex;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
     -moz-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 100%;
}

[class*='col-'].col-centered {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 420px;
}

[class*='col-small-'] {
  margin-left: 1.25%;
  margin-right: 1.25%;
}

.col-small-1 {
  width: 5.83333%;
}

.col-push-small-1 {
  margin-left: 9.58333%;
}

.col-offset-small-1 {
  left: 8.33333%;
}

.col-small-2 {
  width: 14.16667%;
}

.col-push-small-2 {
  margin-left: 17.91667%;
}

.col-offset-small-2 {
  left: 16.66667%;
}

.col-small-3 {
  width: 22.5%;
}

.col-push-small-3 {
  margin-left: 26.25%;
}

.col-offset-small-3 {
  left: 25%;
}

.col-small-4 {
  width: 30.83333%;
}

.col-push-small-4 {
  margin-left: 34.58333%;
}

.col-offset-small-4 {
  left: 33.33333%;
}

.col-small-5 {
  width: 39.16667%;
}

.col-push-small-5 {
  margin-left: 42.91667%;
}

.col-offset-small-5 {
  left: 41.66667%;
}

.col-small-6 {
  width: 47.5%;
}

.col-push-small-6 {
  margin-left: 51.25%;
}

.col-offset-small-6 {
  left: 50%;
}

.col-small-7 {
  width: 55.83333%;
}

.col-push-small-7 {
  margin-left: 59.58333%;
}

.col-offset-small-7 {
  left: 58.33333%;
}

.col-small-8 {
  width: 64.16667%;
}

.col-push-small-8 {
  margin-left: 67.91667%;
}

.col-offset-small-8 {
  left: 66.66667%;
}

.col-small-9 {
  width: 72.5%;
}

.col-push-small-9 {
  margin-left: 76.25%;
}

.col-offset-small-9 {
  left: 75%;
}

.col-small-10 {
  width: 80.83333%;
}

.col-push-small-10 {
  margin-left: 84.58333%;
}

.col-offset-small-10 {
  left: 83.33333%;
}

.col-small-11 {
  width: 89.16667%;
}

.col-push-small-11 {
  margin-left: 92.91667%;
}

.col-offset-small-11 {
  left: 91.66667%;
}

.col-small-12 {
  width: 97.5%;
}

.col-push-small-12 {
  margin-left: 101.25%;
}

.col-offset-small-12 {
  left: 100%;
}

.space-section-small {
  margin-top: 60px;
}

.space-section-medium {
  margin-top: 72px;
}

.space-section-large {
  margin-top: 80px;
}

.space-box-small {
  margin-top: 24px;
}

.space-box-medium {
  margin-top: 36px;
}

.space-box-large {
  margin-top: 48px;
}

.space-element-small {
  margin-top: 8px;
}

.space-element-medium {
  margin-top: 12px;
}

.space-element-large {
  margin-top: 16px;
}

@media screen and (min-width: 420px) {
  h1,
  .page-title {
    font-size: 36px;
  }

  h1 small,
  .page-title small {
    font-size: 18px;
  }

  h2,
  .section-title {
    font-size: 24px;
  }

  h2 small,
  .section-title small {
    font-size: 16px;
  }

  h3,
  .container-title {
    font-size: 18px;
  }

  .page-banner {
    height: 576px;
  }

  .menu {
    -webkit-box-direction: normal;
       -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
       -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .container {
    max-width: 768px;
  }

  [class*='col-medium-'] {
    margin-left: 1.25%;
    margin-right: 1.25%;
  }

  .col-medium-1 {
    width: 5.83333%;
  }

  .col-push-medium-1 {
    margin-left: 9.58333%;
  }

  .col-offset-medium-1 {
    left: 8.33333%;
  }

  .col-medium-2 {
    width: 14.16667%;
  }

  .col-push-medium-2 {
    margin-left: 17.91667%;
  }

  .col-offset-medium-2 {
    left: 16.66667%;
  }

  .col-medium-3 {
    width: 22.5%;
  }

  .col-push-medium-3 {
    margin-left: 26.25%;
  }

  .col-offset-medium-3 {
    left: 25%;
  }

  .col-medium-4 {
    width: 30.83333%;
  }

  .col-push-medium-4 {
    margin-left: 34.58333%;
  }

  .col-offset-medium-4 {
    left: 33.33333%;
  }

  .col-medium-5 {
    width: 39.16667%;
  }

  .col-push-medium-5 {
    margin-left: 42.91667%;
  }

  .col-offset-medium-5 {
    left: 41.66667%;
  }

  .col-medium-6 {
    width: 47.5%;
  }

  .col-push-medium-6 {
    margin-left: 51.25%;
  }

  .col-offset-medium-6 {
    left: 50%;
  }

  .col-medium-7 {
    width: 55.83333%;
  }

  .col-push-medium-7 {
    margin-left: 59.58333%;
  }

  .col-offset-medium-7 {
    left: 58.33333%;
  }

  .col-medium-8 {
    width: 64.16667%;
  }

  .col-push-medium-8 {
    margin-left: 67.91667%;
  }

  .col-offset-medium-8 {
    left: 66.66667%;
  }

  .col-medium-9 {
    width: 72.5%;
  }

  .col-push-medium-9 {
    margin-left: 76.25%;
  }

  .col-offset-medium-9 {
    left: 75%;
  }

  .col-medium-10 {
    width: 80.83333%;
  }

  .col-push-medium-10 {
    margin-left: 84.58333%;
  }

  .col-offset-medium-10 {
    left: 83.33333%;
  }

  .col-medium-11 {
    width: 89.16667%;
  }

  .col-push-medium-11 {
    margin-left: 92.91667%;
  }

  .col-offset-medium-11 {
    left: 91.66667%;
  }

  .col-medium-12 {
    width: 97.5%;
  }

  .col-push-medium-12 {
    margin-left: 101.25%;
  }

  .col-offset-medium-12 {
    left: 100%;
  }
}

@media screen and (min-width: 420px) and (max-width: 768px) {
  .hide-medium {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sticky body {
    margin-bottom: 183px;
  }

  .page-banner--over .page-banner__content {
    padding-bottom: 180px;
  }

  .page-banner + .page-banner-over {
    margin-top: -180px;
  }

  .footer {
    max-height: 183px;
  }

  .footer__company-disclaimer {
    text-align: inherit;
  }

  .footer__brand {
    -webkit-box-pack: end;
       -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    margin-top: inherit;
  }

  .no-flexbox .footer__brand {
    text-align: right;
  }

  .footer__social-bar {
    -webkit-box-pack: inherit;
       -moz-box-pack: inherit;
    -ms-flex-pack: inherit;
    -webkit-justify-content: inherit;
            justify-content: inherit;
  }

  .no-flexbox .footer__social-bar {
    margin: 0;
  }

  .footer__link,
  .footer__phone {
    padding: inherit;
  }

  .container {
    max-width: 960px;
  }

  [class*='col-normal-'] {
    margin-left: 1.25%;
    margin-right: 1.25%;
  }

  .col-normal-1 {
    width: 5.83333%;
  }

  .col-push-normal-1 {
    margin-left: 9.58333%;
  }

  .col-offset-normal-1 {
    left: 8.33333%;
  }

  .col-normal-2 {
    width: 14.16667%;
  }

  .col-push-normal-2 {
    margin-left: 17.91667%;
  }

  .col-offset-normal-2 {
    left: 16.66667%;
  }

  .col-normal-3 {
    width: 22.5%;
  }

  .col-push-normal-3 {
    margin-left: 26.25%;
  }

  .col-offset-normal-3 {
    left: 25%;
  }

  .col-normal-4 {
    width: 30.83333%;
  }

  .col-push-normal-4 {
    margin-left: 34.58333%;
  }

  .col-offset-normal-4 {
    left: 33.33333%;
  }

  .col-normal-5 {
    width: 39.16667%;
  }

  .col-push-normal-5 {
    margin-left: 42.91667%;
  }

  .col-offset-normal-5 {
    left: 41.66667%;
  }

  .col-normal-6 {
    width: 47.5%;
  }

  .col-push-normal-6 {
    margin-left: 51.25%;
  }

  .col-offset-normal-6 {
    left: 50%;
  }

  .col-normal-7 {
    width: 55.83333%;
  }

  .col-push-normal-7 {
    margin-left: 59.58333%;
  }

  .col-offset-normal-7 {
    left: 58.33333%;
  }

  .col-normal-8 {
    width: 64.16667%;
  }

  .col-push-normal-8 {
    margin-left: 67.91667%;
  }

  .col-offset-normal-8 {
    left: 66.66667%;
  }

  .col-normal-9 {
    width: 72.5%;
  }

  .col-push-normal-9 {
    margin-left: 76.25%;
  }

  .col-offset-normal-9 {
    left: 75%;
  }

  .col-normal-10 {
    width: 80.83333%;
  }

  .col-push-normal-10 {
    margin-left: 84.58333%;
  }

  .col-offset-normal-10 {
    left: 83.33333%;
  }

  .col-normal-11 {
    width: 89.16667%;
  }

  .col-push-normal-11 {
    margin-left: 92.91667%;
  }

  .col-offset-normal-11 {
    left: 91.66667%;
  }

  .col-normal-12 {
    width: 97.5%;
  }

  .col-push-normal-12 {
    margin-left: 101.25%;
  }

  .col-offset-normal-12 {
    left: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .hide-normal {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .container {
    max-width: 1200px;
  }

  [class*='col-large-'] {
    margin-left: 1.25%;
    margin-right: 1.25%;
  }

  .col-large-1 {
    width: 5.83333%;
  }

  .col-push-large-1 {
    margin-left: 9.58333%;
  }

  .col-offset-large-1 {
    left: 8.33333%;
  }

  .col-large-2 {
    width: 14.16667%;
  }

  .col-push-large-2 {
    margin-left: 17.91667%;
  }

  .col-offset-large-2 {
    left: 16.66667%;
  }

  .col-large-3 {
    width: 22.5%;
  }

  .col-push-large-3 {
    margin-left: 26.25%;
  }

  .col-offset-large-3 {
    left: 25%;
  }

  .col-large-4 {
    width: 30.83333%;
  }

  .col-push-large-4 {
    margin-left: 34.58333%;
  }

  .col-offset-large-4 {
    left: 33.33333%;
  }

  .col-large-5 {
    width: 39.16667%;
  }

  .col-push-large-5 {
    margin-left: 42.91667%;
  }

  .col-offset-large-5 {
    left: 41.66667%;
  }

  .col-large-6 {
    width: 47.5%;
  }

  .col-push-large-6 {
    margin-left: 51.25%;
  }

  .col-offset-large-6 {
    left: 50%;
  }

  .col-large-7 {
    width: 55.83333%;
  }

  .col-push-large-7 {
    margin-left: 59.58333%;
  }

  .col-offset-large-7 {
    left: 58.33333%;
  }

  .col-large-8 {
    width: 64.16667%;
  }

  .col-push-large-8 {
    margin-left: 67.91667%;
  }

  .col-offset-large-8 {
    left: 66.66667%;
  }

  .col-large-9 {
    width: 72.5%;
  }

  .col-push-large-9 {
    margin-left: 76.25%;
  }

  .col-offset-large-9 {
    left: 75%;
  }

  .col-large-10 {
    width: 80.83333%;
  }

  .col-push-large-10 {
    margin-left: 84.58333%;
  }

  .col-offset-large-10 {
    left: 83.33333%;
  }

  .col-large-11 {
    width: 89.16667%;
  }

  .col-push-large-11 {
    margin-left: 92.91667%;
  }

  .col-offset-large-11 {
    left: 91.66667%;
  }

  .col-large-12 {
    width: 97.5%;
  }

  .col-push-large-12 {
    margin-left: 101.25%;
  }

  .col-offset-large-12 {
    left: 100%;
  }

  .hide-large {
    display: none;
  }
}

@media screen and (max-width: 420px) {
  .hide-small {
    display: none;
  }
}
