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%;
  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;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  font-size: 14px;
}
@media (max-width: 576px) {
  html {
    font-size: 10px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Lato";
  color: #5C5E75;
  background-color: initial !important;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  body {
    font-size: 1.6rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 15px;
  }
}
.header .nav-list-item {
  padding: 25px 0;
}

h1, h2, h3,
.h1, .h2, .h3 {
  font-family: inherit;
  color: inherit;
  font-weight: 700;
  text-align: center;
}

h1, .h1 {
  font-size: 3.42rem;
  margin: 1rem 0;
  color: #091020;
  line-height: 1.3;
}

h2, .h2 {
  font-size: 2.57rem;
  margin: 1.5rem 0;
  color: #091020;
}

h3, .h3 {
  font-size: 1.7rem;
  font-weight: 400;
}

.container {
  max-width: 1247px;
  width: 100%;
  margin: 0 auto;
}

/*header styles*/
.header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  margin-right: 20px;
}
@media (max-width: 576px) {
  .logo {
    justify-content: center;
  }
}
.logo svg {
  display: block;
}

.toggle-nav {
  display: none;
}

.nav-list {
  font-size: 0;
}

.nav-list-item {
  display: inline-block;
  position: relative;
}

.nav-list-link {
  padding: 0 25px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.nav-list-item:hover:before,
.nav-list-item.active:before {
  content: "";
  width: calc(100% - 50px);
  height: 4px;
  border-radius: 2px 2px 0 0;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, 10px);
}
@media (max-width: 992px) {
  .nav-list-item:hover:before,
.nav-list-item.active:before {
    background: #fff !important;
  }
}

.nav-list-link:hover {
  color: #216ED1;
}

