@keyframes move-1 {
  0% {
    transform: translate(0, 0); }
  25% {
    transform: translate(20px, 20px); }
  50% {
    transform: translate(0, 20px); }
  75% {
    transform: translate(20px, 0); }
  90% {
    transform: translate(10px, 10px); }
  100% {
    transform: translate(0, 0); } }

@keyframes move-2 {
  0% {
    transform: rotate(0) translateY(0); }
  25% {
    transform: rotate(5deg) translateY(-30px); }
  50% {
    transform: rotate(-5deg) translateY(-30px); }
  75% {
    transform: rotate(5deg) translateY(-30px); }
  100% {
    transform: rotate(0) translateY(0); } }

@keyframes move-3 {
  0% {
    transform: translate(0, 0); }
  25% {
    transform: translate(-20px, -20px); }
  50% {
    transform: translate(0, -20px); }
  75% {
    transform: translate(-20px, 0); }
  90% {
    transform: translate(-10px, -10px); }
  100% {
    transform: translate(0, 0); } }

@keyframes diamond {
  0% {
    transform: rotate(45deg) scale(0); }
  50% {
    transform: rotate(45deg) scale(14); }
  100% {
    transform: rotate(45deg) scale(0); } }

@media (max-width: 1440px) {
  @keyframes diamond {
    0% {
      transform: rotate(45deg) scale(0); }
    50% {
      transform: rotate(45deg) scale(11); }
    100% {
      transform: rotate(45deg) scale(0); } } }

.preloader .preloader-title.active {
  color: red;
  background: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
  -webkit-mask-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
  -webkit-background-clip: text;
  background-size: 100%;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent; }

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10000;
  background-color: #fff;
  transition: all 8s ease; }
  .preloader.hidden {
    transform: translateY(-1000%); }
  .preloader .preloader-title {
    display: inline-block;
    font-size: 150px;
    font-weight: 700;
    font-family: Arial;
    animation: background-fade 0s forwards 1.75s;
    display: block;
    color: #282828; }
    .preloader .preloader-title.active {
      color: red;
      background: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      -webkit-mask-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      -webkit-background-clip: text;
      background-size: 100%;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent; }
  .preloader .preloader-text {
    color: #212121;
    font-size: 32px;
    font-weight: 500;
    width: 100%;
    font-family: Arial;
    font-weight: bold; }
  .preloader .left-part,
  .preloader .right-part {
    position: absolute;
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    background-color: #e9e9e9;
    animation: diamond 1.5s ease 1s;
    transform: rotate(45deg) scale(0); }
  .preloader .left-part {
    left: -100px;
    top: -100px; }
  .preloader .right-part {
    bottom: -100px;
    right: -100px; }

body.loaded .start-section .section-toggle {
  opacity: 1; }

body.loaded .start-section .vertical-line {
  height: 300px; }

.start-line {
  content: '';
  width: 2px;
  position: absolute;
  left: calc(50% - 1px);
  right: 50%;
  margin: 0 auto;
  background: linear-gradient(to bottom, #5C2DA8, #B62A35);
  height: 0;
  opacity: 0;
  transition: all 0.8s ease;
  top: 0; }
  .start-line .start-circle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #5E2EA8;
    border-radius: 50%;
    left: -3px;
    bottom: 0; }

.end-line {
  content: '';
  width: 2px;
  position: absolute;
  right: 50%;
  left: calc(50% - 1px);
  margin: 0 auto;
  background: linear-gradient(to bottom, #5C2DA8, #B62A35);
  height: 0;
  bottom: 0;
  opacity: 0;
  top: calc(100% - 100px);
  transition: all 0.4s ease;
  transition-delay: 1s; }
  .end-line .end-circle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #5E2EA8;
    border-radius: 50%;
    left: -3px;
    top: 0; }

.section.add-animation .start-line {
  opacity: 1;
  height: 150px; }

.section.add-animation .end-line {
  opacity: 1;
  height: 100px; }

@media (max-width: 2000px) {
  .preloader .preloader-title {
    font-size: 100px; } }

@media (max-width: 1899px) {
  .preloader .preloader-title {
    font-size: 90px; } }

@media (max-width: 1899px) {
  .preloader .preloader-title {
    font-size: 90px; } }

@media (max-width: 1699px) {
  .preloader .preloader-title {
    font-size: 80px; }
  .preloader .preloader-text {
    font-size: 24px; } }

@media (max-width: 1199px) {
  .preloader .preloader-title {
    font-size: 62px; }
  .preloader .preloader-text {
    font-size: 20px; } }

@media (max-width: 991px) {
  .preloader .preloader-title {
    font-size: 52px; }
  .preloader .preloader-text {
    font-size: 18px; } }

@media (max-width: 767px) {
  .preloader .preloader-title {
    font-size: 42px; }
  .preloader .preloader-text {
    font-size: 16px; } }

.index-content {
  position: relative;
  z-index: 1; }

.index-page #wrapper > .main-header {
  display: none; }

.index-page .section-content {
  height: 100%; }
  .index-page .section-content picture {
    display: block;
    width: 100%;
    height: 100%; }
  .index-page .section-content img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.index-page .section {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 100px !important;
  padding-left: 100px !important;
  overflow: hidden; }

.index-page .start-section .section-content {
  position: relative; }
  .index-page .start-section .section-content .container {
    height: 100%;
    padding-top: 50px; }

.index-page .start-section .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0; }

.index-page .start-section .section-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .index-page .start-section .section-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 5px;
    padding: 0 15px;
    width: 25%; }
    .index-page .start-section .section-content ul li a {
      text-decoration: none;
      color: #333;
      display: block;
      width: 100%;
      padding: 10px 15px;
      position: relative;
      border-width: 1px;
      border-style: solid;
      background-color: #fff;
      border-image-slice: 1;
      border-image-source: linear-gradient(to right, #5C2DA8, #B62A35);
      transform: perspective(1px) translateZ(0);
      overflow: hidden;
      transition: 0.2s;
      transition-delay: 0.1s; }
      .index-page .start-section .section-content ul li a:after {
        content: '';
        z-index: -1;
        position: absolute;
        left: -50px;
        top: 0;
        bottom: 0;
        background: linear-gradient(to right, #5C2DA8, #B62A35);
        width: 0;
        transform: skew(45deg);
        transition: 0.5s all ease-out;
        transition-delay: 0; }
      .index-page .start-section .section-content ul li a:hover {
        color: #fff;
        transition-delay: 0; }
      .index-page .start-section .section-content ul li a:hover:before {
        transition-delay: 0;
        background-color: #fff; }
      .index-page .start-section .section-content ul li a:hover:after {
        width: 200%;
        transition-delay: 0.1s; }

.index-page .start-section .section-toggle {
  background: transparent url(../img/icons/toggle-border.svg) center no-repeat;
  transition: opacity 0.3s linear;
  opacity: 0;
  bottom: 28px; }

.index-page .start-section .vertical-line {
  width: 2px;
  position: absolute;
  left: calc(50% - 1px);
  right: 50%;
  margin: 0 auto;
  background: linear-gradient(to bottom, #B62A35, #5C2DA8);
  height: 0;
  top: calc(100% - 28px);
  transition: 0.8s;
  transition-delay: 0.7s; }

.index-page .start-section h1 {
  line-height: 1.1;
  font-weight: 700;
  font-size: 110px;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px; }
  .index-page .start-section h1 span {
    position: relative;
    z-index: 5;
    display: block;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .index-page .start-section h1:after {
    content: '';
    width: 500vw;
    height: 100%;
    position: absolute;
    left: -1000px;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1; }

.index-page .contacts-section.section {
  padding-bottom: 65px; }

.index-page .figure-container {
  position: relative;
  z-index: 0; }
  .index-page .figure-container > div {
    position: fixed; }
  .index-page .figure-container .figure-1 {
    top: 5%;
    left: -1%; }
  .index-page .figure-container .figure-2 {
    top: calc(50% - 300px);
    right: -10%; }
  .index-page .figure-container .figure-3 {
    bottom: -5%;
    right: 1%; }
  .index-page .figure-container .figure-4 {
    top: 20%;
    right: 10%; }
  .index-page .figure-container .figure-5 {
    bottom: -4%;
    left: -3%; }
  .index-page .figure-container .figure-6 {
    bottom: 12%;
    left: 5%; }

.aside-social {
  position: fixed;
  right: 35px;
  z-index: 1000;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s; }
  .aside-social.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }
  .aside-social a {
    width: 21px;
    height: 21px;
    margin: 15px 0;
    display: block;
    display: flex;
    align-items: center; }
  .aside-social img {
    display: block;
    width: 21px;
    min-height: 21px;
    max-height: none !important;
    position: static !important; }

.figure-container .figure-1 {
  z-index: 100;
  width: 60px;
  height: 60px;
  background: url(../img/icons/figure-1.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-1 12s linear infinite;
  transform-origin: center; }

.figure-container .figure-2 {
  z-index: 100;
  width: 550px;
  height: 650px;
  background: url(../img/icons/figure-2.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-2 20s ease-in-out infinite;
  transition: opacity 0.3s linear; }

.figure-container .figure-3 {
  z-index: 100;
  width: 140px;
  height: 140px;
  background: url(../img/icons/figure-3.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-1 16s linear infinite;
  transform-origin: center;
  transition: opacity 0.3s linear; }

.figure-container .figure-4 {
  z-index: 100;
  width: 40px;
  height: 40px;
  background: url(../img/icons/figure-4.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-3 16s linear infinite;
  transform-origin: center; }

.figure-container .figure-5 {
  z-index: 100;
  width: 120px;
  height: 120px;
  background: url(../img/icons/figure-5.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-1 16s linear infinite;
  transform-origin: center; }

.figure-container .figure-6 {
  z-index: 100;
  width: 40px;
  height: 40px;
  background: url(../img/icons/figure-4.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-3 16s linear infinite;
  transform-origin: center; }

.figure-container.hidden .figure-2,
.figure-container.hidden .figure-3,
.figure-container.hidden .figure-4 {
  opacity: 0; }

.figure-container.hidden-2 .figure-1,
.figure-container.hidden-2 .figure-5,
.figure-container.hidden-2 .figure-6 {
  opacity: 0; }

.section-toggle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: 0 auto;
  width: 160px;
  height: 42px;
  display: flex;
  padding: 1px 0 0;
  justify-content: center;
  align-items: center;
  border: 0;
  transform: perspective(1px) translateZ(0);
  background: #fff url(../img/icons/toggle-border.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  border-radius: 20px;
  transition: opacity 1s linear;
  text-decoration: none;
  color: #212121;
  z-index: 10; }
  .section-toggle:before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 50%;
    right: 50%;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, #5C2DA8, #B62A35);
    width: 0;
    transition: 0.25s all ease;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none; }
  .section-toggle:hover {
    color: #fff; }
  .section-toggle:hover:before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 1; }

.catalog-section.add-animation .section-toggle,
.partners-section.add-animation .section-toggle,
.news-section.add-animation .section-toggle {
  opacity: 1; }

.catalog-section .section-toggle,
.partners-section .section-toggle,
.news-section .section-toggle {
  opacity: 0;
  transition: opacity 0.2s linear;
  transition-delay: 1.5s; }

.history-section.add-animation .vertical-line {
  height: 150%; }

.history-section.add-animation .section-toggle {
  opacity: 1; }

.history-section.add-animation .history-item {
  opacity: 1;
  bottom: 0; }

.history-section.add-animation .text-container {
  top: 50%;
  opacity: 1; }

.history-section > .container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column; }

.history-section .vertical-line {
  position: absolute;
  top: -115px;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #5C2DA8, #B62A35);
  width: 2px;
  height: 0;
  margin: 0 auto;
  z-index: 1;
  transition: all 4s ease; }

.history-section .section-toggle {
  opacity: 0;
  bottom: -60px;
  transition: opacity 0.2s linear;
  transition-delay: 2s; }

.history-section .text-container {
  position: absolute;
  left: 15px;
  top: calc(50% + 150px);
  max-width: 450px;
  transform: translateY(-50%);
  transition: all 1s linear;
  opacity: 0; }
  .history-section .text-container .h2 {
    font-size: 50px;
    font-weight: 700;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }

.history-section .history-container {
  width: 500px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 80px; }

.history-section .history-item {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  height: 110px;
  opacity: 0;
  transition: all 0.5s linear;
  bottom: -20px; }
  .history-section .history-item:nth-child(2) {
    transition-delay: 0.3s; }
  .history-section .history-item:nth-child(3) {
    transition-delay: 0.5s; }
  .history-section .history-item:nth-child(4) {
    transition-delay: 0.7s; }
  .history-section .history-item:nth-child(5) {
    transition-delay: 0.9s; }
  .history-section .history-item:nth-child(6) {
    transition-delay: 1.1s; }
  .history-section .history-item:nth-child(7) {
    transition-delay: 1.3s; }
  .history-section .history-item:nth-child(8) {
    transition-delay: 1.5s; }
  .history-section .history-item:before {
    content: '';
    position: absolute;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-image: linear-gradient(to bottom, #5C2DA8, #B62A35); }
  .history-section .history-item:nth-child(odd) {
    padding-right: 280px; }
    .history-section .history-item:nth-child(odd) .history-number {
      text-align: right; }
    .history-section .history-item:nth-child(odd) .history-text {
      text-align: right; }
  .history-section .history-item:nth-child(even) {
    padding-left: 280px; }

.history-section .history-number {
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.1; }

.history-section .history-text {
  width: 100%; }

.partners-section {
  display: flex;
  align-items: center; }
  .partners-section.add-animation .partner-item {
    opacity: 1; }
  .partners-section .text-container {
    width: 100%; }
    .partners-section .text-container h2, .partners-section .text-container .h2 {
      display: inline-block;
      font-size: 50px;
      font-weight: 700;
      margin: 0 0 40px;
      background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent; }
  .partners-section .h3 {
    text-align: center;
    width: 100%;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 30px; }
  .partners-section .container {
    display: flex;
    flex-wrap: wrap; }
  .partners-section .partner-item {
    width: 25%;
    display: flex;
    align-items: center;
    margin: 20px 0;
    opacity: 0;
    transition: all 0.5s linear; }
    .partners-section .partner-item:nth-child(2) {
      transition-delay: 0.3s; }
    .partners-section .partner-item:nth-child(3) {
      transition-delay: 0.5s; }
    .partners-section .partner-item:nth-child(4) {
      transition-delay: 0.7s; }
    .partners-section .partner-item:nth-child(5) {
      transition-delay: 0.9s; }
    .partners-section .partner-item:nth-child(6) {
      transition-delay: 1.1s; }
    .partners-section .partner-item:nth-child(7) {
      transition-delay: 1.3s; }
    .partners-section .partner-item:nth-child(8) {
      transition-delay: 1.5s; }
    .partners-section .partner-item:nth-child(9) {
      transition-delay: 1.7s; }
    .partners-section .partner-item:nth-child(10) {
      transition-delay: 1.9s; }
    .partners-section .partner-item:nth-child(11) {
      transition-delay: 2.1s; }
    .partners-section .partner-item:nth-child(12) {
      transition-delay: 2.3s; }
    .partners-section .partner-item:nth-child(13) {
      transition-delay: 2.5s; }
    .partners-section .partner-item:nth-child(14) {
      transition-delay: 2.7s; }
    .partners-section .partner-item:nth-child(15) {
      transition-delay: 2.9s; }
    .partners-section .partner-item:hover picture {
      filter: grayscale(0); }
    .partners-section .partner-item picture {
      display: block;
      transition: 0.25s;
      filter: grayscale(100%);
      max-width: 200px;
      max-height: 110px; }
    .partners-section .partner-item img {
      display: block;
      max-width: 200px;
      max-height: 110px; }

#fp-nav {
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important; }

#fp-nav.left {
  left: 32px; }

#fp-nav.is-active {
  opacity: 0;
  visibility: hidden; }

#fp-nav ul li {
  width: auto;
  height: auto;
  margin: 15px 10px; }

#fp-nav ul li .fp-tooltip {
  font-size: 14px;
  overflow: visible;
  max-width: none;
  padding: 0 5px;
  min-width: 75px;
  top: -3px;
  left: 0 !important;
  color: #212121;
  background-color: #fff;
  padding-left: 25px; }

#fp-nav ul li .fp-tooltip span {
  display: block;
  text-align: center;
  font-style: normal;
  font-size: 46px;
  color: #eac4bf;
  font-weight: 700;
  line-height: .8; }

#fp-nav ul li a {
  width: 14px;
  height: 14px; }

#fp-nav ul li a span {
  background-color: #fff;
  width: 14px;
  height: 14px;
  margin: 0;
  left: 0;
  top: 0;
  border: 2px solid #212121; }

#fp-nav ul li a.active span {
  width: 14px;
  height: 14px;
  background-color: #212121;
  margin: 0; }

#fp-nav ul li:hover .fp-tooltip {
  opacity: 1; }

#fp-nav ul li a:hover {
  margin: 0; }

