/* Сбрасываем значения по умолчанию для элементов | Let's default this puppy out
-------------------------------------------------------------------------------*/
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
header,
section,
footer {
  clear: both;
}
/* Всегда показывать полосу прокрутки (чтобы сайт не прыгал, когда на других страницах нет данной полосы) */
html {
  overflow-y: scroll;
}
/* Добавляем буллеты к UL и цифры к OL, т.к. в контенте могут использоваться стандартные списки */
ul {
  list-style: outside disc;
  margin: 15px 0 15px 30px;
}
ol {
  list-style: outside decimal;
  margin: 15px 0 15px 30px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
td img {
  vertical-align: top;
}
/* Сбрасываем отступы у элементов форм */
button,
input,
select,
textarea {
  margin: 0;
  outline: none;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input,
select {
  vertical-align: middle;
}
input[type=radio],
input[type=checkbox] {
  margin: 1px 4px 4px 0;
}
input[type=text],
input[type=password] {
  border-radius: 0;
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}
/* Решение проблемы с обрезанием стилизованных кнопок в IE */
button,
input[type=submit] {
  width: auto;
  overflow: visible;
}
/* Курсор-указатель на кликабельных элементах */
input[type=button],
input[type=submit],
button {
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
}
/* Стандартизируем моноширные элементы */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Nunito Sans Regular'), local('NunitoSans-Regular'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe0qMImSLYBIv1o4X1M8cfe6.ttf) format('truetype');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Nunito Sans ExtraBold'), local('NunitoSans-ExtraBold'), url(https://fonts.gstatic.com/s/nunitosans/v6/pe03MImSLYBIv1o4X1M8cc8aBf5q.ttf) format('truetype');
}
html {
  min-width: auto;
  width: auto;
  height: 100%;
  --foregroundPrimary: #1C2029;
  --foregroundSecondary: #898B8F;
  --foregroundTertiary: #B4B5B8;
  --foregroundContrast: #FFFFFF;
  --backgroundPrimary: #FFFFFF;
  --backgroundSecondary: #F5F5F5;
  --backgroundSecondaryHover: #EBEBEB;
  --overlay: rgba(0, 0, 0, 0.48);
  --accentPrimary: #FF3355;
  --accentPrimaryHover: #FF4060;
  --accentPrimaryActive: #E52243;
  --accentPrimaryShadow: rgba(255, 51, 85, 0.32);
  --accentSecondary: #30C2F2;
}
body {
  font: normal normal 14px/20px 'Nunito Sans', sans-serif;
  background: var(--backgroundSecondary);
  color: var(--foregroundPrimary);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  min-width: 320px;
  min-height: initial;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
body input,
body textarea,
body button {
  font-family: 'Nunito Sans', sans-serif;
}
body *,
body *:before,
body *:after {
  box-sizing: border-box;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.container {
  margin: 0 auto;
  padding: 0 96px;
  width: 100%;
  height: auto;
  min-width: 320px;
  min-height: initial;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}
@media (min-width: 1393px) {
  .container {
    width: 1392px;
    height: auto;
  }
}
.title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .title {
    font-size: 28px;
    line-height: 35px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .title {
    font-size: 36px;
    line-height: 45px;
  }
}
.title.is-big {
  font-size: 64px;
  line-height: 74px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .title.is-big {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .title.is-big {
    font-size: 48px;
    line-height: 56px;
  }
}
.text {
  font-size: 18px;
  line-height: 31px;
}
@media (max-width: 480px) {
  .text {
    font-size: 16px;
    line-height: 26px;
  }
}
.header {
  padding: 24px 0;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }
}
.header--box {
  justify-content: space-between;
  margin: 0 -16px;
  display: flex;
}
@media (max-width: 480px) {
  .header--box {
    margin: 0 -12px;
  }
}
.header--logo {
  padding: 8px 16px;
  width: auto;
  height: 48px;
  display: flex;
}
.header--logo-shape {
  background: url(../img/logo-shape.svg) no-repeat;
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  color: var(--foregroundContrast);
  width: 32px;
  height: 32px;
  display: flex;
  font-size: 18px;
  line-height: 25px;
  font-weight: 800;
}
.header--logo-name {
  padding: 0 0 0 16px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .header--logo-name {
    padding: 0 0 0 12px;
    font-size: 16px;
    line-height: 32px;
  }
}
.header--nav {
  display: flex;
}
.header--item {
  text-decoration: none;
  padding: 8px 16px;
  color: var(--foregroundPrimary);
  transition: 200ms color ease;
  font-size: 18px;
  line-height: 32px;
}
.header--item:hover {
  color: var(--foregroundSecondary);
}
@media (max-width: 480px) {
  .header--item {
    padding: 8px 12px;
    font-size: 16px;
    line-height: 32px;
  }
}
.section {
  display: flex;
}
@media (max-width: 480px) {
  .section {
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .section {
    max-width: 560px;
    max-height: initial;
    display: block;
  }
}
.section--box {
  width: 60%;
  padding: 0 64px 0 0;
}
@media (max-width: 1024px) {
  .section--box {
    width: auto;
    padding: 0 0 16px;
  }
}
.section--side {
  width: 40%;
}
@media (max-width: 1024px) {
  .section--side {
    width: auto;
  }
}
.section--tip {
  color: var(--accentPrimary);
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .section--tip {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .section--tip {
    margin: 0 0 8px;
  }
}
.button {
  background: var(--accentPrimary);
  border-radius: 16px;
  text-decoration: none;
  color: var(--foregroundContrast);
  text-align: center;
  padding: 16px 32px;
  transition: 200ms all ease;
  border: none;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}
.button:not([disabled]):hover {
  background: var(--accentPrimaryHover);
  box-shadow: 0px 4px 24px var(--accentPrimaryShadow);
}
.button:not([disabled]):active {
  background: var(--accentPrimaryActive);
  box-shadow: none;
}
@media (max-width: 480px) {
  .button {
    padding: 12px 32px;
    font-size: 20px;
    line-height: 32px;
  }
}
.button.is-small {
  padding: 12px 32px;
  font-size: 18px;
  line-height: 32px;
}
.button[disabled] {
  background: var(--backgroundSecondary);
  color: var(--foregroundTertiary);
  cursor: default;
}
.category {
  background: var(--backgroundSecondary);
  border-radius: 24px;
  padding: 32px;
}
@media (max-width: 480px) {
  .category {
    padding: 24px;
  }
}
.category--avatars {
  margin: -4px 0 12px -4px;
  display: flex;
}
@media (max-width: 480px) {
  .category--avatars {
    margin: -2px 0 14px -2px;
  }
}
.category--avatars div {
  border: 4px solid var(--backgroundSecondary);
  border-radius: 28px;
  margin: 0 -12px 0 0;
  background: var(--backgroundSecondary);
  overflow: hidden;
  width: 56px;
  height: 56px;
}
@media (max-width: 480px) {
  .category--avatars div {
    margin: 0 -8px 0 0;
    border-radius: 18px;
    border-width: 2px;
    width: 36px;
    height: 36px;
  }
}
.category--avatars div:nth-child(1) {
  z-index: 9;
}
.category--avatars div:nth-child(2) {
  z-index: 8;
}
.category--avatars div:nth-child(3) {
  z-index: 7;
}
.category--avatars div:nth-child(4) {
  z-index: 6;
}
.category--avatars div:nth-child(5) {
  z-index: 5;
}
.category--avatars div:nth-child(6) {
  z-index: 4;
}
.category--avatars div:nth-child(7) {
  z-index: 3;
}
.category--avatars div:nth-child(8) {
  z-index: 2;
}
.category--avatars div:nth-child(9) {
  z-index: 1;
}
.category--avatars div img {
  display: block;
  width: 100%;
  height: 100%;
}
.category--title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .category--title {
    font-size: 20px;
    line-height: 28px;
  }
}
.category--text {
  color: var(--accentPrimary);
  font-size: 18px;
  line-height: 31px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .category--text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature {
    padding: 0 0 0 40%;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}
.feature--preview {
  margin: 0 auto 48px;
  max-width: 320px;
  max-height: initial;
}
@media (max-width: 480px) {
  .feature--preview {
    margin-bottom: 24px;
    max-width: 240px;
    max-height: initial;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature--preview {
    margin: 0;
    width: 40%;
    height: auto;
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
  }
}
.feature--preview-in {
  margin: 0 auto;
  padding: 100% 0 0;
  max-width: 320px;
  max-height: initial;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
.feature--preview img {
  display: block;
  position: absolute;
  top: -8%;
  right: auto;
  bottom: auto;
  left: -8%;
  width: 116%;
  height: 116%;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature--box {
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 60px;
    display: flex;
    width: auto;
    height: 268px;
  }
}
.feature--title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .feature--title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature--title {
    text-align: initial;
  }
}
.feature--text {
  text-align: center;
  font-size: 18px;
  line-height: 31px;
}
@media (max-width: 480px) {
  .feature--text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature--text {
    text-align: initial;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature.is-alt {
    padding: 0 40% 0 0;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .feature.is-alt .feature--preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
  }
  .feature.is-alt .feature--box {
    padding: 0 60px 0 0;
  }
}
.card--avatar {
  margin: 0 auto 32px;
  border-radius: 80px;
  overflow: hidden;
  background: var(--backgroundSecondary);
  width: 160px;
  height: 160px;
}
@media (max-width: 480px) {
  .card--avatar {
    margin-bottom: 24px;
    border-radius: 64px;
    width: 128px;
    height: 128px;
  }
}
.card--avatar img {
  display: block;
  width: 100%;
  height: 100%;
}
.card--title {
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .card--title {
    font-size: 20px;
    line-height: 28px;
  }
}
.card--text {
  color: var(--accentPrimary);
  text-align: center;
  font-size: 18px;
  line-height: 31px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .card--text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .card.is-medium .card--avatar {
    border-radius: 58px;
    margin-bottom: 22px;
    width: 116px;
    height: 116px;
  }
  .card.is-medium .card--title {
    font-size: 18px;
    line-height: 25px;
  }
  .card.is-medium .card--text {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (min-width: 481px) {
  .card.is-small .card--avatar {
    border-radius: 64px;
    margin-bottom: 26px;
    width: 128px;
    height: 128px;
  }
  .card.is-small .card--title {
    font-size: 19px;
    line-height: 27px;
  }
  .card.is-small .card--text {
    font-size: 14px;
    line-height: 24px;
  }
  .card.is-medium .card--avatar {
    border-radius: 72px;
    margin-bottom: 29px;
    width: 144px;
    height: 144px;
  }
  .card.is-medium .card--title {
    font-size: 22px;
    line-height: 30px;
  }
  .card.is-medium .card--text {
    font-size: 16px;
    line-height: 28px;
  }
}
.modals {
  z-index: 2000;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modals--overlay {
  z-index: 1;
  background: var(--overlay);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.modals--close {
  background: var(--backgroundSecondary);
  transition: 200ms background ease;
  border-radius: 16px;
  position: absolute;
  top: 24px;
  right: 32px;
  bottom: auto;
  left: auto;
  width: 32px;
  height: 32px;
  display: block;
}
.modals--close:hover {
  background: var(--backgroundSecondaryHover);
}
.modals--item {
  z-index: 2;
  background: var(--backgroundPrimary);
  border-radius: 24px;
  padding: 24px 32px 32px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 384px;
  height: auto;
  display: none;
}
.modals--title {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}
.modals--emoji {
  margin: 0 auto 32px;
  background: url(../img/emoji.png) no-repeat;
  background-size: 100% 100%;
  width: 96px;
  height: 96px;
}
.modals--result {
  padding: 61px 0 53px;
}
.modals--result-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}
.modals--result-text {
  text-align: center;
  font-size: 18px;
  line-height: 31px;
}
.form--input {
  padding: 12px 16px;
  color: var(--foregroundPrimary);
  border: none;
  background: var(--backgroundSecondary);
  border-radius: 16px!important;
  margin: 0 0 16px;
  display: block;
  width: 100%;
  height: 56px;
  font-size: 18px;
  line-height: 32px;
}
.form--input::placeholder {
  color: var(--foregroundTertiary);
}
.form--submit {
  padding: 16px 0 0;
  justify-content: center;
  display: flex;
}
.footer {
  padding: 64px 0 128px;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}
@media (max-width: 480px) {
  .footer {
    padding: 48px 0 72px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer {
    padding: 64px 0 96px;
  }
}
.footer--box {
  display: flex;
}
@media (max-width: 1024px) {
  .footer--box {
    flex-wrap: wrap;
  }
}
.footer--info {
  flex-grow: 1;
  font-size: 18px;
  line-height: 31px;
}
@media (max-width: 480px) {
  .footer--info {
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer--info {
    padding: 0 0 48px;
    width: 100%;
    height: auto;
  }
}
.footer--nav {
  margin: 0 0 0 64px;
  width: 128px;
  height: auto;
}
@media (max-width: 480px) {
  .footer--nav {
    margin: 0;
    padding: 24px 24px 0 0;
    width: 50%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .footer--nav {
    margin: 0;
    padding: 0 64px 0 0;
    width: 33.33333333%;
    height: auto;
  }
}
.footer--title {
  font-size: 18px;
  line-height: 31px;
  font-weight: 800;
}
@media (max-width: 480px) {
  .footer--title {
    font-size: 16px;
    line-height: 26px;
  }
}
.footer--list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer--list li {
  margin: 8px 0 0;
}
.footer--list a {
  text-decoration: none;
  color: var(--foregroundPrimary);
  font-size: 18px;
  line-height: 31px;
}
@media (max-width: 480px) {
  .footer--list a {
    font-size: 16px;
    line-height: 26px;
  }
}
.footer--list a:hover,
.footer--list a:active {
  color: var(--foregroundSecondary);
}
.intro {
  padding: 64px 0 128px;
}
@media (max-width: 480px) {
  .intro {
    padding: 48px 0 72px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .intro {
    padding: 64px 0 96px;
  }
}
.intro--cards {
  margin: 128px 0 0;
  overflow: hidden;
  position: relative;
  width: auto;
  height: 385px;
}
@media (max-width: 480px) {
  .intro--cards {
    margin: 72px 0 0;
    width: auto;
    height: 303px;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .intro--cards {
    margin: 96px 0 0;
  }
}
.intro--card {
  background: var(--backgroundPrimary);
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  display: flex;
}
.intro--card:nth-child(1) {
  transform: translate(-762px, -50%);
  border-radius: 19px;
  width: 230px;
  height: 308px;
}
@media (max-width: 480px) {
  .intro--card:nth-child(1) {
    display: none;
  }
}
.intro--card:nth-child(2) {
  transform: translate(-468px, -50%);
  border-radius: 21px;
  width: 260px;
  height: 348px;
}
@media (max-width: 480px) {
  .intro--card:nth-child(2) {
    transform: translate(-338px, -50%);
    width: 202px;
    height: 274px;
  }
}
.intro--card:nth-child(3) {
  transform: translate(-144px, -50%);
  border-radius: 24px;
  width: 288px;
  height: 385px;
}
@media (max-width: 480px) {
  .intro--card:nth-child(3) {
    transform: translate(-112px, -50%);
    width: 224px;
    height: 303px;
  }
}
.intro--card:nth-child(4) {
  transform: translate(208px, -50%);
  border-radius: 21px;
  width: 260px;
  height: 348px;
}
@media (max-width: 480px) {
  .intro--card:nth-child(4) {
    transform: translate(136px, -50%);
    width: 202px;
    height: 274px;
  }
}
.intro--card:nth-child(5) {
  transform: translate(532px, -50%);
  border-radius: 19px;
  width: 230px;
  height: 308px;
}
@media (max-width: 480px) {
  .intro--card:nth-child(5) {
    display: none;
  }
}
.infl {
  padding: 128px 0;
  background: var(--backgroundPrimary);
  border-radius: 24px;
}
@media (max-width: 480px) {
  .infl {
    padding: 72px 0;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .infl {
    padding: 96px 0;
  }
}
.infl--items {
  margin: 128px -32px;
  display: flex;
}
@media (max-width: 480px) {
  .infl--items {
    margin: 72px 0 0;
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .infl--items {
    margin: 96px 0 32px;
    display: block;
  }
}
.infl--item {
  padding: 0 32px;
  width: calc(100% / 3);
}
@media (max-width: 480px) {
  .infl--item {
    padding: 0 24px 72px;
    width: auto;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .infl--item {
    width: auto;
    padding: 0 0 64px;
  }
}
.infl--button {
  justify-content: center;
  display: flex;
}
.brands {
  padding: 128px 0;
  background: var(--backgroundPrimary);
  margin: 16px 0 0;
  border-radius: 24px;
}
@media (max-width: 480px) {
  .brands {
    margin: 24px 0 0;
    padding: 72px 0;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .brands {
    padding: 96px 0;
  }
}
.brands--items {
  margin: 128px -32px 64px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
@media (max-width: 480px) {
  .brands--items {
    margin: 72px 0 48px;
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .brands--items {
    margin: 96px -24px 48px;
    justify-content: flex-start;
  }
}
.brands--item {
  padding: 0 32px 64px;
  width: calc(100% / 3);
}
@media (max-width: 480px) {
  .brands--item {
    padding: 0 0 24px;
    width: auto;
    max-width: 280px;
    max-height: initial;
  }
  .brands--item:nth-child(2n) {
    margin: 0 0 0 auto;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .brands--item {
    padding: 0 24px 48px;
    width: 46.5%;
  }
  .brands--item:nth-child(3) {
    margin-left: 7%;
  }
  .brands--item:nth-child(5) {
    display: none;
  }
}
.brands--button {
  justify-content: center;
  display: flex;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xs-ib,
.visible-sm-ib,
.visible-md-ib,
.visible-lg-ib {
  display: none;
}
@media (max-width: 480px) {
  .visible-xs {
    display: block;
  }
  .visible-xs-ib {
    display: inline-block;
    vertical-align: top;
  }
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 481px) and (max-width: 1024px) {
  .visible-sm {
    display: block;
  }
  .visible-sm-ib {
    display: inline-block;
    vertical-align: top;
  }
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 1025px) and (max-width: 1392px) {
  .visible-md {
    display: block;
  }
  .visible-md-ib {
    display: inline-block;
    vertical-align: top;
  }
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1393px) {
  .visible-lg {
    display: block;
  }
  .visible-lg-ib {
    display: inline-block;
    vertical-align: top;
  }
  .hidden-lg {
    display: none !important;
  }
}