@media (max-width: 1200px) {
  .toggle-nav {
    display: block;
    cursor: pointer;
  }

  .logo {
    margin-right: 0;
  }

  .header-nav {
    position: fixed;
    z-index: 1;
    background: #216ED1;
    width: 90%;
    max-width: 400px;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 100px 30px;
    transform: translateX(-110%);
    overflow-y: auto;
    transition: all 0.3s;
  }

  .nav-list-item {
    display: block;
  }

  .nav-list-link {
    font-size: 25px;
    color: #fff;
  }

  .nav-list-link:hover {
    color: #fff;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open.-fixed {
    position: fixed;
    left: 0;
    right: 0;
  }

  .menu-open:before {
    content: "";
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .menu-open .header-nav {
    transform: none;
  }

  .nav-list-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }

  .nav-list-close:before, .nav-list-close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 20px;
    width: 3px;
    background-color: #fff;
  }

  .nav-list-close:before {
    transform: rotate(45deg);
  }

  .nav-list-close:after {
    transform: rotate(-45deg);
  }

  .toggle-nav span {
    display: block;
    height: 3px;
    background: #216ED1;
    margin-bottom: 3px;
    width: 21px;
  }
}
@media (max-width: 576px) {
  .mobile-hidden {
    display: none;
  }

  .nav-list-link {
    font-size: 20px;
  }
}
.row {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.row-center {
  justify-content: center;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.card {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card + .card {
  margin-top: 1.8rem;
}
.card.-big {
  border: 1px solid rgba(9, 16, 32, 0.1);
}
@media (max-width: 767px) {
  .card.-big {
    margin-bottom: 1.8rem;
  }
}
.card.-big .badge {
  top: 1.8rem;
  right: 1.8rem;
}
.card.-big .card-image {
  height: 485px;
}
@media (max-width: 576px) {
  .card.-big .card-image {
    height: auto;
  }
}
@media (max-width: 767px) {
  .card.-big .card-more {
    text-align: center;
  }
}
.card.-big .card-content {
  padding: 2.5rem;
}
@media (max-width: 576px) {
  .card.-big .card-content {
    padding: 2rem;
  }
}
.card.-small {
  border: 1px solid rgba(9, 16, 32, 0.1);
  max-width: 475px;
  margin-left: auto;
  margin-right: auto;
}
.card.-small .badge {
  top: 0.8rem;
  right: 0.8rem;
}
.card.-small .card-image {
  height: 170px;
}
.card.-small .card-content {
  padding: 0.8rem 1.7rem 1.7rem;
}
.card.-small .card-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .card.-small .card-title {
    font-size: 1.8rem;
  }
}
.card.-small .card-text {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card.-small .card-more {
  text-align: center;
}
.card.-simple {
  box-shadow: none;
  border-radius: 0;
}
.card.-simple .card-title {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 700;
}
.card.-simple .card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}
.card.-simple .card-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.card.-simple:hover .card-image.-suv:before {
  background: rgba(209, 33, 33, 0.7);
}
.card.-simple:hover .card-image.-health:before {
  background: rgba(33, 209, 146, 0.7);
}
.card.-simple:hover .card-image.-beauty-fitness:before {
  background: rgba(33, 110, 209, 0.7);
}
.card.-simple:hover .card-image.-home-garden:before {
  background: rgba(205, 209, 33, 0.7);
}
.card.-simple:hover .card-image.-senior-living:before {
  background: rgba(100, 33, 209, 0.7);
}
.card.-simple:hover .card-image.-electronics:before, .card.-simple:hover .card-image.-education:before, .card.-simple:hover .card-image.-services:before {
  background: rgba(209, 109, 33, 0.7);
}
.card.-horizontal {
  flex-direction: row;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 767px) {
  .card.-horizontal {
    flex-direction: column;
  }
}
.card.-horizontal .card-image {
  flex: 0 0 50%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.card.-horizontal .card-image .badge {
  top: 1.6rem;
  right: 1.6rem;
}
.card.-horizontal .card-content {
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .card.-horizontal .card-content {
    padding: 2rem;
  }
}
.card.-horizontal .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card.-horizontal .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card-image {
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-image.-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s;
}
.card-image.-suv:before {
  background: rgba(209, 33, 33, 0.4);
}
.card-image.-health:before {
  background: rgba(33, 209, 146, 0.4);
}
.card-image.-beauty-fitness:before {
  background: rgba(33, 110, 209, 0.4);
}
.card-image.-home-garden:before {
  background: rgba(205, 209, 33, 0.4);
}
.card-image.-senior-living:before {
  background: rgba(100, 33, 209, 0.4);
}
.card-image.-electronics:before, .card-image.-education:before, .card-image.-services:before {
  background: rgba(187, 83, 26, 0.4);
}
.card-title {
  font-weight: 700;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #091020;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card-title:hover {
  color: #216ED1;
  text-decoration: underline;
}
.card-content {
  background: #fff;
}
.card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card-more {
  color: #216ED1;
  display: block;
  padding-top: 1rem;
  transition: all 0.3s;
}
.card-more:hover {
  color: #216ED1;
  text-decoration: underline;
}
.card .badge {
  position: absolute;
  border-radius: 45px;
  color: #fff;
  padding: 6px 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 1;
}
.card .badge.-senior-living {
  background: #6421D1;
}
.card .badge.-beauty-fitness {
  background: #216ED1;
}
.card .badge.-suv {
  background: #C93030;
}
.card .badge.-home-garden {
  background: #CDD121;
}
.card .badge.-health {
  background: #21D192;
}
.card .badge.-electronics, .card .badge.-education, .card .badge.-services {
  background: #e7864f;
}

.footer {
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #F4F4F4;
}
.footer-block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-block {
    flex-direction: column;
    text-align: center;
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-col-nav {
  text-align: right;
}
@media (max-width: 767px) {
  .footer-col-nav {
    text-align: center;
  }
}
.footer-col-logo {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .footer-col-logo {
    margin-bottom: 10px;
  }
}
.footer-col-logo .logo {
  margin-bottom: 10px;
}
.footer .nav-list-item {
  display: inline-block;
}
.footer .nav-list-item:last-child .nav-list-link {
  padding-right: 0;
}
.footer .nav-list-link {
  font-size: 16px;
  color: #5C5E75;
}

.section {
  padding: 1px 2.7rem 2rem;
  border-left: solid 1px #F4F4F4;
  border-right: solid 1px #F4F4F4;
}
@media (max-width: 576px) {
  .section {
    padding: 1px 2rem 2rem;
  }
}
.section:first-child {
  margin-top: 7rem;
}

.col-20 {
  flex: 0 0 20%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .col-20 {
    flex-basis: 33.333%;
  }
}

.copyright {
  font-size: 12px;
}

.big-banner {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.big-banner.-wide .big-banner-item {
  width: 25%;
}
@media (max-width: 992px) {
  .big-banner.-wide .big-banner-item {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .big-banner.-wide .big-banner-item {
    width: 100%;
  }
}
.big-banner-item {
  width: 33.333%;
  padding: 2rem 1rem 2rem;
  transition: all 0.3s;
}
@media (max-width: 576px) {
  .big-banner-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.big-banner-item:hover {
  background: #eaeaea !important;
}
.big-banner-item:hover .big-banner-title {
  color: black;
}
.big-banner-item:nth-child(6n+1) {
  background-color: #609e9e;
}
.big-banner-item:nth-child(6n+2) {
  background-color: #589090;
}
.big-banner-item:nth-child(6n+3) {
  background-color: #4f8282;
}
.big-banner-item:nth-child(6n+4) {
  background-color: #467373;
}
.big-banner-item:nth-child(6n+5) {
  background-color: #3e6565;
}
.big-banner-item:nth-child(6n+6) {
  background-color: #355757;
}
.big-banner-image {
  display: block;
  width: 125px;
  height: 125px;
  margin: 0 auto 1.5rem;
  border-radius: 0.9rem;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .big-banner-image {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 576px) {
  .big-banner-image {
    border-radius: 50%;
    width: 62px;
    height: 62px;
    min-width: 62px;
    margin-right: 2rem;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.big-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-banner-title {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .big-banner-title {
    font-size: 2rem;
    text-align: left;
  }
}

ul.list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.category-page.-suv .dynamic-color, .category-page.-auto .dynamic-color {
  fill: #C93030;
}
.category-page.-suv .nav-list-item.active:before,
.category-page.-suv .toggle-nav span, .category-page.-auto .nav-list-item.active:before,
.category-page.-auto .toggle-nav span {
  background: #C93030;
}
@media (max-width: 1200px) {
  .category-page.-suv .header-nav, .category-page.-auto .header-nav {
    background: #C93030;
  }
}
.category-page.-suv .header, .category-page.-auto .header {
  background: #faeaea;
}
.category-page.-senior-living .dynamic-color {
  fill: #6421D1;
}
.category-page.-senior-living .nav-list-item.active:before,
.category-page.-senior-living .nav-list-item:hover:before,
.category-page.-senior-living .toggle-nav span {
  background: #6421D1;
}
@media (max-width: 1200px) {
  .category-page.-senior-living .header-nav {
    background: #6421D1;
  }
}
.category-page.-senior-living .header {
  background: #efe8fb;
}
.category-page.-health .dynamic-color {
  fill: #21D192;
}
.category-page.-health .nav-list-item.active:before,
.category-page.-health .nav-list-item:hover:before,
.category-page.-health .toggle-nav span {
  background: #21D192;
}
@media (max-width: 1200px) {
  .category-page.-health .header-nav {
    background: #21D192;
  }
}
.category-page.-health .header {
  background: #DEF1EA;
}
.category-page.-beauty-fitness .dynamic-color {
  fill: #216ED1;
}
.category-page.-beauty-fitness .nav-list-item:hover:before,
.category-page.-beauty-fitness .nav-list-item.active:before,
.category-page.-beauty-fitness .toggle-nav span {
  background: #216ED1;
}
@media (max-width: 1200px) {
  .category-page.-beauty-fitness .header-nav {
    background: #216ED1;
  }
}
.category-page.-beauty-fitness .header {
  background: #cbddf1;
}
.category-page.-home-garden .dynamic-color {
  fill: #CDD121;
}
.category-page.-home-garden .nav-list-item.active:before,
.category-page.-home-garden .nav-list-item:hover:before,
.category-page.-home-garden .toggle-nav span {
  background: #CDD121;
}
@media (max-width: 1200px) {
  .category-page.-home-garden .header-nav {
    background: #CDD121;
  }
}
.category-page.-home-garden .header {
  background: #cdd121;
}
.category-page.-electronics .dynamic-color, .category-page.-education .dynamic-color, .category-page.-services .dynamic-color {
  fill: #dc7216;
}
.category-page.-electronics .nav-list-item.active:before,
.category-page.-electronics .nav-list-item:hover:before,
.category-page.-electronics .toggle-nav span, .category-page.-education .nav-list-item.active:before,
.category-page.-education .nav-list-item:hover:before,
.category-page.-education .toggle-nav span, .category-page.-services .nav-list-item.active:before,
.category-page.-services .nav-list-item:hover:before,
.category-page.-services .toggle-nav span {
  background: #dc7216;
}
@media (max-width: 1200px) {
  .category-page.-electronics .header-nav, .category-page.-education .header-nav, .category-page.-services .header-nav {
    background: #dc7216;
  }
}
.category-page.-electronics .header, .category-page.-education .header, .category-page.-services .header {
  background: #f6dec5;
}

.card.-horizontal.-narrow {
  border: 0;
}
.card.-horizontal.-narrow .card-image {
  flex-basis: 40%;
  height: 225px;
}
@media (max-width: 767px) {
  .card.-horizontal.-narrow .card-image {
    height: auto;
    margin-bottom: 1rem;
    width: 100%;
  }
}
.card.-horizontal.-narrow .card-image .badge {
  top: 1rem;
  right: 1rem;
}
.card.-horizontal.-narrow .card-content {
  padding: 0.5rem 1.8rem;
}
.card.-horizontal.-narrow .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}

aside.aside {
  max-width: 300px;
  margin: 0 0 0 auto;
  padding: 20px 10px;
}
@media (max-width: 767px) {
  aside.aside {
    margin-right: auto;
  }
}
aside.aside h4 {
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  aside.aside h4 {
    font-size: 2rem;
  }
}

.aside {
  background: rgba(241, 241, 241, 0.8);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 576px) {
  .aside {
    padding: 10px;
  }
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid #206BCB;
  margin: 3px 0;
  border-radius: 12px;
  background: #fff;
  color: #206BCB;
  font-size: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
.tag:hover {
  background: #105FC6;
  color: #fff;
}

h4 {
  color: #091020;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media (max-width: 576px) {
  h4 {
    font-size: 1.8rem;
  }
}

.card-link {
  font-size: 13px;
  color: #216ED1;
  display: block;
  margin: 1rem 0;
}
.card-link:hover {
  text-decoration: underline;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.category-count {
  padding: 20px 0 10px;
}

.btn {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  color: #fff;
  background: #1877F2;
  border: 0;
  border-radius: 4px;
  padding: 6px 12px;
  transition: all 0.3s;
}
.btn:hover {
  background: #105FC6;
}

.btn-wrap .btn + .btn {
  margin-left: 5px;
}

.pagination {
  padding: 3.5rem;
  display: flex;
  justify-content: center;
}
.pagination .page-link {
  color: #5C5E75;
  height: 32px;
  min-width: 32px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}
.pagination .page-link:hover {
  text-decoration: underline;
  color: #216ED1;
}
.pagination .page-link:hover .prev-icon:before,
.pagination .page-link:hover .next-icon:before {
  border-color: #216ED1;
}
.pagination .page-link.active {
  background: rgba(241, 241, 241, 0.8);
  color: #091020;
}
.pagination .page-link.disabled {
  color: #C4C4C4;
  pointer-events: none;
}
.pagination .prev-icon:before,
.pagination .next-icon:before {
  content: "";
  width: 10px;
  height: 10px;
  border: solid 2px #c4c4c4;
  border-top: 0;
  border-right: 0;
  display: inline-block;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.pagination .next-icon:before {
  transform: rotate(225deg);
}

.post {
  margin-bottom: 2.5rem;
}
.post.-narrow {
  max-width: 690px;
  float: right;
}
.post h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0.5rem;
  padding-top: 6px;
}
.post p {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  text-align: justify;
}
@media (max-width: 576px) {
  .post p {
    font-size: 1.6rem;
  }
}
.post h2 {
  margin: 1.1rem 0;
}
.post-date {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .post-date {
    display: none;
  }
}
.post-author {
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.2rem;
}
@media (max-width: 576px) {
  .post-author {
    font-size: 1.6rem;
  }
}
.post-author-name {
  display: block;
  color: #091020;
}
.post .aside {
  margin: 2.5rem 0;
}

.card.-trend {
  padding: 12px 16px;
  flex-direction: row;
  background: #fff;
  height: calc(100% - 12px);
  min-height: 75px;
  margin-bottom: 12px;
  align-items: center;
}
.card.-trend > .badge {
  position: absolute;
  width: 10px;
  height: 100%;
  left: 0;
  padding: 0;
}
.card.-trend .card-image {
  flex: 0 0 33%;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.card.-trend .card-image .badge {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  top: 6px;
  right: 6px;
}
.card.-trend .card-content {
  padding-left: 18px;
}
.card.-trend .card-link {
  margin: 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}
.card.-trend.-text-ads {
  padding: 1.6rem;
  position: relative;
  border-radius: 7px;
  /*.card-link {
        width: 130px;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        padding-left: 12px;

        @include responsive-below($grid-lg){
          display: block;
          padding-left: 0;
          margin-top: 1rem;
          width: auto;
        }
      }

      .card-content {
        width: calc(100% - 130px);
        border-right: 2px solid rgba(241,241,241,0.8);
        padding-left: 0;

        @include responsive-below($grid-lg){
          width: 100%;
          border-right: 0;
        }
      }
  */
}
@media (max-width: 992px) {
  .card.-trend.-text-ads {
    display: block;
  }
}
.card.-trend.-text-ads + .card.-trend.-text-ads {
  margin-top: 1rem;
}
.card.-trend.-text-ads .text-ads-title {
  display: block;
  font-weight: 700;
  color: #2200C1;
  font-size: 1.15rem;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .card.-trend.-text-ads .text-ads-title {
    font-size: 1.8rem;
  }
}
.card.-trend.-text-ads .text-ads-title:hover {
  opacity: 0.7;
}
.card.-trend.-text-ads .text-ads-link {
  display: block;
  color: #0E774A;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .card.-trend.-text-ads .text-ads-link {
    font-size: 1.5rem;
    margin: 0.8rem 0;
  }
}
.card.-trend.-text-ads .text-ads-link:hover {
  opacity: 0.7;
}
.card.-trend.-text-ads .text-ads-link:before {
  content: "";
  display: inline-block;
  vertical-align: -1px;
  width: 12px;
  height: 12px;
  background: url("../img/icon-globe.svg") center/cover no-repeat;
  margin-right: 10px;
}
.card.-trend.-text-ads .text-ads-desc {
  color: #5C5E75;
}
.card.-trend.-text-ads .link-related {
  position: absolute;
  top: 2px;
  right: 5px;
  color: #ccc;
  font-size: 0.8rem;
}
.card.-trend.-text-ads .link-related:hover {
  text-decoration: underline;
}

.row.-narrow {
  margin-left: -8px;
  margin-right: -8px;
}
.row.-narrow .col-md-6 {
  padding-left: 8px;
  padding-right: 8px;
}

.trend-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
@media (max-width: 576px) {
  .trend-grid {
    margin: 0;
  }
}
.trend-grid-item {
  flex: 1 0 calc(50% - 16px);
  margin: 0 8px 12px;
}
@media (max-width: 576px) {
  .trend-grid-item {
    flex: 0 0 100%;
    margin: 0 0 12px;
  }
}
.trend-grid-item .card.-trend {
  min-height: 0;
  margin-bottom: 0;
  height: 100%;
}

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