#fp-nav ul li:hover a span {
  margin: 0; }

#fp-nav ul li:hover a.active span {
  margin: 0;
  width: 14px;
  height: 14px; }

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 14px;
  height: 14px; }

@media (max-width: 2000px) {
  .index-page .start-section h1 {
    font-size: 80px; }
  .history-section .history-item {
    height: 90px; }
  .history-section .history-number {
    font-size: 32px; }
  .history-section .text-container .h2 {
    font-size: 42px; }
  .index-page .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1899px) {
  .index-page .start-section h1 {
    font-size: 72px; }
  .partners-section .text-container .h2, .partners-section .text-container h2 {
    font-size: 42px; }
  .index-page .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1699px) {
  .index-page .contacts-section.section {
    padding-bottom: 45px; }
  .index-page .start-section .section-content .container {
    padding-left: 50px; }
  .index-page .start-section .section-content ul li {
    width: 33.33%;
    margin-bottom: 3px; }
    .index-page .start-section .section-content ul li a {
      font-size: 16px; }
      .index-page .start-section .section-content ul li a:before {
        width: 5px;
        height: 5px;
        top: 15px; }
  .index-page .start-section h1 {
    font-size: 70px; }
  .partners-section .text-container .h2, .partners-section .text-container h2 {
    font-size: 36px; }
  .partners-section .partner-item picture {
    max-width: 180px;
    max-height: 90px; }
  .partners-section .partner-item img {
    max-width: 180px;
    max-height: 90px; }
  .index-page .footer-bottom {
    background-color: #fff; }
  .history-section .history-container {
    width: 460px; }
  .history-section .history-item:nth-child(odd) {
    padding-right: 260px; }
  .history-section .history-item:nth-child(even) {
    padding-left: 260px; }
  .history-section .history-text {
    font-size: 14px; }
  .history-section .history-number {
    font-size: 28px; }
  .history-section .text-container {
    max-width: 360px; }
    .history-section .text-container .h2 {
      font-size: 36px; }
    .history-section .text-container p {
      font-size: 14px; }
  .index-page .figure-container .figure-2 {
    right: -25%; }
  .index-page .figure-container .figure-3 {
    width: 100px;
    height: 100px;
    bottom: -1%; }
  .section.add-animation .start-line {
    height: 100px; } }

@media (max-width: 1439px) {
  .index-page .contacts-section.section {
    padding-bottom: 45px; }
  .index-page .start-section h1 {
    font-size: 60px; }
  .index-page .section {
    padding-top: 65px;
    padding-left: 70px !important;
    padding-right: 70px !important;
    padding-bottom: 70px; }
  .index-page .start-section .section-content ul li a {
    font-size: 14px; }
  .index-page .start-section .section-toggle {
    bottom: 15px; }
  .index-page .start-section .vertical-line {
    top: calc(100% - 15px); }
  .index-page .aside-social {
    right: 27px; }
  .partners-section .text-container .h2, .partners-section .text-container h2 {
    font-size: 28px; }
  .partners-section .partner-item {
    margin: 15px 0; }
    .partners-section .partner-item picture {
      max-width: 170px;
      max-height: 80px; }
    .partners-section .partner-item img {
      max-width: 170px;
      max-height: 70px; }
  #fp-nav.left {
    left: 17px; }
  .history-section .history-container {
    width: 380px; }
  .history-section .history-item {
    height: 60px; }
  .history-section .history-item:nth-child(odd) {
    padding-right: 215px; }
  .history-section .history-item:nth-child(even) {
    padding-left: 215px; }
  .history-section .history-text {
    font-size: 12px; }
  .history-section .history-number {
    font-size: 22px; }
  .history-section .text-container {
    max-width: 320px; }
    .history-section .text-container .h2 {
      font-size: 32px; }
    .history-section .text-container p {
      font-size: 13px; }
  .index-page .figure-container .figure-1 {
    top: 10%;
    left: 0%; }
  .index-page .figure-container .figure-2 {
    right: -30%; }
  .index-page .figure-container .figure-3 {
    display: none; }
  .index-page .figure-container .figure-4 {
    display: none; }
  .index-page .figure-container .figure-5 {
    bottom: -8%; }
  .index-page .figure-container .figure-6 {
    bottom: 7%;
    left: 5%; } }

@media (max-width: 1199px) {
  .index-page .aside-social {
    display: none; }
  .index-page .section {
    height: auto !important;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .index-page .start-section .section-content .container {
    padding-left: 15px; }
  .index-page .start-section .section-content ul {
    width: 100%; }
    .index-page .start-section .section-content ul li a:after {
      display: none; }
    .index-page .start-section .section-content ul li a:hover {
      color: #333; }
      .index-page .start-section .section-content ul li a:hover:before {
        background-color: #333; }
  .index-page .start-section.section {
    padding-top: 70px; }
  .index-page .start-section h1 {
    bottom: 5px;
    width: 100%;
    font-size: 52px;
    text-align: center; }
  .index-page .section-toggle {
    display: none; }
  .index-page .start-line,
  .index-page .end-line {
    display: none; }
  .index-page #wrapper .main-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-top: 3px;
    padding-bottom: 5px; }
  .index-page .section .main-header {
    display: none !important; }
  .start-section .vertical-line {
    display: none; }
  .partners-section .partner-item img, .partners-section .partner-item picture {
    max-height: 60px; }
  .history-section .h2 {
    display: inline-block; }
  .history-section.add-animation .vertical-line {
    height: auto; }
  .history-section .vertical-line {
    top: -50px;
    bottom: -50px;
    height: auto; }
    .history-section .vertical-line:before, .history-section .vertical-line:after {
      content: '';
      width: 8px;
      left: -3px;
      height: 8px;
      border-radius: 50%;
      position: absolute;
      background-color: red; }
    .history-section .vertical-line:before {
      top: 0;
      background-color: #5C2DA8; }
    .history-section .vertical-line:after {
      bottom: 0;
      background-color: #B62A35; }
  .history-section .text-container {
    max-width: 100%;
    position: static;
    top: 0;
    transform: translateY(0);
    margin-bottom: 30px;
    opacity: 1; }
    .history-section .text-container p {
      font-size: 14px; }
  .history-section .history-container {
    margin: 50px 0;
    width: 420px;
    position: relative;
    padding-bottom: 0; }
  .history-section .history-item {
    height: 80px; }
  .history-section .history-item:nth-child(odd) {
    padding-right: 240px; }
  .history-section .history-item:nth-child(even) {
    padding-left: 240px; }
  .index-page .figure-container .figure-2 {
    display: none; }
  .index-page .figure-container .figure-5 {
    left: auto;
    display: block;
    right: -3%;
    bottom: 3%; }
  .partners-section .partner-item {
    opacity: 1; } }

@media (max-width: 991px) {
  .index-page .start-section h1 {
    font-size: 42px; }
  .index-page .start-section .section-content ul li {
    width: 50%; }
  .partners-section .partner-item {
    margin-bottom: 25px;
    width: 33.33%;
    justify-content: center; }
    .partners-section .partner-item picture {
      max-width: 150px;
      max-height: 50px; }
    .partners-section .partner-item img {
      max-width: 150px;
      max-height: 50px; }
  .index-page .figure-container {
    display: none; } }

@media (max-width: 767px) {
  .index-page .start-section h1 {
    font-size: 32px;
    max-width: 100%;
    bottom: 0; }
  .index-page .start-section .section-content {
    height: 350px; }
    .index-page .start-section .section-content .container {
      padding-top: 15px; }
    .index-page .start-section .section-content ul {
      margin: 0 -8px; }
      .index-page .start-section .section-content ul li {
        padding: 0 8px; }
        .index-page .start-section .section-content ul li a {
          font-size: 13px;
          padding: 8px; }
  .index-page .section {
    padding-bottom: 30px;
    padding-top: 30px; } }

@media (max-width: 575px) {
  .index-page .start-section h1 {
    font-size: 28px; }
  .index-page .start-section .section-content {
    height: 300px; }
    .index-page .start-section .section-content ul li a {
      padding: 5px 10px; }
  .history-section {
    padding-top: 10px !important; }
    .history-section .history-container {
      width: 290px; }
    .history-section .text-container .h2 {
      font-size: 26px;
      text-align: center; }
    .history-section .history-item:before {
      width: 18px;
      height: 18px;
      top: calc(50% - 9px);
      left: calc(50% - 9px); }
    .history-section .history-item:nth-child(even) {
      padding-left: 160px; }
    .history-section .history-item:nth-child(odd) {
      padding-right: 160px; }
  .partners-section .partner-item {
    width: 50%; }
    .partners-section .partner-item picture {
      max-width: 90%; }
    .partners-section .partner-item img {
      max-width: 90%; }
  .partners-section .text-container .h2,
  .partners-section .text-container h2 {
    font-size: 26px;
    line-height: 1.3; } }

@media (max-width: 479px) {
  .index-page .start-section h1 {
    font-size: 26px;
    bottom: auto;
    top: calc(100% + 5px);
    font-size: 30px; }
  .index-page .start-section {
    overflow: visible; }
  .index-page .start-section .section-content {
    height: 300px; }
  .index-page .catalog-section {
    padding-top: 50px; } }

@media (max-width: 375px) {
  .index-page .start-section .section-content ul li a {
    font-size: 12px;
    padding: 5px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.text-right {
  text-align: right; }

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

html {
  height: 100%;
  width: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #212121;
  background-color: #fff;
  min-width: 320px;
  letter-spacing: 0.3px; }
  body.fixed {
    overflow: hidden !important; }

a, button {
  cursor: pointer; }

@media (max-width: 1199px) {
  body {
    overflow: auto; } }

.btn-primary {
  display: block;
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #5C2DA8, #B62A35);
  height: 42px;
  line-height: 42px;
  color: #212121;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  transition: 0.2s;
  text-align: center;
  padding: 0 15px;
  cursor: pointer; }
  .btn-primary:before {
    content: '';
    z-index: -1;
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, #5C2DA8, #B62A35);
    width: 0;
    transform: skew(45deg);
    transition: 0.3s all ease-out; }
  .btn-primary:hover {
    color: #fff; }
  .btn-primary:hover:before {
    width: 150%; }

.btn-main {
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #5C2DA8, #B62A35);
  background: linear-gradient(to right, #5C2DA8, #B62A35);
  color: #fff;
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
  text-align: center;
  padding: 0 15px;
  cursor: pointer; }
  .btn-main:hover {
    border-image-source: linear-gradient(to right, #3e0f8a, #a71e28);
    background: linear-gradient(to right, #3e0f8a, #a71e28); }

.select-container {
  position: relative;
  display: flex;
  align-items: center; }
  .select-container .select-label {
    font-size: 13px;
    color: #555;
    margin-right: 10px; }

.select-button {
  background-color: #fff;
  border: 1px solid #C2C2C2;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 13px;
  padding: 0 25px 0 10px;
  box-shadow: none;
  height: 32px;
  width: 190px;
  position: relative;
  text-align: left;
  outline: 0;
  display: flex;
  align-items: center; }

.select-button span {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.select-button:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 13px;
  right: 9px;
  border-top: 5px solid #333;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transform-origin: center;
  transition: 0.3s; }

.select-button.is-active:after {
  transform: rotate(180deg); }

.select-dropdown {
  list-style: none;
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 8;
  max-height: 300px;
  overflow: auto;
  z-index: 100;
  background-color: #fff;
  border: 1px solid #C2C2C2; }

.select-dropdown li {
  position: static;
  padding: 0; }

.select-dropdown li:before {
  display: none; }

.select-dropdown li a {
  display: block;
  border: 0;
  line-height: 1.4;
  width: 100%;
  text-decoration: none;
  padding: 5px 12px;
  color: #121212;
  font-size: 13px; }

.select-dropdown li a:hover {
  color: #fff;
  background: linear-gradient(to right, #5C2DA8, #B62A35); }

.breadcrumb {
  padding: 12px 0;
  align-items: center;
  background-color: transparent;
  font-size: 12px;
  list-style: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden; }

.breadcrumb a {
  color: #121212;
  text-decoration: none; }

.breadcrumb a:hover {
  text-decoration: underline; }

.breadcrumb .breadcrumb-item.active {
  color: #999; }

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: '\002F';
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  margin: 3px 5px 0; }

.form-group {
  margin-bottom: 0;
  padding-bottom: 22px;
  position: relative; }
  .form-group label {
    margin-bottom: 1px;
    font-size: 14px; }
  .form-group .form-control {
    display: block;
    width: 100%;
    border: 1px solid #a2a2a2;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    outline: 0;
    height: 42px;
    padding: 10px 12px; }
    .form-group .form-control:focus {
      border: 1px solid #5C2DA8;
      box-shadow: 0 0 0 3px rgba(92, 45, 168, 0.25); }
  .form-group .red-text {
    color: #C62534;
    font-size: 13px;
    position: absolute;
    left: 0;
    bottom: 4px; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 576px) {
  .container {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container {
    max-width: 720px; } }

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

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

@media (min-width: 1440px) {
  .container {
    max-width: 1320px; } }

@media (min-width: 1700px) {
  .container {
    max-width: 1536px; } }

@media (min-width: 1900px) {
  .container {
    max-width: 1680px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -ms-flex-order: -1;
  order: -1; }

.order-last {
  -ms-flex-order: 13;
  order: 13; }

.order-0 {
  -ms-flex-order: 0;
  order: 0; }

.order-1 {
  -ms-flex-order: 1;
  order: 1; }

.order-2 {
  -ms-flex-order: 2;
  order: 2; }

.order-3 {
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -ms-flex-order: 12;
  order: 12; }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1; }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13; }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0; }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1; }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2; }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3; }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4; }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5; }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6; }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7; }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8; }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9; }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10; }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11; }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1; }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13; }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0; }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1; }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2; }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3; }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4; }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5; }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6; }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7; }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8; }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9; }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10; }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11; }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1; }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13; }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0; }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1; }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2; }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3; }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4; }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5; }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6; }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7; }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8; }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9; }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10; }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11; }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1; }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13; }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0; }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1; }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2; }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3; }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4; }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5; }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6; }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7; }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8; }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9; }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10; }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11; }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

.index-page .main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; }

.main-header {
  padding: 10px 0 0;
  z-index: 100;
  background-color: #fff; }
  .main-header .container {
    display: flex;
    align-items: center;
    padding-top: 8px; }
  .main-header .main-logo {
    margin-right: 60px; }
    .main-header .main-logo img {
      display: block;
      max-width: 180px; }
  .main-header .slide-nav {
    display: flex;
    align-items: center;
    flex-grow: 1; }
  .main-header .main-nav {
    margin-right: auto; }
    .main-header .main-nav a {
      text-decoration: none;
      /*color: #30076d;*/
      font-size: 20px;
      margin-right: 50px;
      background-color: #fff;
      position: relative; }
      .main-header .main-nav a:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        height: 1px;
        background: #212121;
        width: 0;
        transition: all 0.3s ease; }
      .main-header .main-nav a:hover:after, .main-header .main-nav a.active:after, .main-header .main-nav a:focus:after {
        width: 100%; }
  .main-header .phone-box a {
    color: #30076d;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px; }
  .main-header .select-container {
    margin-left: 40px; }
    .main-header .select-container .select-button {
      padding-right: 0;
      padding-left: 25px;
      width: 60px;
      font-size: 16px;
      border: 0;
      color: #30076d; }
      .main-header .select-container .select-button:before {
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        top: calc(50% - 11px);
        left: 0;
        background: url(../img/icons/earth-icon.svg) no-repeat center; }
      .main-header .select-container .select-button:after {
        display: none; }
    .main-header .select-container .select-dropdown {
      width: 60px;
      top: calc(100% + 2px); }
      .main-header .select-container .select-dropdown a {
        font-size: 16px; }
        .main-header .select-container .select-dropdown a.active {
          background-color: #F6F7F9; }
  .main-header .cabinet-link {
    text-decoration: none;
    color: #30076d;
    padding-left: 25px;
    margin-left: 40px;
    position: relative; }
    .main-header .cabinet-link:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0;
      top: 0;
      background: url(../img/icons/user-icon.svg) no-repeat center; }

.nav-toggle {
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: 0;
  cursor: pointer;
  margin-left: 30px;
  margin-top: 4px;
  display: none; }
  .nav-toggle span {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background-color: #212121;
    display: block;
    margin-bottom: 5px; }

.slide-nav-close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 13px;
  right: 13px;
  background: url(../img/icons/close-icon.svg) no-repeat center;
  background-size: 60%;
  border: 0;
  outline: 0;
  transition: 0.25s;
  display: none;
  cursor: pointer; }

@media (max-width: 1899px) {
  .main-header .main-logo {
    margin-right: 50px; }
  .main-header .main-nav a {
    font-size: 18px;
    margin-right: 40px; } }

@media (max-width: 1439px) {
  .main-header .main-logo img {
    max-width: 110px; }
  .main-header .container {
    padding-top: 5px; }
  .main-header .main-nav a {
    font-size: 14px; }
  .main-header .phone-box a {
    font-size: 14px; }
  .main-header .cabinet-link {
    font-size: 14px; }
  .main-header .select-container .select-button {
    font-size: 14px; } }

@media (max-width: 1199px) {
  .main-header .main-logo {
    margin-right: 30px; }
  .main-header .main-nav a {
    font-size: 14px;
    margin-right: 30px; }
  .main-header .phone-box div {
    line-height: 1.4; }
  .main-header .phone-box a {
    font-size: 14px; }
  .main-header .cabinet-link {
    font-size: 14px;
    margin-left: 30px; }
  .main-header .select-container {
    margin-left: 25px; }
    .main-header .select-container .select-button {
      font-size: 14px; } }

@media (max-width: 991px) {
  .main-header .main-logo {
    margin-right: auto; }
  .main-header .main-nav {
    margin-bottom: 30px; }
    .main-header .main-nav a {
      font-size: 18px;
      margin: 0 0 20px 0;
      background-color: transparent;
      display: block; }
      .main-header .main-nav a:after {
        display: none; }
  .main-header .phone-box div {
    margin-bottom: 10px; }
  .main-header .phone-box a {
    font-size: 18px; }
  .main-header .cabinet-link {
    font-size: 14px;
    margin-left: 30px;
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 18px; }
    .main-header .cabinet-link:before {
      top: 2px; }
  .main-header .select-container {
    margin-left: 0;
    position: absolute;
    left: 160px;
    top: 12px; }
    .main-header .select-container .select-button {
      font-size: 18px;
      background-color: transparent; }
  .main-header .slide-nav {
    position: fixed;
    display: block;
    z-index: 100;
    width: 500px;
    right: 0;
    top: 0;
    background-color: #F6F7F9;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 70px 0 40px 40px;
    transform: translateX(150%);
    transition: 0.3s; }
    .main-header .slide-nav.active {
      transform: translateX(0); }
  .nav-toggle {
    display: block; }
  .slide-nav-close {
    display: block; } }

@media (max-width: 767px) {
  .main-header .slide-nav {
    width: 400px; } }

@media (max-width: 479px) {
  .main-header .slide-nav {
    width: 300px;
    padding: 70px 0 40px 30px; }
  .main-header .cabinet-link {
    left: 0; }
  .main-header .select-container {
    left: 145px; } }

#page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.8);
  z-index: 10;
  display: none; }

#wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

.main-content,
.page-content {
  flex: 1; }

.auth-page .page-content {
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative; }

.auth-page .title-box {
  text-align: center;
  margin-bottom: 30px; }
  .auth-page .title-box h1 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 5px; }
  .auth-page .title-box .subtitle {
    color: #555; }

.auth-page .agreement-text {
  font-size: 12px; }

.auth-page .btn-success {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 8px; }

.auth-page .auth-content {
  width: 430px;
  margin: 0 auto; }
  .auth-page .auth-content .info-group .form-control {
    padding-right: 35px; }
  .auth-page .auth-content .info-group .tooltip-box {
    position: absolute;
    top: 36px;
    right: 7px;
    width: 22px;
    height: 22px;
    cursor: pointer; }
    .auth-page .auth-content .info-group .tooltip-box img {
      width: 18px; }
    .auth-page .auth-content .info-group .tooltip-box:hover .tooltip-content {
      opacity: 1;
      pointer-events: auto; }
  .auth-page .auth-content .info-group .tooltip-content {
    width: 250px;
    font-size: 13px;
    position: absolute;
    left: calc(100% + 10px);
    top: calc(50% - 30px);
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #c2c2c2;
    padding: 10px;
    transition: 0.25s;
    opacity: 0;
    pointer-events: none; }
    .auth-page .auth-content .info-group .tooltip-content:after, .auth-page .auth-content .info-group .tooltip-content:before {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid;
      top: 20px; }
    .auth-page .auth-content .info-group .tooltip-content:after {
      left: -8px;
      border-width: 8px 8px 8px 0;
      border-right-color: #fff; }
    .auth-page .auth-content .info-group .tooltip-content:before {
      left: -9px;
      border-width: 8px 8px 8px 0;
      border-right-color: rgba(0, 0, 0, 0.25); }
  .auth-page .auth-content .flex-container {
    display: flex;
    justify-content: space-between;
    margin-top: -3px;
    width: 100%; }
    .auth-page .auth-content .flex-container .modal-link {
      color: #7a7a7a;
      font-size: 14px; }
      .auth-page .auth-content .flex-container .modal-link:hover {
        color: #212121; }
  .auth-page .auth-content .checkbox-item {
    position: relative;
    padding-left: 30px; }
    .auth-page .auth-content .checkbox-item label {
      cursor: pointer;
      font-size: 13px; }
      .auth-page .auth-content .checkbox-item label a {
        color: #5C2DA8; }
      .auth-page .auth-content .checkbox-item label:before, .auth-page .auth-content .checkbox-item label:after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0;
        top: 2px; }
      .auth-page .auth-content .checkbox-item label:before {
        width: 20px;
        height: 20px;
        z-index: 1;
        border: 1px solid #444; }
      .auth-page .auth-content .checkbox-item label:after {
        background: url(../img/icons/check-icon-sm.svg) no-repeat center;
        opacity: 0;
        z-index: 5; }
    .auth-page .auth-content .checkbox-item input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0; }
    .auth-page .auth-content .checkbox-item input:checked ~ label:before {
      background: linear-gradient(to right, #5C2DA8, #B62A35);
      border-color: #B62A35; }
    .auth-page .auth-content .checkbox-item input:checked ~ label:after {
      opacity: 1; }
  .auth-page .auth-content .modal-link {
    cursor: pointer; }
  .auth-page .auth-content .btn-primary {
    width: 100%;
    margin-top: 15px; }

.auth-page .social-buttons {
  margin-bottom: 20px; }
  .auth-page .social-buttons .facebook-btn,
  .auth-page .social-buttons .google-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    outline: 0;
    cursor: pointer;
    padding: 7px;
    transition: 0.25s;
    height: 38px; }
    .auth-page .social-buttons .facebook-btn img,
    .auth-page .social-buttons .google-btn img {
      margin-right: 7px;
      margin-top: -2px; }
  .auth-page .social-buttons .facebook-btn {
    border: 1px solid #4267B0;
    background-color: #4267B0;
    color: #fff; }
    .auth-page .social-buttons .facebook-btn:hover {
      border: 1px solid #2b5bb9;
      background-color: #2b5bb9; }
  .auth-page .social-buttons .google-btn {
    background-color: #fff;
    border: 1px solid #c2c2c2; }
    .auth-page .social-buttons .google-btn:hover {
      border: 1px solid #333; }

.auth-page .form-divider {
  position: relative;
  margin: 30px 0;
  height: 10px; }
  .auth-page .form-divider:before {
    content: '';
    height: 1px;
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    background-color: #c2c2c2;
    z-index: 1; }
  .auth-page .form-divider i {
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    margin: 0 auto;
    width: 50px;
    z-index: 5;
    background-color: #fff;
    text-align: center;
    font-style: normal; }

.auth-page .link-text {
  text-align: center;
  margin-top: 30px; }
  .auth-page .link-text a {
    display: inline-block;
    background-color: #B62A35;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }

.auth-page .modal-content .close {
  position: absolute;
  right: 12px;
  top: 7px;
  opacity: 1;
  outline: 0; }
  .auth-page .modal-content .close img {
    width: 15px; }

.auth-page .modal-content .modal-header {
  justify-content: center;
  border: 0;
  padding: 30px 50px 10px;
  flex-wrap: wrap; }
  .auth-page .modal-content .modal-header h5 {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 500;
    text-align: center; }
  .auth-page .modal-content .modal-header .sub-title {
    color: #7a7a7a;
    font-size: 14px; }

.auth-page .modal-content .modal-body {
  padding: 5px 50px 45px; }
  .auth-page .modal-content .modal-body .btn-primary {
    margin-top: 5px;
    width: 100%; }

.auth-page .figure-container > div {
  position: absolute; }

.auth-page .figure-container .figure-1 {
  left: -1%;
  top: 10%; }

.auth-page .figure-container .figure-2 {
  right: -18%;
  top: 35%;
  width: 450px;
  height: 550px; }

.auth-page .figure-container .figure-3 {
  left: -5%;
  bottom: -3%; }

.auth-page .figure-container .figure-4 {
  right: 10%;
  top: 18%; }

.auth-page .figure-container .figure-5 {
  right: 5%;
  top: 22%; }

@media (max-width: 1699px) {
  .auth-page .figure-container .figure-4,
  .auth-page .figure-container .figure-5 {
    display: none; }
  .auth-page .figure-container .figure-2 {
    top: 10%; } }

@media (max-width: 1199px) {
  .auth-page .figure-container .figure-2 {
    right: -25%; } }

@media (max-width: 991px) {
  .auth-page .title-box h1 {
    font-size: 28px; }
  .auth-page .figure-container {
    display: none; }
  .auth-page .auth-content .info-group .tooltip-content {
    left: auto;
    right: -7px;
    top: -80px; }
    .auth-page .auth-content .info-group .tooltip-content:after {
      left: auto;
      right: 10px;
      top: auto;
      bottom: -6px;
      border-width: 8px 8px 0 8px;
      border-top-color: #fff;
      border-right-color: transparent; }
    .auth-page .auth-content .info-group .tooltip-content:before {
      top: auto;
      bottom: -8px;
      left: auto;
      right: 10px;
      border-width: 8px 8px 0 8px;
      border-right-color: transparent;
      border-top-color: rgba(0, 0, 0, 0.25); } }

@media (max-width: 767px) {
  .auth-page .title-box h1 {
    font-size: 24px; }
  .auth-page .page-content {
    padding: 50px 0; } }

@media (max-width: 575px) {
  .auth-page .auth-content {
    width: 100%; }
  .auth-page .modal-content .modal-header h5 {
    font-size: 18px; }
  .auth-page .modal-content .modal-header .sub-title {
    font-size: 13px; }
  .auth-page .modal-content .modal-body {
    padding: 5px 15px 30px; }
  .blocker {
    padding: 10px !important; }
  .modal {
    width: 100% !important; }
  .auth-page .modal-content .modal-header {
    padding: 30px 15px 10px; } }

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center; }

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em; }

.blocker.behind {
  background-color: transparent; }

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 550px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  box-shadow: 0 0 5px #000;
  text-align: left; }

.modal a.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icons/close-icon.svg); }

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px; }

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out; }

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

.catalog-section.add-animation .catalog-slider .item {
  opacity: 1;
  right: 0; }

.catalog-section .container {
  height: 100%;
  display: flex;
  align-items: center; }

.catalog-section .catalog-slider .slick-arrow.slick-next {
  border: 0; }

.catalog-section .catalog-slider .item {
  transition: all 0.5s linear;
  opacity: 0;
  position: relative;
  right: -100px; }
  .catalog-section .catalog-slider .item.slick-current + .item {
    transition-delay: 0.7s; }
    .catalog-section .catalog-slider .item.slick-current + .item + .item {
      transition-delay: 1.1s; }
      .catalog-section .catalog-slider .item.slick-current + .item + .item + .item {
        transition-delay: 1.5s; }

.grid-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1650px 1fr;
  align-items: center;
  position: relative; }

.slider-container {
  grid-area: 1 / 2 / 1 / 4;
  margin-right: -150px;
  margin-left: -25px;
  padding-left: 25px;
  overflow: hidden; }
  .slider-container .text-container {
    width: 1650px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px; }
    .slider-container .text-container .h2 {
      font-size: 50px;
      font-weight: 700;
      background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent; }
    .slider-container .text-container > .detail-link {
      text-align: right;
      margin-right: 10px; }
      .slider-container .text-container > .detail-link a {
        display: inline-block;
        color: #212121;
        right: 0;
        bottom: 0;
        position: relative;
        padding-right: 30px;
        font-weight: 500;
        font-size: 32px;
        text-decoration: none; }
        .slider-container .text-container > .detail-link a:after {
          content: '';
          width: 22px;
          height: 24px;
          background: url(../img/icons/arrow-right.svg) no-repeat center;
          background-size: 20px;
          position: absolute;
          right: 0;
          top: calc(50% - 12px);
          transition: 0.25s; }
        .slider-container .text-container > .detail-link a:hover:after {
          right: -5px; }

.catalog-slider .slick-track {
  display: flex; }

.catalog-slider .item {
  outline: 0;
  margin: 0 50px 0 0;
  display: flex;
  height: auto;
  max-width: 580px; }
  .catalog-slider .item .product-item {
    height: 100%; }

.catalog-slider .slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: 0;
  outline: 0;
  top: 190px;
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #5C2DA8, #B62A35);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center; }
  .catalog-slider .slick-arrow svg {
    width: 26px;
    height: 26px; }
  .catalog-slider .slick-arrow.slick-prev {
    display: none !important; }
  .catalog-slider .slick-arrow.slick-next {
    left: -25px; }

.product-item {
  position: relative;
  padding-bottom: 50px;
  width: 100%; }
  .product-item .product-code {
    color: #777; }
  .product-item .product-title {
    font-size: 24px;
    font-weight: 500;
    margin: 3px 0 5px;
    line-height: 1.2;
    letter-spacing: -0.1px; }
    .product-item .product-title a {
      color: #212121;
      text-decoration: none; }
  .product-item .product-img {
    height: 420px;
    margin-bottom: 10px;
    transition: 0.25s; }
    .product-item .product-img:hover {
      opacity: 0.8; }
    .product-item .product-img a {
      display: block;
      width: 100%;
      height: 100%; }
    .product-item .product-img picture {
      display: block;
      width: 100%;
      height: 100%; }
      .product-item .product-img picture img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .product-item .btn-primary {
    width: 50%; }
  .product-item .detail-link {
    width: 50%;
    text-align: center; }
    .product-item .detail-link a {
      display: inline-block;
      color: #212121;
      position: relative;
      padding-right: 20px;
      text-decoration: none; }
      .product-item .detail-link a:after {
        content: '';
        width: 16px;
        height: 16px;
        background: url(../img/icons/arrow-right.svg) no-repeat center;
        background-size: 12px;
        position: absolute;
        right: 0;
        top: calc(50% - 8px);
        transition: 0.25s; }
      .product-item .detail-link a:hover:after {
        right: -5px; }
  .product-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 10px 0;
    font-size: 14px; }
  .product-item p {
    font-size: 14px;
    margin: 0; }
  .product-item .product-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }

.catalog-page .page-content {
  position: relative; }

.catalog-page .figure-container > div {
  position: absolute; }

.catalog-page .figure-container .figure-2 {
  right: -16%;
  bottom: -2%; }

.catalog-page .figure-container .figure-4 {
  left: 5%;
  bottom: 10%; }

.catalog-page .figure-container .figure-5 {
  left: 8%;
  bottom: 4%; }

.catalog-page .catalog-head {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 50px; }
  .catalog-page .catalog-head .h1, .catalog-page .catalog-head h1 {
    font-size: 52px;
    margin: 0 auto 0 0;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }

.catalog-page .filters-container {
  display: flex; }

.catalog-page .filter-item {
  height: 42px;
  display: flex;
  margin-right: 15px;
  position: relative; }

.catalog-page .filter-toggle {
  padding: 5px 30px 5px 10px;
  position: relative;
  color: #212121;
  border: 0;
  outline: 0;
  background-color: transparent;
  border: 1px solid #aaa; }
  .catalog-page .filter-toggle:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    background: url(../img/icons/down-arrow.svg) no-repeat center;
    background-size: contain;
    transition: 0.25s; }
  .catalog-page .filter-toggle.active {
    border: 1px solid #212121; }
    .catalog-page .filter-toggle.active:after {
      transform: rotate(180deg); }

.catalog-page .flex-container {
  display: flex;
  flex-wrap: wrap; }

.catalog-page .filter-item .checkbox-container {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 10px;
  white-space: nowrap;
  margin: 8px 0;
  width: 50%;
  min-height: 20px; }

.catalog-page .filter-item .products-display {
  text-align: center;
  font-weight: 400;
  margin-bottom: -5px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.25s; }

.catalog-page .filter-item .products-display:hover span {
  text-decoration: underline; }

.catalog-page .filter-item .products-display b {
  font-weight: 600; }

.catalog-page .filter-item .checkbox-container input {
  position: absolute;
  top: 0;
  left: 0;
  display: none; }

.catalog-page .filter-item .checkbox-container input:checked + label:after {
  opacity: 1; }

.catalog-page .filter-item .checkbox-container input:checked + label i:after {
  border: 1px solid #5C2DA8;
  box-shadow: 0 0 0 2px rgba(9, 45, 168, 0.25); }

.catalog-page .filter-item .checkbox-container input:checked + label:before {
  background-color: #1a1a1a; }

.catalog-page .filter-item .checkbox-container label {
  width: 100%;
  margin: 0;
  cursor: pointer;
  min-width: 1px;
  vertical-align: top;
  text-overflow: ellipsis;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; }

.catalog-page .filter-item .checkbox-container label span {
  font-size: 13px;
  line-height: 1; }

.catalog-page .filter-item .checkbox-container label small {
  font-size: 12px;
  color: #777; }

.catalog-page .filter-item .checkbox-container.color-checkbox i {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px); }
  .catalog-page .filter-item .checkbox-container.color-checkbox i:after {
    content: '';
    border: 1px solid #aaa;
    position: absolute;
    top: -3px;
    left: -3px;
    bottom: -3px;
    right: -3px; }

.catalog-page .filter-item .checkbox-container.color-checkbox input:checked + label:after {
  opacity: 0; }

.catalog-page .filter-item .checkbox-container.color-checkbox input:checked + label {
  color: #000;
  font-weight: 600; }

.catalog-page .filter-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.01);
  border: 1px solid #aaa;
  padding: 15px 0 15px 15px;
  background-color: #fff;
  width: 360px;
  z-index: 10; }

.catalog-page .search-item {
  width: 300px;
  position: relative; }
  .catalog-page .search-item .form-control {
    display: block;
    width: 100%;
    border-radius: 0;
    outline: none;
    height: 42px;
    border: 1px solid #aaa;
    padding: 3px 50px 3px 12px; }
    .catalog-page .search-item .form-control:focus {
      border: 1px solid #5C2DA8;
      box-shadow: 0 0 0 3px rgba(92, 45, 168, 0.25); }
  .catalog-page .search-item .search-button {
    border: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 42px;
    background: transparent url(../img/icons/search-icon.svg) no-repeat center; }

.catalog-container .row {
  margin-left: -20px;
  margin-right: -20px; }

.catalog-container .col-sm-6.col-xl-4 {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column; }

.catalog-container .product-item {
  height: 100%; }
  .catalog-container .product-item .product-img {
    height: 320px; }
  .catalog-container .product-item .product-code {
    font-size: 14px; }
  .catalog-container .product-item .product-title {
    font-size: 20px;
    letter-spacing: -0.5px; }
  .catalog-container .product-item ul, .catalog-container .product-item p, .catalog-container .product-item li {
    font-size: 13px; }

.catalog-description {
  max-width: 1100px;
  margin: 30px auto 80px; }
  .catalog-description h2, .catalog-description .h2, .catalog-description h3, .catalog-description .h3 {
    font-size: 32px;
    text-align: center;
    font-weight: 500; }

.empty-search {
  text-align: center;
  padding: 100px 0; }
  .empty-search .h2 {
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    max-width: 500px;
    margin: 0 0 20px; }

@media (min-width: 1700px) {
  .catalog-container .col-xl-4 {
    flex: 0 0 25%;
    max-width: 25%; } }

@media (max-width: 2000px) {
  .catalog-section .product-item .product-img {
    height: 360px; }
  .catalog-section .product-item .product-title {
    font-size: 20px; }
  .catalog-section .product-item ul,
  .catalog-section .product-item p {
    font-size: 13px; }
  .catalog-section .slider-container .text-container .h2 {
    font-size: 42px; }
  .catalog-section .catalog-slider .slick-arrow {
    top: 160px; }
  .catalog-page .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1899px) {
  .catalog-container .product-item .product-img {
    height: 280px; }
  .catalog-container .product-item .product-title {
    font-size: 18px; }
  .catalog-section .catalog-slider .item {
    margin-right: 30px; }
  .grid-container {
    grid-template-columns: 1fr 1506px 1fr; }
  .slider-container .text-container {
    width: 1506px; }
  .catalog-section .slider-container .text-container .h2 {
    font-size: 36px; } }

@media (max-width: 1699px) {
  .catalog-container .product-item .product-img {
    height: 320px; }
  .catalog-container .product-item .product-title {
    font-size: 18px; }
  .catalog-page .catalog-head .h1,
  .catalog-page .catalog-head h1 {
    font-size: 42px; }
  .catalog-page .figure-container .figure-2 {
    display: none; }
  .catalog-page .figure-container .figure-4 {
    left: 1%;
    bottom: 5%; }
  .catalog-page .figure-container .figure-5 {
    left: 2%;
    bottom: 0; }
  .grid-container {
    grid-template-columns: 1fr 1290px 1fr; }
  .slider-container .text-container {
    width: 1290px; }
  .slider-container .text-container > .detail-link a {
    font-size: 28px; }
  .catalog-section .slider-container .text-container .h2 {
    font-size: 32px; }
  .catalog-section .product-item .product-title {
    font-size: 18px; }
  .catalog-section .slider-container .text-container {
    margin-bottom: 20px; }
  .catalog-section .catalog-slider .item {
    margin-right: 30px; }
  .catalog-section .product-item .product-img {
    height: 320px; }
  .catalog-section .product-item .detail-link a {
    font-size: 13px; }
  .catalog-section .catalog-slider .slick-arrow {
    top: 140px; } }

@media (max-width: 1439px) {
  .catalog-page .catalog-head .h1,
  .catalog-page .catalog-head h1 {
    font-size: 36px; }
  .catalog-page .filter-toggle {
    font-size: 14px; }
  .catalog-page .filter-item {
    height: 38px; }
  .catalog-page .search-item .form-control {
    height: 38px; }
  .catalog-page .search-item .search-button {
    height: 38px; }
  .grid-container {
    grid-template-columns: 1fr 1140px 1fr; }
  .catalog-section .slider-container {
    margin-right: -100px; }
  .slider-container .text-container {
    width: 1140px; }
  .catalog-section .catalog-slider .item {
    margin-right: 100px; }
  .catalog-section .product-item .product-code {
    font-size: 12px; }
  .catalog-section .product-item .product-img {
    height: 260px; }
  .catalog-section .product-item .product-title {
    font-size: 16px;
    margin-bottom: 15px; }
  .catalog-section .product-item ul,
  .catalog-section .product-item p {
    display: none; }
  .catalog-section .product-item .btn-primary {
    height: 38px;
    line-height: 38px;
    font-size: 13px; }
  .catalog-section .slider-container .text-container .h2 {
    font-size: 28px; }
  .slider-container .text-container > .detail-link a {
    font-size: 24px; }
  .slider-container .text-container > .detail-link a:after {
    background-size: 16px; }
  .catalog-section .catalog-slider .slick-arrow {
    top: 120px; } }

@media (max-width: 1199px) {
  .catalog-page .figure-container .figure-4,
  .catalog-page .figure-container .figure-5 {
    display: none; }
  .catalog-section .catalog-slider .item {
    right: auto;
    opacity: 1; }
  .grid-container {
    display: block;
    width: 960px;
    margin: 0 auto; }
  .catalog-section .slider-container {
    margin-right: 0;
    margin-left: 0;
    overflow: visible;
    padding-left: 0; }
  .slider-container .text-container {
    width: 100%;
    padding: 0 60px; }
  .catalog-section .catalog-slider {
    padding: 0 40px; }
  .catalog-section .catalog-slider .item {
    margin: 0 20px; }
  .catalog-section .catalog-slider .slick-arrow.slick-next {
    left: -5px;
    top: 165px; }
  .catalog-section .catalog-slider .slick-arrow.slick-prev {
    display: block !important;
    border: 0;
    right: -5px;
    top: 165px; }
  .catalog-section .product-item .product-title {
    font-size: 18px; }
  .catalog-section .product-item ul,
  .catalog-section .product-item p {
    display: block; }
  .catalog-section .product-item .product-img {
    height: 360px; } }

@media (max-width: 991px) {
  .catalog-page .catalog-head {
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px; }
    .catalog-page .catalog-head .h1, .catalog-page .catalog-head h1 {
      margin-bottom: 20px; }
    .catalog-page .catalog-head .filters-container {
      width: 100%; }
    .catalog-page .catalog-head .filter-item {
      flex: 0 0 25%; }
      .catalog-page .catalog-head .filter-item .filter-toggle {
        width: 100%;
        text-align: left; }
    .catalog-page .catalog-head .search-item {
      width: auto;
      flex-grow: 1; }
      .catalog-page .catalog-head .search-item .form-control {
        font-size: 14px; }
    .catalog-page .catalog-head .filter-dropdown {
      right: auto;
      left: 0; }
  .catalog-description h2,
  .catalog-description .h2,
  .catalog-description h3,
  .catalog-description .h3 {
    font-size: 28px; }
  .catalog-description p {
    font-size: 14px; }
  .grid-container {
    width: 720px; }
  .catalog-section .product-item .product-img {
    height: 280px; } }

@media (max-width: 767px) {
  .catalog-page .catalog-head .filters-container {
    display: block; }
  .catalog-page .catalog-head .filter-item {
    margin-right: 0;
    margin-bottom: 15px; }
  .catalog-page .catalog-head .filter-dropdown {
    width: 100%; }
  .catalog-page .catalog-head .h1, .catalog-page .catalog-head h1 {
    font-size: 28px;
    margin-bottom: 15px; }
  .catalog-container .product-item .product-img {
    height: 200px; }
  .catalog-container .product-item .product-title {
    font-size: 16px; }
  .catalog-container .product-item ul,
  .catalog-container .product-item p,
  .catalog-container .product-item li {
    font-size: 12px; }
  .catalog-container .product-item .detail-link a {
    font-size: 14px; }
  .catalog-container .product-item .btn-primary {
    font-size: 14px;
    padding: 0 10px; }
  .catalog-description h2,
  .catalog-description .h2,
  .catalog-description h3,
  .catalog-description .h3 {
    font-size: 24px; }
  .empty-search .h2 {
    font-size: 20px; }
  .grid-container {
    width: 540px;
    margin-top: 30px;
    margin-bottom: 30px; }
  .catalog-section .product-item .product-img {
    height: 360px; } }

@media (max-width: 575px) {
  .grid-container {
    width: 100%; }
  .catalog-section .slider-container .text-container {
    padding: 0 15px; }
  .catalog-section .catalog-container .product-item .product-img {
    height: 360px; }
  .catalog-section .catalog-slider .slick-arrow.slick-prev,
  .catalog-section .catalog-slider .slick-arrow.slick-next {
    display: none !important; }
  .catalog-section .catalog-slider .item {
    margin: 0 10px; }
  .catalog-section .catalog-slider {
    padding: 0; } }

@media (max-width: 479px) {
  .catalog-container .product-item .product-img {
    height: 320px; }
  .catalog-section .product-item .product-img {
    height: 300px; }
  .catalog-section .catalog-slider .slick-list {
    padding: 0 30px !important; }
  .catalog-section .slider-container .text-container .h2 {
    font-size: 26px; }
  .slider-container .text-container > .detail-link {
    margin-right: 0;
    margin-top: 5px; }
  .slider-container .text-container > .detail-link a {
    font-size: 16px;
    padding-right: 25px; }
  .slider-container .text-container > .detail-link a:after {
    width: 20px;
    height: 20px;
    background-size: 14px;
    top: calc(50% - 11px); } }

@media (max-width: 400px) {
  .catalog-page .filter-item .checkbox-container label small {
    max-width: 90px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block; }
  .catalog-container .product-item .product-img {
    height: 290px; }
  .catalog-page .catalog-head .filter-dropdown {
    padding: 10px 0 10px 10px; }
  .catalog-section .product-item .product-img {
    height: 270px; } }

@media (max-width: 375px) {
  .catalog-container .product-item .product-img {
    height: 260px; }
  .catalog-section .product-item .product-img {
    height: 220px; } }

.product-page #wrapper {
  overflow: visible; }

.product-page .page-content {
  padding-bottom: 30px; }
  .product-page .page-content .product-slider-container {
    position: sticky;
    top: 5px; }
  .product-page .page-content > .container > .row {
    margin-bottom: 150px; }
  .product-page .page-content > .container > .h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px; }

.product-page .product-slider {
  margin: 0 auto; }
  .product-page .product-slider.slick-initialized .item {
    display: block; }
  .product-page .product-slider .item {
    outline: 0;
    height: 520px;
    display: none;
    padding-top: 10px; }
    .product-page .product-slider .item a {
      display: block;
      width: 100%;
      height: 100%;
      outline: 0; }
    .product-page .product-slider .item:first-child {
      display: block; }
    .product-page .product-slider .item picture {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0 auto; }
    .product-page .product-slider .item img {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      object-fit: cover; }
    .product-page .product-slider .item a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      outline: 0; }

.product-page .product-slider-nav {
  margin-top: 20px; }
  .product-page .product-slider-nav.slick-initialized .item {
    opacity: 1; }
  .product-page .product-slider-nav .item {
    border: 1px solid transparent;
    margin: 0 15px;
    outline: none;
    position: relative;
    cursor: pointer;
    opacity: 0;
    height: 150px;
    width: 210px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center; }
    .product-page .product-slider-nav .item picture {
      display: block;
      width: 100%;
      height: 100%; }
    .product-page .product-slider-nav .item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .product-page .product-slider-nav .slick-arrow {
    display: none !important;
    position: absolute;
    left: 0;
    z-index: 10;
    height: 20px;
    width: 100%;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #fff; }
    .product-page .product-slider-nav .slick-arrow:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      position: absolute;
      left: 0;
      right: 0;
      top: 3px;
      margin: 0 auto; }
    .product-page .product-slider-nav .slick-arrow.prev-arrow {
      bottom: -3px; }
      .product-page .product-slider-nav .slick-arrow.prev-arrow:before {
        border-top: 14px solid #c2c2c2; }
    .product-page .product-slider-nav .slick-arrow.next-arrow {
      top: -2px; }
      .product-page .product-slider-nav .slick-arrow.next-arrow:before {
        border-bottom: 14px solid #c2c2c2; }

.product-page .product-code {
  color: #777; }
  .product-page .product-code span {
    color: #212121; }

.product-page .download-link {
  font-size: 18px;
  text-decoration: underline;
  color: #212121;
  padding-left: 55px;
  position: relative;
  display: inline-block;
  margin: 20px 0; }
  .product-page .download-link:before {
    content: '';
    position: absolute;
    left: 0;
    width: 45px;
    height: 45px;
    top: calc(50% - 22px);
    background: url(../img/icons/pdf-icon.svg) no-repeat center; }

.product-page .product-description {
  padding-left: 20px;
  color: #313131; }
  .product-page .product-description .subtitle {
    margin-bottom: 10px; }
  .product-page .product-description .h1, .product-page .product-description h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 5px; }
  .product-page .product-description .h2, .product-page .product-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 10px; }
  .product-page .product-description .h3, .product-page .product-description h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0; }
  .product-page .product-description p {
    margin: 0 0 10px; }
  .product-page .product-description ul {
    display: flex;
    flex-wrap: wrap;
    width: 900px;
    margin: 20px 0;
    padding: 0;
    list-style: none; }
    .product-page .product-description ul li {
      width: 50%;
      position: relative;
      margin-bottom: 8px;
      padding-left: 20px;
      padding-right: 50px; }
      .product-page .product-description ul li:before {
        content: '';
        width: 16px;
        height: 10px;
        position: absolute;
        left: 0;
        top: 6px;
        background: url(../img/icons/right-arrow-angle.svg) no-repeat center;
        background-size: contain; }
  .product-page .product-description .col-xl-6 .h3 {
    margin-top: 0; }
  .product-page .product-description .product-cost {
    margin-bottom: 10px; }
  .product-page .product-description .default-cost {
    font-size: 24px; }
    .product-page .product-description .default-cost span {
      font-size: 28px;
      font-weight: 700; }
  .product-page .product-description .new-cost {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px; }
    .product-page .product-description .new-cost span {
      font-size: 25px;
      font-weight: 700; }
  .product-page .product-description .old-cost {
    display: inline-block;
    vertical-align: bottom;
    color: red;
    font-size: 18px;
    line-height: 1;
    position: relative; }
    .product-page .product-description .old-cost:after {
      content: '';
      height: 1px;
      left: -1px;
      right: -1px;
      background-color: red;
      position: absolute;
      top: 49%; }
  .product-page .product-description .buttons-box {
    margin: 20px 0;
    display: flex;
    align-items: center; }
    .product-page .product-description .buttons-box a, .product-page .product-description .buttons-box button {
      width: 300px; }
    .product-page .product-description .buttons-box .btn-main {
      margin-right: 30px; }
  .product-page .product-description .btn-success {
    width: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 8px;
    height: 40px; }
    .product-page .product-description .btn-success span {
      margin-right: 10px; }
    .product-page .product-description .btn-success .default-icon {
      display: block; }
    .product-page .product-description .btn-success .active-icon {
      width: 22px;
      display: none; }
    .product-page .product-description .btn-success.added .default-icon {
      display: none; }
    .product-page .product-description .btn-success.added .active-icon {
      display: block; }

.product-page .colors-box {
  display: flex;
  flex-wrap: wrap; }
  .product-page .colors-box .color-item {
    font-size: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 1px;
    margin-right: 15px; }

.product-page .product-properties {
  display: flex;
  flex-wrap: wrap; }

.product-page .property-item {
  width: 100px;
  margin-right: 15px;
  margin-bottom: 15px;
  text-align: center; }
  .product-page .property-item img {
    display: block;
    width: 70px;
    margin: 0 auto 10px; }
  .product-page .property-item .item-text {
    font-size: 14px;
    line-height: 1.3; }

.product-page .product-col {
  padding-left: 40px; }
  .product-page .product-col .h2 {
    font-size: 24px;
    font-weight: 400; }
  .product-page .product-col .product-description {
    padding-left: 0; }

.product-page .catalog-slider {
  margin: 0 -15px 80px; }
  .product-page .catalog-slider .item {
    margin: 0 15px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 360px; }
  .product-page .catalog-slider .product-item .product-code {
    font-size: 14px; }
  .product-page .catalog-slider .product-item .product-title {
    font-size: 20px; }
  .product-page .catalog-slider .slick-arrow {
    top: 165px; }
    .product-page .catalog-slider .slick-arrow.slick-next {
      right: -70px;
      left: auto;
      transform: rotate(180deg); }
    .product-page .catalog-slider .slick-arrow.slick-prev {
      padding-top: 2px;
      padding-bottom: 0;
      left: -70px;
      transform: rotate(180deg);
      display: block !important; }

.cart-item {
  border-top: 1px solid #c2c2c2;
  padding: 15px 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center; }
  .cart-item .remove-item {
    position: absolute;
    top: 8px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url(../img/icons/trash-icon.svg) no-repeat center;
    background-size: 18px; }
  .cart-item:first-child {
    border-top: 0; }
  .cart-item .text-block {
    margin-right: 20px;
    flex-grow: 1; }
  .cart-item .calc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -15px; }
  .cart-item .img-block {
    width: 80px;
    flex: 0 0 80px;
    height: 70px;
    margin-right: 15px;
    overflow: hidden;
    transition: 0.3s; }
    .cart-item .img-block a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%; }
    .cart-item .img-block picture {
      display: block;
      width: 100%;
      height: 100%; }
    .cart-item .img-block img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .cart-item .img-block:hover, .cart-item .img-block:focus {
      opacity: 0.7; }
  .cart-item .title {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 500;
    line-height: 1.3; }
    .cart-item .title a {
      color: inherit;
      text-decoration: none; }
  .cart-item .descr-text {
    margin: 0;
    font-size: 13px; }
  .cart-item .title-amount {
    font-weight: 500; }
  .cart-item .product-sum,
  .cart-item .product-cost {
    margin: 40px 0 0;
    font-size: 16px;
    width: 120px;
    font-weight: 500;
    text-align: right; }
  .cart-item .default-cost {
    font-size: 16px; }
    .cart-item .default-cost span {
      font-size: 20px;
      font-weight: 700; }
  .cart-item .new-cost {
    font-size: 16px;
    line-height: 1;
    margin-top: -7px; }
    .cart-item .new-cost span {
      font-size: 20px;
      font-weight: 700; }
  .cart-item .old-cost {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -5px; }
    .cart-item .old-cost:after {
      content: '';
      height: 1px;
      left: -1px;
      right: -1px;
      position: absolute;
      top: 49%; }
  .cart-item .close-btn {
    width: 18px;
    height: 18px;
    background: url(../img/icons/close-icon.svg) no-repeat center;
    background-size: 6px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -15px;
    outline: none;
    font-size: 16px;
    text-align: center;
    border-radius: 100%;
    transition: 0.3s;
    cursor: pointer; }
    .cart-item .close-btn:hover {
      transform: rotate(90deg); }

.modal-content .close {
  position: absolute;
  right: 12px;
  top: 7px;
  opacity: 1;
  outline: 0; }
  .modal-content .close img {
    width: 15px; }

.modal-content .modal-header {
  justify-content: center;
  border: 0;
  padding: 25px 45px 10px;
  flex-wrap: wrap; }
  .modal-content .modal-header h5 {
    font-size: 28px;
    margin: 0 0 5px;
    font-weight: 500;
    text-align: center; }
  .modal-content .modal-header .sub-title {
    font-size: 14px; }

.modal-content .modal-body {
  padding: 5px 45px 45px; }
  .modal-content .modal-body .btn-success {
    margin-top: 5px; }

.modal-content .total-sum {
  text-align: right; }
  .modal-content .total-sum b {
    font-size: 18px; }

.modal-content .btn-main {
  display: block;
  width: 100%;
  margin-top: 10px; }

@media (max-width: 1899px) {
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 36px; }
  .product-page .product-slider .item {
    height: 480px; }
  .product-page .page-content > .container > .h2 {
    font-size: 32px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 320px; }
  .product-page .catalog-slider .product-item .product-title {
    font-size: 18px; }
  .product-page .catalog-slider .product-item .btn-primary {
    font-size: 14px; }
  .product-page .catalog-slider .product-item .detail-link a {
    font-size: 14px; } }

@media (max-width: 1699px) {
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 32px; }
  .product-page .product-slider .item {
    height: 420px; }
  .product-page .page-content > .container > .h2 {
    font-size: 28px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 280px; }
  .product-page .catalog-slider .product-item ul,
  .product-page .catalog-slider .product-item p {
    font-size: 13px; }
  .product-page .catalog-slider .slick-arrow.slick-next {
    right: -50px; }
  .product-page .catalog-slider .slick-arrow.slick-prev {
    left: -50px; }
  .product-page .product-description ul {
    width: 100%; }
  .product-page .product-slider-nav .item {
    margin: 0; } }

@media (max-width: 1439px) {
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 28px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 300px; }
  .product-page .catalog-slider {
    padding-left: 50px;
    padding-right: 50px; }
  .product-page .catalog-slider .slick-arrow.slick-next {
    right: 0; }
  .product-page .catalog-slider .slick-arrow.slick-prev {
    left: 0; }
  .product-page .product-slider .item {
    height: 380px; }
  .product-page .product-description p {
    font-size: 14px; }
  .product-page .download-link {
    font-size: 16px; }
  .product-page .page-content > .container > .row {
    margin-bottom: 100px; }
  .product-page .page-content > .container > .h2 {
    font-size: 26px; }
  .product-page .product-description ul {
    font-size: 14px; } }

@media (max-width: 1199px) {
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 24px; }
  .product-page .product-description .default-cost {
    font-size: 18px; }
    .product-page .product-description .default-cost span {
      font-size: 22px; }
  .product-page .product-slider .item {
    height: 320px; }
  .product-page .product-slider-nav .item {
    height: 120px;
    width: 160px;
    margin: 0 8px; }
  .product-page .page-content > .container > .h2 {
    font-size: 24px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 360px; }
  .product-page .product-description .col-xl-6 {
    margin-bottom: 20px; }
    .product-page .product-description .col-xl-6 .h3 {
      margin-bottom: 10px; } }

@media (max-width: 991px) {
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 24px; }
  .product-page .product-slider .item {
    height: 520px; }
  .product-page .product-slider-nav .item {
    height: 150px;
    width: 210px;
    margin: 0 15px; }
  .product-slider-container {
    margin-bottom: 30px; }
  .product-page .product-description {
    padding-left: 0; }
  .product-page .page-content > .container > .row {
    margin-bottom: 50px; }
  .product-page .page-content > .container > .h2 {
    text-align: center; }
  .product-page .catalog-slider .product-item .product-img {
    height: 280px; } }

@media (max-width: 767px) {
  .product-page .product-slider .item {
    height: 380px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 360px; } }

@media (max-width: 575px) {
  .product-page .product-slider .item {
    height: 360px; }
  .product-page .product-slider-nav .item {
    height: 120px;
    width: 160px;
    margin: 0 8px; }
  .product-page .product-code {
    font-size: 14px; }
  .product-page .download-link {
    font-size: 14px; }
  .product-page .product-description .h1,
  .product-page .product-description h1 {
    font-size: 20px; }
  .product-page .product-description .buttons-box a,
  .product-page .product-description .buttons-box button {
    font-size: 14px;
    width: 50%; }
  .product-page .catalog-slider {
    padding-left: 0;
    padding-right: 0; }
  .product-page .catalog-slider .slick-arrow {
    display: none !important; }
  .product-page .catalog-slider .slick-arrow.slick-prev {
    display: none !important; }
  .product-page .catalog-slider .item {
    margin: 0 10px; }
  .modal-content .modal-header {
    padding: 25px 15px 15px; }
  .modal-content .modal-body {
    padding: 5px 15px 25px; }
  .cart-item .title {
    font-size: 14px; }
  .cart-item .descr-text {
    font-size: 12px; }
  .cart-item .product-sum,
  .cart-item .product-cost {
    font-size: 14px;
    white-space: nowrap;
    width: 90px; } }

@media (max-width: 479px) {
  .product-page .product-slider .item {
    height: 320px; }
  .product-page .product-slider-nav .item {
    height: 120px;
    width: 160px;
    margin: 0 8px; }
  .product-page .product-description .buttons-box {
    flex-wrap: wrap; }
  .product-page .product-description .buttons-box a,
  .product-page .product-description .buttons-box button {
    width: 100%;
    margin: 10px 0 !important; }
  .product-page .catalog-slider .slick-list {
    padding: 0 30px !important; }
  .product-page .catalog-slider .product-item .product-img {
    height: 300px; } }

@media (max-width: 420px) {
  .product-page .product-slider .item {
    height: 300px; }
  .product-page .product-slider-nav .item {
    height: 100px;
    width: 120px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 270px; }
  .product-page .catalog-slider .product-item .product-title {
    font-size: 16px; } }

@media (max-width: 400px) {
  .cart-item .calc-wrap {
    width: 100%;
    text-align: left;
    margin-top: 0;
    display: block; }
  .cart-item {
    flex-wrap: wrap;
    padding-left: 90px; }
  .cart-item .img-block {
    position: absolute;
    left: 0;
    top: 15px; }
  .cart-item .text-block {
    margin-right: 25px; }
  .cart-item .product-sum,
  .cart-item .product-cost {
    width: 100%;
    margin-top: 0; } }

@media (max-width: 375px) {
  .product-page .product-slider .item {
    height: 280px; }
  .product-page .catalog-slider .product-item .product-img {
    height: 220px; }
  .product-page .product-slider-nav .item {
    height: 90px;
    width: 110px; }
  .product-page .catalog-slider .product-item .detail-link a {
    font-size: 13px; }
  .product-page .catalog-slider .product-item .btn-primary {
    font-size: 13px; } }

.about-page .page-content {
  padding: 120px 0 0;
  position: relative; }
  .about-page .page-content .h1, .about-page .page-content h1 {
    font-size: 50px;
    display: inline-block;
    margin: 150px 0 20px;
    background-image: linear-gradient(to right, #5C2DA8 5%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .about-page .page-content .h2 {
    width: auto;
    font-size: 50px;
    display: inline-block;
    margin: 150px 0 10px;
    font-weight: 700;
    background-image: linear-gradient(to right, #5C2DA8, #B62A35);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .about-page .page-content .row {
    margin-bottom: 200px; }
  .about-page .page-content .text-container {
    margin-bottom: 200px;
    max-width: 800px; }
    .about-page .page-content .text-container p {
      font-size: 20px;
      margin: 0 0 30px; }

.about-page .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .about-page .col-md-6 picture {
    display: block;
    max-width: 800px; }
  .about-page .col-md-6 img {
    max-width: 800px;
    display: block; }
  .about-page .col-md-6.pull-right {
    align-items: flex-end; }
    .about-page .col-md-6.pull-right picture {
      max-width: 600px; }
    .about-page .col-md-6.pull-right img {
      max-width: 600px; }
  .about-page .col-md-6.pull-left {
    align-items: flex-start; }
    .about-page .col-md-6.pull-left picture {
      max-width: 600px; }
    .about-page .col-md-6.pull-left img {
      max-width: 600px; }
  .about-page .col-md-6 .detail-link {
    margin-top: 25px; }
    .about-page .col-md-6 .detail-link a {
      display: inline-block;
      color: #212121;
      right: 0;
      bottom: 0;
      position: relative;
      padding-right: 30px;
      font-weight: 500;
      font-size: 36px;
      text-decoration: underline; }
      .about-page .col-md-6 .detail-link a:after {
        content: '';
        width: 22px;
        height: 24px;
        background: url(../img/icons/arrow-right.svg) no-repeat center;
        background-size: 20px;
        position: absolute;
        right: 0;
        top: calc(50% - 11px);
        transition: 0.25s; }
      .about-page .col-md-6 .detail-link a:hover {
        text-decoration: none; }
        .about-page .col-md-6 .detail-link a:hover:after {
          right: -5px; }

.about-page .figure-container > div {
  position: absolute; }

.about-page .figure-container .figure-1 {
  left: 3%;
  top: 3%; }

.about-page .figure-container .figure-3 {
  left: -1%;
  top: 50%; }

.about-page .figure-container .figure-4 {
  right: 8%;
  top: 25%; }

.about-page .figure-container .figure-5 {
  right: 3%;
  top: 27%; }

.about-page .figure-container .figure-6 {
  right: 3%;
  top: 80%; }

.about-page .figure-container .figure-7 {
  z-index: 100;
  width: 150px;
  height: 150px;
  background: url(../img/icons/figure-3.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-2 16s linear infinite;
  transform-origin: center;
  left: 3%;
  bottom: 1%; }

.slider-box {
  margin-top: -150px; }

.about-slider {
  margin: -150px 0 200px; }
  .about-slider .item {
    margin: 0 25px;
    position: relative;
    outline: none; }
    .about-slider .item:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.4);
      pointer-events: none; }
    .about-slider .item.slick-current.slick-active:after {
      display: none; }
  .about-slider picture {
    width: 100%;
    height: 500px; }
  .about-slider img {
    display: block;
    height: 500px; }

@media (max-width: 1899px) {
  .about-page .col-md-6.pull-right img {
    max-width: 450px; }
  .about-page .page-content .text-container {
    margin-bottom: 150px; }
  .about-page .col-md-6 img {
    max-width: 700px; }
  .about-slider {
    margin: -50px 0 150px; } }

@media (max-width: 1799px) {
  .about-page .col-md-6.pull-right img {
    max-width: 400px; }
  .about-page .page-content .text-container {
    margin-bottom: 120px; }
  .about-page .col-md-6 img {
    max-width: 550px; }
  .about-page .col-md-6.pull-left img {
    max-width: 400px; }
  .about-page .page-content .row {
    margin-bottom: 150px; }
  .about-page .page-content .text-container p {
    font-size: 18px; }
  .about-page .page-content .h2 {
    font-size: 42px; } }

@media (max-width: 1439px) {
  .about-page .col-md-6 .detail-link a {
    font-size: 28px; }
  .about-page .page-content .h1,
  .about-page .page-content h1 {
    font-size: 42px; }
  .about-page .page-content .h2 {
    font-size: 36px; }
  .about-slider img {
    height: 400px; }
  .about-slider {
    margin: -20px 0 100px; }
  .about-slider .item {
    margin: 0 15px; }
  .about-page .figure-container .figure-3 {
    left: -6%;
    top: 48%; }
  .about-page .figure-container .figure-4 {
    top: 22%; }
  .about-page .figure-container .figure-5 {
    top: 23%; } }

@media (max-width: 1199px) {
  .about-page .col-md-6.pull-right img {
    max-width: 300px; }
  .about-page .page-content .text-container {
    margin-bottom: 80px; }
  .about-page .col-md-6 img {
    max-width: 400px; }
  .about-page .col-md-6.pull-left img {
    max-width: 300px; }
  .about-page .page-content .row {
    margin-bottom: 150px; }
  .about-page .page-content .text-container p {
    font-size: 16px; }
  .about-page .col-md-6 .detail-link a {
    font-size: 24px; }
  .about-page .col-md-6 .detail-link a:after {
    width: 18px;
    height: 20px;
    top: calc(50% - 9px);
    background-size: 18px; }
  .about-page .page-content .h1,
  .about-page .page-content h1 {
    font-size: 36px; }
  .about-page .page-content .h2 {
    font-size: 32px; } }

@media (max-width: 991px) {
  .about-page .page-content .h1,
  .about-page .page-content h1 {
    font-size: 32px;
    margin-top: 80px; }
  .about-page .col-md-6.pull-right img {
    max-width: 250px; }
  .about-page .col-md-6.pull-left img {
    max-width: 250px; }
  .about-page .col-md-6 img {
    max-width: 100%; }
  .about-page .page-content .text-container p {
    font-size: 14px; }
  .about-page .page-content .h2 {
    font-size: 28px; }
  .about-slider .item {
    margin: 0 10px; }
  .about-slider .item img {
    height: 350px; }
  .about-page .page-content .h2 {
    margin-top: 50px; }
  .about-page .page-content .row {
    margin-bottom: 100px; } }

@media (max-width: 767px) {
  .about-page .page-content {
    padding-top: 30px; }
  .about-page .page-content .h1,
  .about-page .page-content h1 {
    margin-top: 30px; }
  .about-page .page-content .text-container {
    margin-bottom: 30px; }
  .about-page .col-md-6 img {
    max-width: 220px; }
  .about-page .page-content .row {
    margin-bottom: 50px; }
  .about-page .col-md-6 .detail-link {
    margin-top: 15px; }
  .about-page .col-md-6 .detail-link a {
    font-size: 18px;
    padding-right: 20px; }
  .about-page .col-md-6.pull-right {
    margin-top: -80px; }
  .about-page .col-md-6.pull-right img {
    max-width: 180px; }
  .about-page .col-md-6 .detail-link a:after {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    background-size: 14px; }
  .about-page .col-md-6.pull-left {
    order: 5;
    align-items: flex-end; }
  .about-page .col-md-6.pull-left img {
    max-width: 200px; }
  .slider-box {
    margin-top: -30px; }
  .about-slider {
    margin: 0 0 50px; }
  .about-slider .item img {
    height: 300px; }
  .about-page .col-md-6 .sectificate-img {
    margin: 50px 0 0;
    width: 100%; }
  .about-page .col-md-6 .sectificate-img img {
    margin-top: 0;
    margin: 0 auto; }
  .about-page .figure-container .figure-5 {
    display: none; } }

@media (max-width: 575px) {
  .about-page .figure-container {
    display: none !important; } }

@media (max-width: 479px) {
  .about-page .col-md-6 img {
    max-width: 280px; }
  .about-page .col-md-6.pull-right {
    margin-top: -15px; }
  .about-page .col-md-6.pull-right img {
    max-width: 200px; }
  .about-page .col-md-6.pull-left {
    margin-top: -15px; }
  .about-page .col-md-6.pull-left img {
    max-width: 200px; }
  .about-page .col-md-6 .detail-link {
    background-color: #fff;
    padding: 5px 8px 5px 5px;
    position: relative;
    top: -35px; }
  .about-page .col-md-6 .detail-link a {
    text-decoration: none; }
  .about-page .page-content .row {
    margin-bottom: 20px; }
  .about-slider .item img {
    height: 250px; }
  .about-slider .item {
    margin: 0 5px; }
  .about-page .page-content .h2 {
    margin-top: 0; }
  .about-page .col-md-6 .sectificate-img {
    margin-top: 0; } }

@media (max-width: 400px) {
  .about-slider .item img {
    height: 220px; } }

.contacts-section .container-fluid {
  height: 100%;
  padding: 0; }
  .contacts-section .container-fluid .row {
    height: 100%; }
  .contacts-section .container-fluid .col-xl-6 {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center; }
    .contacts-section .container-fluid .col-xl-6:first-child {
      padding-right: 50px; }
    .contacts-section .container-fluid .col-xl-6:last-child {
      padding-left: 50px;
      padding-bottom: 30px; }

.contacts-section iframe {
  height: 100% !important;
  width: 100% !important; }

.contacts-section .address-box {
  width: 100%;
  margin-bottom: 40px; }
  .contacts-section .address-box .h2 {
    font-weight: 700;
    font-size: 50px;
    display: inline-block;
    margin: 0 0 30px;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .contacts-section .address-box p {
    margin: 0 0 5px; }
  .contacts-section .address-box img {
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    max-height: 20px; }
  .contacts-section .address-box ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .contacts-section .address-box ul li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px; }
      .contacts-section .address-box ul li:first-child img {
        top: calc(50% - 12px); }
      .contacts-section .address-box ul li a {
        text-decoration: none;
        color: #212121; }
        .contacts-section .address-box ul li a:hover {
          text-decoration: underline; }

.contacts-section .form-container {
  width: 380px; }
  .contacts-section .form-container .h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px; }
  .contacts-section .form-container .sub-text {
    margin-bottom: 30px; }
  .contacts-section .form-container .btn-primary {
    width: 100%; }

.contacts-section .main-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff; }
  .contacts-section .main-footer .footer-content {
    display: none; }
  .contacts-section .main-footer .footer-bottom {
    padding: 20px 0; }

.contacts-page .main-content {
  padding-top: 10px; }
  .contacts-page .main-content .container-fluid {
    height: calc(100vh - 172px);
    padding: 0; }
    .contacts-page .main-content .container-fluid .row {
      height: 100%; }
    .contacts-page .main-content .container-fluid .col-xl-6 {
      height: 100%;
      display: flex;
      align-items: center; }
      .contacts-page .main-content .container-fluid .col-xl-6:first-child {
        padding-right: 50px; }
      .contacts-page .main-content .container-fluid .col-xl-6:last-child {
        padding-left: 50px;
        padding-bottom: 30px; }

.contacts-page iframe {
  height: 100% !important;
  width: 100% !important; }

.contacts-page .address-box {
  width: 100%;
  margin-bottom: 40px; }
  .contacts-page .address-box .h2 {
    font-weight: 700;
    font-size: 50px;
    display: inline-block;
    margin: 0 0 30px;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .contacts-page .address-box p {
    margin: 0 0 5px; }
  .contacts-page .address-box img {
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    max-height: 20px; }
  .contacts-page .address-box ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .contacts-page .address-box ul li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px; }
      .contacts-page .address-box ul li:first-child img {
        top: calc(50% - 12px); }
      .contacts-page .address-box ul li a {
        text-decoration: none;
        color: #212121; }
        .contacts-page .address-box ul li a:hover {
          text-decoration: underline; }

.contacts-page .form-container {
  width: 380px; }
  .contacts-page .form-container .h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px; }
  .contacts-page .form-container .sub-text {
    margin-bottom: 30px; }
  .contacts-page .form-container .btn-primary {
    width: 100%; }

.contacts-page .main-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff; }
  .contacts-page .main-footer .footer-content {
    display: none; }
  .contacts-page .main-footer .footer-bottom {
    padding: 20px 0;
    background-color: #fff; }

.contacts-page .figure-container > div {
  position: absolute; }

.contacts-page .figure-container .figure-1 {
  right: 5%;
  top: 15%; }

.contacts-page .figure-container .figure-2 {
  right: -12%;
  top: 30%; }

.contacts-page .figure-container .figure-5 {
  right: 12%;
  bottom: 10%; }

@media (max-width: 2000px) {
  .contacts-page .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1699px) {
  .contacts-section .address-box .h2 {
    font-size: 32px;
    margin-bottom: 10px; }
  .contacts-section .address-box {
    margin-bottom: 20px; }
  .contacts-section .address-box p {
    margin: 0;
    line-height: 1.3; }
  .contacts-section .form-container .sub-text {
    font-size: 13px; }
  .contacts-section .address-box ul li {
    font-size: 14px; }
  .contacts-section .form-group .form-control {
    height: 36px;
    font-size: 14px; }
  .contacts-section .form-container .btn-primary {
    height: 36px;
    line-height: 36px;
    font-size: 14px; }
  .contacts-section .form-container .h3 {
    font-size: 20px; }
  .contacts-page .address-box .h2 {
    font-size: 32px;
    margin-bottom: 10px; }
  .contacts-page .address-box {
    margin-bottom: 20px; }
  .contacts-page .address-box p {
    margin: 0;
    line-height: 1.3; }
  .contacts-page .form-container .sub-text {
    font-size: 13px; }
  .contacts-page .address-box ul li {
    font-size: 14px; }
  .contacts-page .main-content .container-fluid {
    height: calc(100vh - 125px); }
  .contacts-page .form-group .form-control {
    height: 36px;
    font-size: 14px; }
  .contacts-page .form-container .btn-primary {
    height: 36px;
    line-height: 36px;
    font-size: 14px; }
  .contacts-page .form-container .h3 {
    font-size: 20px; }
  .contacts-page .figure-container .figure-2 {
    width: 400px;
    height: 500px;
    top: calc(50% - 250px); }
  .contacts-page .figure-container .figure-5 {
    display: none; } }

@media (max-width: 1199px) {
  .contacts-section .container-fluid .row {
    flex-direction: column-reverse; }
  .contacts-section .container-fluid {
    height: auto;
    width: 960px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto; }
  .contacts-section .container-fluid .col-xl-6 {
    display: block;
    height: auto;
    padding-left: 15px !important;
    padding-right: 15px !important; }
  .contacts-section .address-box {
    width: auto;
    margin-right: 50px; }
  .contacts-section .contacts-content {
    display: flex;
    justify-content: center;
    padding: 50px 0; }
  .contacts-section iframe {
    height: 400px !important; }
  .contacts-section .address-box .h2 {
    margin-bottom: 25px; }
  .contacts-page .main-content .container-fluid .row {
    flex-direction: column-reverse; }
  .contacts-page .main-content .container-fluid {
    height: auto; }
  .contacts-page .main-content .container-fluid .col-xl-6 {
    display: block;
    height: auto; }
  .contacts-page .main-content .container-fluid {
    width: 960px;
    margin: 0 auto;
    padding: 0 15px; }
  .contacts-page .address-box {
    width: auto;
    margin-right: 50px; }
  .contacts-page .contacts-content {
    display: flex;
    justify-content: center;
    padding: 50px 0; }
  .contacts-page .main-content .container-fluid .col-xl-6:last-child {
    padding-left: 15px; }
  .contacts-page .main-content .container-fluid .col-xl-6:first-child {
    padding-right: 15px; }
  .contacts-page iframe {
    height: 400px !important; }
  .contacts-page .figure-container .figure-2 {
    display: none; }
  .contacts-page .aside-social {
    position: static;
    display: block; }
  .contacts-page .aside-social a {
    display: inline-block;
    margin-right: 15px; }
  .contacts-page .main-footer {
    position: relative; }
  .contacts-page .main-content {
    padding-bottom: 30px; }
  .contacts-page .address-box .h2 {
    margin-bottom: 25px; } }

@media (max-width: 991px) {
  .contacts-page .main-content .container-fluid {
    width: 720px; }
  .contacts-section .container-fluid {
    width: 720px; } }

@media (max-width: 767px) {
  .contacts-section .container-fluid {
    width: 540px;
    padding-bottom: 35px; }
  .contacts-section .contacts-content {
    display: block; }
  .contacts-section .form-container {
    width: 100%; }
  .contacts-section .address-box .h2 {
    font-size: 28px; }
  .contacts-section .contacts-content {
    padding: 20px 0; }
  .contacts-page .main-content .container-fluid {
    width: 540px; }
  .contacts-page .contacts-content {
    display: block; }
  .contacts-page .form-container {
    width: 100%; }
  .contacts-page .address-box .h2 {
    font-size: 28px; }
  .contacts-page .main-content .container-fluid .col-xl-6:last-child {
    padding-bottom: 0; } }

@media (max-width: 575px) {
  .contacts-page .main-content .container-fluid {
    width: 100%; }
  .contacts-section .container-fluid {
    width: 100%; } }

.cabinet-page .page-content {
  padding: 0 0 80px; }

.cabinet-page h1, .cabinet-page .h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 40px; }

.cabinet-page .nav-tabs {
  display: block;
  border: 0; }
  .cabinet-page .nav-tabs .nav-link {
    display: block;
    border: 1px solid #c2c2c2;
    margin-bottom: 15px;
    color: #212121;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px; }
    .cabinet-page .nav-tabs .nav-link.active {
      border: 1px solid #888;
      background-color: #B62A35;
      background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent; }

.cabinet-page .tab-pane {
  padding-left: 30px; }
  .cabinet-page .tab-pane .h4 {
    font-size: 22px;
    margin: 0 0 15px;
    font-weight: 700; }
  .cabinet-page .tab-pane .h3 {
    font-size: 24px;
    margin: 0 0 20px;
    font-weight: 400; }
  .cabinet-page .tab-pane .col-xl-6 {
    margin-top: 20px; }
    .cabinet-page .tab-pane .col-xl-6:last-child {
      display: flex;
      justify-content: flex-end; }

.cabinet-page .form-group {
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative; }
  .cabinet-page .form-group label {
    margin-bottom: 1px; }
  .cabinet-page .form-group .form-control {
    font-size: 15px;
    height: 42px;
    width: 360px; }

.cabinet-page .btn-primary {
  width: 360px;
  display: block;
  border-radius: 3px;
  margin-top: 8px; }

.cabinet-page .card {
  border: 0;
  margin-bottom: 15px; }

.cabinet-page .card-header {
  border: 0;
  background-color: #F6F7F9;
  padding: 0; }

.cabinet-page .btn-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px 10px 65px;
  cursor: pointer; }
  .cabinet-page .btn-card-header:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 25px;
    top: 27px;
    border-top: 9px solid #212121;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    transform-origin: center;
    transition: 0.25s; }
  .cabinet-page .btn-card-header.active:before {
    transform: rotate(-180deg); }
  .cabinet-page .btn-card-header small {
    font-size: 12px; }
  .cabinet-page .btn-card-header .text-box {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2; }
  .cabinet-page .btn-card-header .order-status {
    border-radius: 3px;
    height: 28px;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px; }
    .cabinet-page .btn-card-header .order-status.order-success {
      background-color: #19A774;
      color: #fff; }
    .cabinet-page .btn-card-header .order-status.order-canceled {
      background-color: #7a7a7a;
      color: #fff; }
    .cabinet-page .btn-card-header .order-status.order-process {
      background-color: #EF8727;
      color: #fff; }

.cabinet-page .cart-container {
  position: relative; }
  .cabinet-page .cart-container:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    background: #fff;
    width: 100%; }

.cabinet-page .cart-item {
  border-top: 1px solid #c2c2c2;
  padding: 15px 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center; }
  .cabinet-page .cart-item:first-child {
    border-top: 0; }
  .cabinet-page .cart-item .text-block {
    margin-right: 20px;
    flex-grow: 1; }
  .cabinet-page .cart-item .calc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -15px; }
  .cabinet-page .cart-item .img-block {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    overflow: hidden;
    transition: 0.3s; }
    .cabinet-page .cart-item .img-block a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%; }
    .cabinet-page .cart-item .img-block img {
      display: block;
      margin: auto;
      max-width: 100%;
      max-height: 100%; }
    .cabinet-page .cart-item .img-block:hover, .cabinet-page .cart-item .img-block:focus {
      opacity: 0.7; }
  .cabinet-page .cart-item .title {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 500; }
    .cabinet-page .cart-item .title a {
      color: inherit;
      text-decoration: none; }
  .cabinet-page .cart-item .descr-text {
    margin-bottom: 5px;
    font-size: 13px; }
  .cabinet-page .cart-item .title-amount {
    font-weight: 500; }
  .cabinet-page .cart-item .product-sum,
  .cabinet-page .cart-item .product-cost {
    margin: 0;
    font-size: 20px;
    width: 150px;
    font-weight: 500; }
  .cabinet-page .cart-item .default-cost {
    font-size: 16px; }
    .cabinet-page .cart-item .default-cost span {
      font-size: 20px;
      font-weight: 700; }
  .cabinet-page .cart-item .new-cost {
    font-size: 16px;
    line-height: 1;
    margin-top: -7px; }
    .cabinet-page .cart-item .new-cost span {
      font-size: 20px;
      font-weight: 700; }
  .cabinet-page .cart-item .old-cost {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -5px; }
    .cabinet-page .cart-item .old-cost:after {
      content: '';
      height: 1px;
      left: -1px;
      right: -1px;
      position: absolute;
      top: 49%; }
  .cabinet-page .cart-item .close-btn {
    width: 18px;
    height: 18px;
    background: url(../img/icons/close-icon.svg) no-repeat center;
    background-size: 6px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -15px;
    outline: none;
    font-size: 16px;
    text-align: center;
    border-radius: 100%;
    transition: 0.3s;
    cursor: pointer; }
    .cabinet-page .cart-item .close-btn:hover {
      transform: rotate(90deg); }

.cabinet-page .cart-footer {
  border-radius: 3px;
  padding: 15px 20px;
  float: right;
  width: 320px;
  margin-top: 20px; }
  .cabinet-page .cart-footer .delivery-text {
    text-align: right;
    font-size: 12px;
    margin: 10px 0; }
  .cabinet-page .cart-footer .cost-table {
    width: 100%; }
    .cabinet-page .cart-footer .cost-table strong {
      font-size: 20px;
      font-weight: 500; }
    .cabinet-page .cart-footer .cost-table td {
      padding: 3px 0; }
      .cabinet-page .cart-footer .cost-table td:last-child {
        text-align: right; }
  .cabinet-page .cart-footer .btn-warning,
  .cabinet-page .cart-footer .btn-light {
    width: 100%;
    padding: 10px; }
  .cabinet-page .cart-footer .btn-warning {
    margin-bottom: 15px; }
    .cabinet-page .cart-footer .btn-warning:hover, .cabinet-page .cart-footer .btn-warning:focus, .cabinet-page .cart-footer .btn-warning:active {
      background-color: #ffd861 !important; }
  .cabinet-page .cart-footer .btn-light {
    background-color: transparent; }

@media (min-width: 1440px) {
  .cabinet-page .page-content .container {
    max-width: 1170px; } }

@media (min-width: 1700px) {
  .cabinet-page .page-content .container {
    max-width: 1170px; } }

@media (min-width: 1900px) {
  .cabinet-page .page-content .container {
    max-width: 1180px; } }

@media (max-width: 1199px) {
  .cabinet-page h1, .cabinet-page .h1 {
    font-size: 32px; }
  .cabinet-page .tab-pane .col-xl-6:last-child {
    justify-content: flex-start; }
  .cabinet-page .nav-tabs .nav-link {
    font-size: 16px; }
  .cabinet-page .tab-pane form {
    width: 420px;
    margin: 0 auto; }
  .cabinet-page .form-group .form-control {
    width: 100%; }
  .cabinet-page .btn-primary {
    width: 100%; }
  .cabinet-page .btn-card-header .order-status.order-process,
  .cabinet-page .btn-card-header .order-status.order-canceled,
  .cabinet-page .btn-card-header .order-status.order-success {
    font-size: 13px;
    width: 120px; }
  .cabinet-page .btn-card-header .text-box {
    font-size: 16px; }
  .cabinet-page .btn-card-header {
    padding: 10px 10px 10px 45px; }
  .cabinet-page .btn-card-header:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #FF416E;
    left: 20px; }
  .cabinet-page .btn-card-header.collapsed:before {
    border-top: 7px solid #262626;
    top: 27px; }
  .cabinet-page .card-body {
    padding: 0; } }

@media (max-width: 991px) {
  .cabinet-page .nav-tabs .nav-link {
    font-size: 14px;
    padding: 10px; }
  .cabinet-page h1, .cabinet-page .h1 {
    font-size: 28px; }
  .cabinet-page .btn-card-header .text-box {
    font-size: 14px; }
  .cabinet-page .btn-card-header {
    padding: 8px 8px 8px 36px; }
  .cabinet-page .btn-card-header:before {
    left: 14px;
    top: 25px; }
  .cabinet-page .btn-card-header.collapsed:before {
    top: 26px; }
  .cabinet-page .cart-item .img-block img {
    margin-left: 0; }
  .cabinet-page .cart-item .img-block {
    flex: 0 0 60px;
    width: auto;
    max-width: 60px;
    height: 60px;
    margin-right: 10px; }
  .cabinet-page .cart-item .product-sum,
  .cabinet-page .cart-item .product-cost {
    font-size: 14px;
    width: auto;
    white-space: nowrap; }
  .cabinet-page .cart-item .title {
    font-size: 13px; }
  .cabinet-page .tab-pane form {
    width: 100%; } }

@media (max-width: 767px) {
  .cabinet-page h1, .cabinet-page .h1 {
    font-size: 24px; }
  .cabinet-page .tab-pane {
    padding-left: 0; }
    .cabinet-page .tab-pane > p {
      font-size: 13px; }
  .cabinet-page .nav-tabs {
    display: flex; }
  .cabinet-page .nav-tabs .nav-link {
    font-size: 14px;
    margin-right: 10px; }
  .cabinet-page .btn-card-header .order-status.order-process,
  .cabinet-page .btn-card-header .order-status.order-canceled,
  .cabinet-page .btn-card-header .order-status.order-success {
    font-size: 11px;
    width: 100px;
    position: absolute;
    right: 0;
    top: -22px;
    padding: 3px;
    border-radius: 3px 3px 0 0;
    height: auto; }
  .cabinet-page .card {
    margin-bottom: 40px; }
  .cabinet-page .card-header {
    border-radius: 5px 0 5px 5px; }
  .cabinet-page .tab-pane .h3 {
    text-align: center;
    font-size: 20px;
    margin: 10px 0 40px; }
  .cabinet-page .cart-item {
    padding-right: 0; }
  .cabinet-page .btn-card-header {
    position: relative; }
    .cabinet-page .btn-card-header .order-amount {
      position: absolute;
      left: 0;
      top: -20px;
      display: flex;
      align-items: center; }
      .cabinet-page .btn-card-header .order-amount small {
        margin-right: 5px; }
      .cabinet-page .btn-card-header .order-amount .text-box {
        margin-right: 5px; }
  .cabinet-page .tab-pane .col-xl-6 {
    margin-top: 0;
    margin-bottom: 20px; } }

@media (max-width: 575px) {
  .cabinet-page .nav-tabs {
    flex-wrap: nowrap; }
  .cabinet-page .nav-tabs .nav-link {
    font-size: 13px;
    margin-right: 5px;
    padding: 5px 8px;
    white-space: nowrap; } }

@media (max-width: 479px) {
  .cabinet-page .tab-pane form {
    width: 100%; } }

.tab-content .tab-pane {
  display: none; }

.tab-content .tab-pane.active {
  display: block; }

.collapse {
  display: none; }

.news-section {
  display: flex;
  align-items: center; }
  .news-section.add-animation .col-sm-6.col-lg-4 {
    opacity: 1;
    right: 0; }
  .news-section .text-container h2, .news-section .text-container .h2 {
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 50px;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .news-section > .container {
    position: relative;
    padding-right: 310px; }
    .news-section > .container > .detail-link {
      text-align: right;
      position: relative;
      bottom: -50px;
      right: -80px; }
      .news-section > .container > .detail-link a {
        display: inline-block;
        color: #212121;
        position: absolute;
        right: 0;
        bottom: 0;
        padding-right: 30px;
        font-weight: 500;
        font-size: 32px;
        text-decoration: none; }
        .news-section > .container > .detail-link a:after {
          content: '';
          width: 22px;
          height: 24px;
          background: url(../img/icons/arrow-right.svg) no-repeat center;
          background-size: 20px;
          position: absolute;
          right: 0;
          top: calc(50% - 12px);
          transition: 0.25s; }
        .news-section > .container > .detail-link a:hover:after {
          right: -5px; }
  .news-section .row {
    margin-left: -50px;
    margin-right: -50px; }
  .news-section .col-sm-6.col-lg-4 {
    padding-left: 50px;
    padding-right: 50px;
    transition: all 0.7s linear;
    position: relative;
    opacity: 0;
    right: -100px; }
    .news-section .col-sm-6.col-lg-4:nth-child(2) {
      transition-delay: 0.4s; }
    .news-section .col-sm-6.col-lg-4:nth-child(3) {
      transition-delay: 0.8s; }

.news-page h1 {
  display: inline-block;
  font-size: 50px;
  margin: 0;
  background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent; }

.news-page .text-container {
  margin: 50px 0; }

.news-page .main-content {
  padding-bottom: 70px;
  position: relative; }
  .news-page .main-content .container {
    padding-right: 310px; }
  .news-page .main-content .row {
    margin-left: -50px;
    margin-right: -50px; }
  .news-page .main-content .col-sm-6.col-lg-4 {
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 60px; }
  .news-page .main-content .btn-primary {
    max-width: 385px;
    margin: 30px auto 0; }

.news-page .news-item {
  border-radius: 0 0 3px 3px;
  min-height: 100%; }

.news-page .item-img {
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.25s;
  margin-bottom: 5px; }
  .news-page .item-img a {
    display: block;
    width: 100%;
    height: 100%;
    outline: 0; }
  .news-page .item-img:hover {
    opacity: 0.8; }

.news-page .item-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #212121; }
  .news-page .item-title a {
    text-decoration: none;
    color: inherit; }
    .news-page .item-title a:hover {
      text-decoration: underline; }

.news-page .item-date {
  color: #888;
  font-size: 11px;
  margin-bottom: 1px; }

.news-page .detail-link {
  text-align: right; }
  .news-page .detail-link a {
    display: inline-block;
    background-color: #B62A35;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    position: relative;
    padding-right: 20px;
    font-weight: 500; }
    .news-page .detail-link a:after {
      content: '';
      width: 16px;
      height: 16px;
      background: url(../img/icons/news-arrow.svg) no-repeat center;
      background-size: 12px;
      position: absolute;
      right: 0;
      top: calc(50% - 7px);
      transition: 0.25s; }
    .news-page .detail-link a:hover:after {
      right: -5px; }

.news-page .item-text {
  margin: 0 0 10px;
  height: 71px;
  overflow: hidden;
  color: #777;
  font-size: 14px; }

.news-page .figure-container > div {
  position: absolute; }

.news-page .figure-container .figure-1 {
  left: -1%;
  top: 10%; }

.news-page .figure-container .figure-2 {
  right: -10%;
  top: 50%; }

.news-page .figure-container .figure-3 {
  left: -1%;
  top: 50%; }

.news-page .figure-container .figure-4 {
  right: 10%;
  top: 18%; }

.news-page .figure-container .figure-5 {
  right: 5%;
  top: 22%; }

.news-page .figure-container .figure-6 {
  right: 3%;
  top: 80%; }

.news-page .figure-container .figure-7 {
  z-index: 100;
  width: 150px;
  height: 150px;
  background: url(../img/icons/figure-3.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-2 16s linear infinite;
  transform-origin: center;
  left: -3%;
  bottom: 1%; }

.news-item {
  min-height: 100%; }
  .news-item .detail-link {
    text-align: right; }
    .news-item .detail-link a {
      display: inline-block;
      background-color: #B62A35;
      background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent;
      position: relative;
      padding-right: 20px;
      font-weight: 500; }
      .news-item .detail-link a:after {
        content: '';
        width: 16px;
        height: 16px;
        background: url(../img/icons/news-arrow.svg) no-repeat center;
        background-size: 12px;
        position: absolute;
        right: 0;
        top: calc(50% - 7px);
        transition: 0.25s; }
      .news-item .detail-link a:hover:after {
        right: -5px; }
  .news-item .item-img {
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.25s;
    margin-bottom: 5px;
    position: relative; }
    .news-item .item-img a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      outline: none; }
    .news-item .item-img picture {
      display: block;
      width: 100%;
      height: 100%; }
    .news-item .item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .news-item .item-img a {
      display: block;
      width: 100%;
      height: 100%;
      outline: 0; }
    .news-item .item-img:hover {
      opacity: 0.8; }
  .news-item .item-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #212121;
    line-height: 1.3; }
    .news-item .item-title a {
      text-decoration: none;
      color: inherit; }
      .news-item .item-title a:hover {
        text-decoration: underline; }
  .news-item .item-date {
    color: #888;
    font-size: 11px; }
  .news-item .item-text {
    margin: 0 0 10px;
    height: 65px;
    overflow: hidden;
    color: #777;
    font-size: 14px; }

.news-inner .breadcrumb {
  margin-bottom: 30px; }

.news-inner .main-content {
  padding-bottom: 30px; }

.news-inner .article-col {
  padding-right: 70px;
  padding-top: 50px; }
  .news-inner .article-col h1 {
    display: inline-block;
    margin: 0 0 20px;
    font-size: 32px;
    margin: 0 0 5px;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    line-height: 1.3; }
  .news-inner .article-col h2 {
    margin: 35px 0 10px; }
  .news-inner .article-col p {
    margin: 0 0 15px; }
  .news-inner .article-col img {
    display: block;
    max-width: 100%;
    margin: 15px 0; }
  .news-inner .article-col ul {
    margin: 10px 0 20px;
    padding-left: 15px; }
  .news-inner .article-col .news-date {
    color: #888;
    font-size: 11px;
    margin-bottom: 10px; }

.news-inner .aside-col {
  padding: 55px 0px 5px;
  border-radius: 4px;
  margin-left: -15px;
  position: relative;
  z-index: 5; }
  .news-inner .aside-col .h3, .news-inner .aside-col h3 {
    font-size: 24px;
    margin: 0 0 20px;
    font-weight: 500; }
  .news-inner .aside-col .news-item {
    display: flex;
    margin-bottom: 30px; }
  .news-inner .aside-col .item-body {
    margin-top: -3px; }
  .news-inner .aside-col .item-img {
    height: 100px;
    width: 140px;
    flex: 0 0 140px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.25s;
    margin-right: 12px; }
    .news-inner .aside-col .item-img picture {
      display: block;
      width: 100%;
      height: 100%; }
    .news-inner .aside-col .item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .news-inner .aside-col .item-img a {
      display: block;
      width: 100%;
      height: 100%;
      outline: 0; }
    .news-inner .aside-col .item-img:hover {
      opacity: 0.8; }
  .news-inner .aside-col .item-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: #212121;
    font-size: 16px; }
    .news-inner .aside-col .item-title a {
      color: inherit;
      text-decoration: none; }
      .news-inner .aside-col .item-title a:hover {
        text-decoration: underline; }
  .news-inner .aside-col .item-date {
    color: #888;
    font-size: 11px;
    margin-bottom: 5px; }
  .news-inner .aside-col .detail-link {
    text-align: right;
    font-size: 14px; }
    .news-inner .aside-col .detail-link a {
      display: inline-block;
      background-color: #B62A35;
      background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
      background-size: 100%;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-text-fill-color: transparent;
      position: relative;
      padding-right: 16px;
      font-weight: 500; }
      .news-inner .aside-col .detail-link a:after {
        content: '';
        width: 12px;
        height: 12px;
        background: url(../img/icons/news-arrow.svg) no-repeat center;
        background-size: 10px;
        position: absolute;
        right: 0;
        top: calc(50% - 7px);
        transition: 0.25s; }
      .news-inner .aside-col .detail-link a:hover:after {
        right: -5px; }

.news-inner .figure-container > div {
  position: absolute; }

.news-inner .figure-container .figure-1 {
  left: -1%;
  top: 10%; }

.news-inner .figure-container .figure-2 {
  right: -10%;
  top: 40%; }

.news-inner .figure-container .figure-3 {
  left: -1%;
  top: 50%; }

.news-inner .figure-container .figure-4 {
  right: 10%;
  top: 18%; }

.news-inner .figure-container .figure-5 {
  right: 5%;
  top: 22%; }

.news-inner .figure-container .figure-6 {
  right: 3%;
  top: 80%; }

.news-inner .figure-container .figure-7 {
  z-index: 100;
  width: 150px;
  height: 150px;
  background: url(../img/icons/figure-3.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-2 16s linear infinite;
  transform-origin: center;
  left: -3%;
  bottom: 10%; }

@media (min-width: 1440px) {
  .news-inner .main-content .container {
    max-width: 1170px; } }

@media (min-width: 1700px) {
  .news-inner .main-content .container {
    max-width: 1170px; } }

@media (min-width: 1900px) {
  .news-inner .main-content .container {
    max-width: 1180px; } }

@media (max-width: 2000px) {
  .news-page .figure-container .figure-2 {
    right: -15%; }
  .news-inner .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1899px) {
  .news-page .main-content .col-sm-6.col-lg-4 {
    padding-left: 25px;
    padding-right: 25px; }
  .news-page .main-content .row {
    margin-left: -25px;
    margin-right: -25px; }
  .news-section > .container {
    padding-right: 220px; }
  .news-section .text-container h2,
  .news-section .text-container .h2 {
    font-size: 42px; } }

@media (max-width: 1699px) {
  .news-section > .container {
    padding-right: 150px; }
  .news-section .row {
    margin-left: -30px;
    margin-right: -30px; }
  .news-section .col-sm-6.col-lg-4 {
    padding-left: 30px;
    padding-right: 30px; }
  .news-item .item-title {
    font-size: 16px; }
  .news-item .item-text {
    font-size: 13px;
    height: 57px; }
  .news-section > .container > .detail-link {
    margin-top: 40px; }
  .news-section > .container > .detail-link a {
    font-size: 24px; }
  .news-section .text-container h2,
  .news-section .text-container .h2 {
    font-size: 36px; }
  .index-news .container > .detail-link {
    margin-right: -50px; }
  .news-page .main-content .container {
    padding-right: 200px; }
  .news-page .figure-container .figure-2 {
    right: -22%; }
  .news-page .text-container {
    margin: 50px 0 30px; }
  .news-inner .figure-container .figure-2 {
    right: -27%; }
  .news-inner .figure-container .figure-4 {
    right: 3%; }
  .news-inner .figure-container .figure-5 {
    right: 1%; } }

@media (max-width: 1439px) {
  .news-section .text-container h2,
  .news-section .text-container .h2 {
    font-size: 28px;
    margin-bottom: 15px; }
  .news-item .item-img {
    height: 200px; }
  .news-section > .container {
    padding-right: 100px; }
  .news-section .col-sm-6.col-lg-4 {
    padding-right: 15px;
    padding-left: 15px; }
  .news-section .row {
    margin-right: -15px;
    margin-left: -15px; }
  .news-section .news-item .item-title {
    font-size: 15px; }
  .news-section > .container > .detail-link {
    margin-top: 0;
    position: relative;
    bottom: -40px;
    right: -50px; }
  .news-section > .container > .detail-link a {
    font-size: 20px; }
  .news-section > .container > .detail-link a:after {
    background-size: 16px; }
  .news-section .news-item .detail-link a {
    font-size: 14px; }
  .news-page .item-title {
    overflow: hidden; }
  .news-inner .article-col h1 {
    font-size: 28px; }
  .news-inner .aside-col .h3 {
    font-size: 18px; }
  .news-page .main-content .container {
    padding-right: 100px; }
  .news-page .main-content .col-sm-6.col-lg-4 {
    padding-left: 15px;
    padding-right: 15px; }
  .news-item .item-title {
    font-size: 16px; }
  .news-page .main-content .row {
    margin-left: -15px;
    margin-right: -15px; }
  .news-page .figure-container .figure-2 {
    right: -32%; }
  .news-page .figure-container .figure-4 {
    right: 5%; }
  .news-page .figure-container .figure-5 {
    right: -1%; }
  .news-page .figure-container .figure-7 {
    left: -7%; }
  .news-inner .figure-container .figure-5 {
    display: none; }
  .news-inner .figure-container .figure-7 {
    display: none; }
  .news-inner .figure-container .figure-2 {
    right: -35%;
    top: 55%; } }

@media (max-width: 1199px) {
  .news-page h1, .news-page .h1 {
    font-size: 42px; }
  .news-page .item-title {
    font-size: 16px; }
  .news-page .item-img {
    height: 190px; }
  .news-page .item-text {
    font-size: 13px;
    height: 78px; }
  .news-page .load-toggle {
    font-size: 20px; }
  .news-inner .article-col h1 {
    font-size: 22px; }
  .news-inner .aside-col .h3 {
    font-size: 18px; }
  .news-inner .aside-col .item-title {
    font-size: 15px; }
  .news-inner .breadcrumb {
    margin-bottom: 30px; }
    .news-inner .breadcrumb .breadcrumb-item {
      font-size: 11px; }
  .news-page .figure-container .figure-2 {
    display: none; }
  .news-section > .container {
    padding-right: 15px; }
    .news-section > .container > .detail-link {
      right: -15px; }
  .news-section .col-sm-6.col-lg-4,
  .news-section.add-animation .col-sm-6.col-lg-4 {
    opacity: 1;
    right: auto; } }

@media (max-width: 991px) {
  .news-page .text-container {
    margin: 30px 0 20px; }
  .news-page .item-title {
    font-size: 16px;
    height: auto; }
  .news-page .item-img {
    height: 190px; }
  .news-page .item-text {
    font-size: 13px;
    height: 78px; }
  .news-inner .article-col {
    padding-right: 15px; }
    .news-inner .article-col h1 {
      font-size: 24px; }
  .news-inner .aside-col {
    margin-left: 0;
    margin-top: 20px; }
    .news-inner .aside-col .h3 {
      font-size: 24px; }
    .news-inner .aside-col .item-title {
      font-size: 16px; }
    .news-inner .aside-col .item-body {
      flex-grow: 1; }
    .news-inner .aside-col .detail-link {
      display: inline-block; }
  .news-inner .figure-container .figure-2 {
    display: none; }
  .news-inner .figure-container .figure-4 {
    top: 50%; }
  .news-section .col-sm-6.col-lg-4 {
    margin-bottom: 40px; }
  .news-section > .container > .detail-link {
    position: relative;
    right: 100px;
    top: -300px; }
    .news-section > .container > .detail-link a {
      position: relative; } }

@media (max-width: 767px) {
  .news-page h1, .news-page .h1 {
    font-size: 36px; }
  .news-page .item-title {
    font-size: 14px;
    height: auto; }
  .news-page .item-img {
    height: 150px; }
  .news-page .item-text {
    font-size: 12px;
    height: auto; }
  .news-page .load-toggle {
    font-size: 20px;
    width: 100%;
    margin-bottom: 50px; }
  .news-page .leave-request {
    margin-top: 80px; }
  .news-page .figure-container .figure-5 {
    display: none; }
  .news-page .figure-container .figure-4 {
    right: 1%; }
  .news-page .main-content .container {
    padding-right: 15px; }
  .news-inner .article-col p {
    font-size: 14px; }
  .news-inner .article-col ul li,
  .news-inner .article-col ol li {
    font-size: 14px; }
  .news-inner .article-col h2 {
    font-size: 20px; }
  .news-inner .article-col h1 {
    font-size: 20px; }
  .news-inner .figure-container {
    display: none; }
  .news-section .news-item .item-img {
    height: 150px; }
  .news-section > .container > .detail-link {
    right: 50px; } }

@media (max-width: 575px) {
  .news-page .news-item {
    width: 400px;
    margin: 0 auto 15px; }
  .news-page .item-img {
    height: 220px; }
  .news-page .load-toggle {
    font-size: 18px;
    width: 400px;
    height: 42px;
    margin: 30px auto; }
  .news-page .leave-request {
    margin-top: 70px; }
  .news-page .text-container {
    text-align: center; }
  .news-page .figure-container {
    display: none; }
  .news-page .main-content .col-sm-6.col-lg-4 {
    margin-bottom: 30px; }
  .news-inner .breadcrumb {
    margin-bottom: 20px; }
    .news-inner .breadcrumb .breadcrumb-item {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      max-width: 120px; }
  .news-inner .aside-col .item-title {
    font-size: 14px; }
  .news-inner .aside-col .item-img {
    flex: 0 0 120px; }
  .news-section .news-item .item-img {
    height: 280px; }
  .news-section > .container > .detail-link {
    width: 135px;
    margin: 0 auto;
    right: auto;
    top: 0; } }

@media (max-width: 479px) {
  .news-page .news-item {
    width: 280px; }
  .news-page .item-img {
    height: 190px; }
  .news-page .load-toggle {
    font-size: 16px;
    width: 280px; }
    .news-page .load-toggle img {
      margin-top: -3px; }
  .news-section .news-item .item-img {
    height: 220px; } }

@media (max-width: 400px) {
  .news-section .news-item .item-img {
    height: 180px; } }

@media (max-width: 375px) {
  .news-section .news-item .item-img {
    height: 170px; } }

.text-page .page-content {
  position: relative;
  padding: 0 0 50px; }
  .text-page .page-content .row {
    margin-bottom: 30px; }
  .text-page .page-content p {
    font-size: 16px; }
  .text-page .page-content .h1, .text-page .page-content h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .text-page .page-content iframe {
    width: 100% !important;
    height: 400px !important;
    margin: 15px 0; }
  .text-page .page-content .h3, .text-page .page-content h3 {
    font-size: 24px;
    font-weight: 400; }
  .text-page .page-content .h5, .text-page .page-content h5 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 700; }
  .text-page .page-content img {
    display: block;
    max-width: 100%; }
  .text-page .page-content .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-left: 30px; }
    .text-page .page-content .img-box img {
      display: block;
      max-width: 100%;
      max-height: 100%; }
  .text-page .page-content ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0; }
    .text-page .page-content ul li {
      position: relative;
      padding-left: 18px; }
      .text-page .page-content ul li:before {
        content: '';
        width: 7px;
        height: 1px;
        background-color: #212121;
        position: absolute;
        left: 0;
        top: 11px; }

.text-page .figure-container > div {
  position: absolute; }

.text-page .figure-container .figure-1 {
  left: -1%;
  top: 10%; }

.text-page .figure-container .figure-2 {
  right: -10%;
  top: 55%;
  width: 400px;
  height: 450px; }

.text-page .figure-container .figure-3 {
  left: -1%;
  top: 50%; }

.text-page .figure-container .figure-4 {
  right: 10%;
  top: 18%; }

.text-page .figure-container .figure-5 {
  right: 5%;
  top: 22%; }

.text-page .figure-container .figure-6 {
  right: 3%;
  top: 80%; }

.text-page .figure-container .figure-7 {
  z-index: 100;
  width: 150px;
  height: 150px;
  background: url(../img/icons/figure-3.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: move-2 16s linear infinite;
  transform-origin: center;
  left: -3%;
  bottom: 10%; }

@media (min-width: 1200px) {
  .text-page .page-content .text-container {
    max-width: 950px; } }

@media (max-width: 2000px) {
  .text-page .figure-container .figure-2 {
    right: -20%; } }

@media (max-width: 1699px) {
  .text-page .figure-container .figure-2 {
    right: -27%; }
  .text-page .figure-container .figure-4 {
    right: 3%; }
  .text-page .figure-container .figure-5 {
    right: 1%; } }

@media (max-width: 1439px) {
  .text-page .figure-container .figure-5 {
    display: none; }
  .text-page .figure-container .figure-7 {
    display: none; }
  .text-page .figure-container .figure-2 {
    right: -35%;
    top: 55%; } }

@media (max-width: 1199px) {
  .text-page .page-content .h1,
  .text-page .page-content h1 {
    font-size: 32px; }
  .text-page.delivery-page .h2,
  .text-page.delivery-page h2 {
    font-size: 32px; }
  .text-page .figure-container .figure-2 {
    display: none; } }

@media (max-width: 991px) {
  .text-page .page-content .h1,
  .text-page .page-content h1 {
    font-size: 28px;
    margin-bottom: 20px; }
  .text-page.delivery-page .h2,
  .text-page.delivery-page h2 {
    font-size: 28px;
    margin-bottom: 20px; }
  .text-page .page-content .h3,
  .text-page .page-content h3 {
    font-size: 20px; }
  .text-page .page-content p {
    font-size: 14px; }
  .text-page .page-content ul li {
    font-size: 14px; }
  .text-page .page-content .row {
    margin-bottom: 10px; }
  .text-page .page-content .img-box {
    margin-left: 0; }
  .text-page .figure-container .figure-4 {
    top: 50%; } }

@media (max-width: 767px) {
  .text-page .page-content .h1,
  .text-page .page-content h1 {
    font-size: 24px; }
  .text-page.delivery-page .h2,
  .text-page.delivery-page h2 {
    font-size: 24px; }
  .text-page .page-content .img-box {
    width: 80px;
    height: 80px; }
    .text-page .page-content .img-box img {
      max-width: 90%; }
  .text-page .figure-container {
    display: none; }
  .text-page .page-content iframe {
    height: 320px !important; } }

@media (max-width: 575px) {
  .text-page .page-content .img-box {
    display: none; }
  .text-page .page-content .h3,
  .text-page .page-content h3 {
    font-size: 18px; } }

.success-page .page-content {
  display: flex;
  align-items: center;
  padding: 100px 0; }
  .success-page .page-content .container {
    text-align: center; }
    .success-page .page-content .container img {
      display: block;
      width: 60px;
      height: 60px;
      margin: 0 auto 10px; }
    .success-page .page-content .container h1 {
      margin-bottom: 15px; }
    .success-page .page-content .container .subtitle {
      font-size: 20px;
      margin: 10px 0; }
      .success-page .page-content .container .subtitle span {
        font-weight: 700; }
    .success-page .page-content .container .success-text {
      color: #555;
      max-width: 430px;
      margin: 0 auto 25px;
      font-size: 16px; }
      .success-page .page-content .container .success-text span {
        color: #212121;
        font-weight: 500; }
    .success-page .page-content .container .btn-primary {
      width: 250px;
      display: inline-block; }

@media (max-width: 1199px) {
  .success-page .page-content .container h1 {
    font-size: 32px; }
  .success-page .page-content .container .success-text {
    font-size: 14px; } }

@media (max-width: 767px) {
  .success-page .page-content {
    padding: 30px 0 50px; }
    .success-page .page-content .container h1 {
      font-size: 28px; }
    .success-page .page-content .container .subtitle {
      font-size: 18px; } }

.main-footer {
  background-color: #F6F7F9; }

.footer-content {
  padding-top: 70px;
  padding-bottom: 40px; }
  .footer-content .logo-col img {
    display: block;
    max-width: 180px; }
  .footer-content .social-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 30px; }
    .footer-content .social-col .nav-title {
      width: 100%; }
    .footer-content .social-col a {
      margin: 0 13px;
      display: block;
      display: flex;
      align-items: center; }
    .footer-content .social-col img {
      min-width: 24px;
      display: block; }
  .footer-content .nav-title {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 10px; }
  .footer-content .nav-list {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer-content .nav-list p {
      margin: 0 0 5px; }
    .footer-content .nav-list img {
      position: absolute;
      left: 0;
      top: calc(50% - 10px);
      min-width: 25px;
      min-height: 22px;
      max-height: 25px; }
    .footer-content .nav-list li {
      position: relative;
      padding-left: 36px;
      margin-bottom: 20px;
      font-size: 24px; }
      .footer-content .nav-list li:first-child img {
        top: calc(50% - 12px); }
      .footer-content .nav-list li a {
        text-decoration: none;
        color: #212121; }
        .footer-content .nav-list li a:hover {
          text-decoration: underline; }
  .footer-content .contacts-col {
    display: flex;
    justify-content: center; }
    .footer-content .contacts-col p {
      font-size: 24px;
      margin-bottom: 12px; }

.footer-bottom {
  padding: 20px 0;
  background-color: #F0F1F5; }
  .footer-bottom .container {
    display: flex;
    justify-content: space-between; }

.site-developer a {
  text-decoration: none;
  color: #555; }
  .site-developer a:hover {
    text-decoration: underline; }
  .site-developer a span {
    color: #000; }

@media (max-width: 1699px) {
  .footer-content {
    padding: 50px 0 40px; }
  .footer-content .nav-list li {
    font-size: 20px; }
  .footer-content .contacts-col p {
    font-size: 20px; }
  .main-footer .footer-bottom {
    font-size: 14px;
    padding: 12px 0; }
  .contacts-section .main-footer .footer-bottom {
    padding: 12px 0; } }

@media (max-width: 1439px) {
  .footer-content {
    padding: 50px 0 40px; }
  .footer-content .nav-list li {
    font-size: 18px; }
  .footer-content .contacts-col p {
    font-size: 18px; }
  .footer-content .logo-col img {
    max-width: 150px; } }

@media (max-width: 1199px) {
  .footer-content {
    padding: 50px 0 40px; }
  .footer-content .nav-list li {
    font-size: 14px; }
  .footer-content .logo-col img {
    max-width: 120px; }
  .footer-content .contacts-col p {
    font-size: 14px; }
  .footer-content .social-col img {
    min-width: 20px;
    max-width: 21px; }
  .site-copyright {
    font-size: 14px; }
  .site-developer {
    font-size: 14px; }
  .footer-bottom {
    padding: 15px 0; } }

@media (max-width: 991px) {
  .main-footer .footer-content {
    padding: 30px 0 20px; }
    .main-footer .footer-content .logo-col img {
      margin: 0 auto; }
    .main-footer .footer-content .col-md-3 {
      max-width: 33.33%;
      flex: 0 0 33.33%; }
      .main-footer .footer-content .col-md-3:first-child {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 20px; }
    .main-footer .footer-content .social-col {
      padding-top: 10px; } }

@media (max-width: 767px) {
  .main-footer .footer-content .col-md-3 {
    max-width: 50%;
    flex: 0 0 50%; }
    .main-footer .footer-content .col-md-3:first-child {
      max-width: 100%;
      flex: 0 0 100%;
      margin-bottom: 20px; }
    .main-footer .footer-content .col-md-3:last-child {
      max-width: 100%;
      flex: 0 0 100%; }
  .main-footer .footer-content .social-col {
    padding-top: 10px;
    justify-content: center; }
  .main-footer .footer-bottom .container {
    display: block;
    text-align: center; }
  .main-footer .footer-bottom .site-copyright {
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px; }
  .main-footer .footer-bottom .site-developer {
    font-size: 13px; } }

@media (max-width: 479px) {
  .main-footer .nav-list {
    width: 210px;
    margin: 0 auto; }
    .main-footer .nav-list img {
      max-height: 20px;
      min-height: auto; }
  .main-footer .footer-content .col-md-3 {
    max-width: 100%;
    flex: 0 0 100%; }
    .main-footer .footer-content .col-md-3:first-child {
      max-width: 100%;
      flex: 0 0 100%;
      margin-bottom: 20px; }
    .main-footer .footer-content .col-md-3:last-child {
      max-width: 100%;
      flex: 0 0 100%; } }

.error-page .main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 180px; }
  .error-page .main-content .container {
    position: relative;
    text-align: center; }
  .error-page .main-content .content-box .btn-primary {
    width: 300px;
    margin: 20px auto 0; }
  .error-page .main-content .lg-nums {
    font-size: 180px;
    font-weight: 700;
    line-height: 1.2;
    background-color: #B62A35;
    background-image: linear-gradient(to right, #5C2DA8 10%, #B62A35 100%);
    display: inline-block;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent; }
  .error-page .main-content .h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0; }
  .error-page .main-content p {
    font-size: 16px;
    max-width: 450px;
    display: inline-block; }

@media (max-width: 1199px) {
  .error-page .main-content {
    padding: 80px 0 120px; } }

@media (max-width: 991px) {
  .error-page .main-content .track-img {
    display: none; }
  .error-page .main-content .content-box {
    margin-left: 0;
    text-align: center; }
    .error-page .main-content .content-box p {
      margin: 0 auto 20px; } }

@media (max-width: 767px) {
  .error-page .main-content .lg-nums {
    font-size: 90px; }
  .error-page .main-content .h2 {
    font-size: 24px; }
  .error-page .main-content .content-box p {
    font-size: 14px;
    margin-bottom: 30px; }
  .error-page .main-content .content-box .btn-primary {
    width: 250px; } }
