/* ---------- theme modules ---------- */
@import "/assets/assets_division_theme/corporate_bar/style.css";



/* ---------- typography ---------- */
*::-moz-selection {
  color: #3B9BCC;
  background: inherit; }

*::-webkit-selection, *::selection {
  color: #3B9BCC;
  background: inherit; }

html {
  font-size: 62.5%; }

body {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: none;
  line-height: 1.63;
  color: #000000; }

.base-bottom-margin, h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin-bottom: 2rem; }

h1 {
  font-family: inherit;
  font-size: 6.2rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.1; }

h2 {
  font-family: inherit;
  font-size: 4.6rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.05; }

h3 {
  font-family: inherit;
  font-size: 3.6rem;
  font-weight: 400;
  text-transform: none;
  line-height: 1.05; }

h4 {
  font-family: inherit;
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: none;
  line-height: 1.05; }

h5 {
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: none;
  line-height: 1.05; }

h6 {
  font-family: inherit;
  font-size: 2rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.05; }

ul {
  list-style-type: disc;
  margin-left: 17px; }

a {
  text-decoration: none; }

a,
button {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

p {
  word-break: break-word;
}


form {
  width: 100%;
  position: relative; }
  form input,
  form select,
  form textarea {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: none;
    line-height: 1.3;
    height: 4.8rem;
    color: #58595B;
    background: transparent;
    border: 1px solid #D1D3D4;
    -webkit-border-radius: 0.2rem;
            border-radius: 0.2rem;
    padding: 0 1.5rem;
    margin: 0 0 2rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    form input::-moz-placeholder,
    form select::-moz-placeholder,
    form textarea::-moz-placeholder {
      color: #58595B;
      opacity: 1; }
    form input::-ms-input-placeholder,
    form select::-ms-input-placeholder,
    form textarea::-ms-input-placeholder {
      color: #58595B;
      opacity: 1; }
    form input::-webkit-input-placeholder,
    form select::-webkit-input-placeholder,
    form textarea::-webkit-input-placeholder {
      color: #58595B;
      opacity: 1; }
    form input:focus,
    form select:focus,
    form textarea:focus {
      border-color: #005A93; }
      form input:focus::-moz-placeholder,
      form select:focus::-moz-placeholder,
      form textarea:focus::-moz-placeholder {
        opacity: 0; }
      form input:focus::-ms-input-placeholder,
      form select:focus::-ms-input-placeholder,
      form textarea:focus::-ms-input-placeholder {
        opacity: 0; }
      form input:focus::-webkit-input-placeholder,
      form select:focus::-webkit-input-placeholder,
      form textarea:focus::-webkit-input-placeholder {
        opacity: 0; }
    form input:disabled,
    form select:disabled,
    form textarea:disabled {
      opacity: 0.4; }
  form select {
    background-image: url("img/angle-down-icon.svg");
    -webkit-background-size: auto auto;
            background-size: auto;
    background-repeat: no-repeat;
    background-position: right 2rem center; }
  form textarea {
    height: 18rem;
    padding: 1.5rem; }
  form input[type="submit"] {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  form .field__wrapper {
    position: relative; }
    form .field__wrapper input,
    form .field__wrapper select,
    form .field__wrapper textarea {
      padding-left: 4.8rem; }
    form .field__wrapper::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      height: 4.8rem;
      width: 4.8rem;
      -webkit-background-size: 1.5rem 1.5rem;
              background-size: 1.5rem;
      background-repeat: no-repeat;
      background-position: center center; }
    form .field__wrapper.name::before {
      background-image: url("img/user-icon.svg"); }
    form .field__wrapper.email::before {
      background-image: url("img/envelope-icon.svg"); }
    form .field__wrapper.phone::before {
      background-image: url("img/phone-icon.svg"); }
    form .field__wrapper.search::before {
      background-image: url("img/search-icon-blue.svg");
      -webkit-background-size: 2rem 2rem;
              background-size: 2rem; }
    form .field__wrapper.disabled {
      opacity: 0.4; }
      form .field__wrapper.disabled input,
      form .field__wrapper.disabled select,
      form .field__wrapper.disabled textarea {
        opacity: 1; }

.custom__checkbox {
  min-width: 1.6rem;
  min-height: 1.6rem;
  display: block;
  position: relative;
  border: 1px solid #48ADE1;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  cursor: pointer; }
  .custom__checkbox::after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: #48ADE1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 1.2rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0; }

input:checked ~ .custom__checkbox::after {
  opacity: 1; }

.btn {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 6rem;
  display: inline-block;
  height: 6rem;
  color: #FFFFFF;
  text-align: center;
  min-width: 20rem;
  background: #48ADE1;
  border: none;
  -webkit-border-radius: 5rem;
          border-radius: 5rem;
  padding: 0 1.5rem;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  letter-spacing: 0.1rem; }
  .btn::before, .btn::after {
    content: ''; }
  .btn:hover, .btn:focus, .btn:active, .btn:visited {
    text-decoration: none; }
  .btn:hover {
    background: #3B9BCC; }
  .btn-more::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
    margin-left: 0.1rem;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0;
    margin-left: 0.6rem; }
  .btn-more:hover::after {
    left: 0.5rem; }
  .btn-white {
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #48ADE1;
    height: 5.9rem;
    line-height: 5.9rem; }
    .btn-white:hover {
      border-color: #48ADE1;
      background: #FFFFFF; }
    .btn-white.btn-disabled {
      background: #FFFFFF;
      border-color: #FFFFFF; }
      .btn-white.btn-disabled:hover {
        background: #FFFFFF; }
  .btn-disabled {
    background: #F1F2F2;
    color: #D1D3D4;
    cursor: not-allowed; }
    .btn-disabled:hover {
      background: #F1F2F2;
      color: #D1D3D4; }
  .btn-play {
    min-width: 22rem; }
    .btn-play img {
      display: inline-block;
      width: 100%;
      max-width: 1.8rem;
      position: relative;
      top: 0.3rem;
      margin-right: 0.8rem;
      -webkit-filter: grayscale(0%) brightness(0) invert(1);
              filter: grayscale(0%) brightness(0) invert(1);
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .btn-play-transparent {
      background: transparent !important;
      border: 2px solid #FFFFFF;
      line-height: 5.6rem; }

      
      .btn-more-big{
        min-width: 25rem;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
      }
      .btn-more-big:after{
        content: '\f178';
        font-weight: 300;
        font-size: 2rem;
        color: #fff;
        margin-left: 0.7rem;
        position: relative;
        top: 0.2rem;
      }
      .btn-transparent-blue{
        border: 2px solid #FFFFFF;
        background: transparent !important;
        color: #000;
        font-size: 1.4rem;
        box-shadow: none;
      }
      .btn-transparent-blue:after{
        content: '\f178';
        font-size: 2rem;
        font-weight: 300;
        position: relative;
        top: 0.2rem;
        color: #000;
        margin-left: 0.7rem;
      }
      .btn-transparent-blue:hover{
        color: #fff;
      }
      .btn-transparent-blue:hover:after{
        color: #fff;
      }



      .btn-play-transparent:hover {
        background: #FFFFFF;
        color: #000; }
        .btn-play-transparent:hover img {
          -webkit-filter: none;
                  filter: none; }

      .btn_yellow{
        background: #f3ca19;
        color: #000;
        -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      }
      .btn_yellow:after{
        content: '\f178';
        font-weight: 300;
        color: #000;
        margin-left: 0.7rem;
        font-size: 2rem;
        position: relative;
        top: 0.2rem;
      }
      .btn_yellow:hover{
        background: #056699;
        color: #fff;
      }
      .btn_yellow:hover:after{
        color: #fff;
      }

/* ---------- spaces ---------- */
.space-120 {
  padding: 6rem 0; }



/* ---------- hamb ---------- */
.mobile-menu-button {
  position: relative;
  display: none;
  width: 24px;
  height: 17px; }
  .mobile-menu-button span {
    position: absolute;
    display: block;
    height: 3px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    -webkit-border-radius: 1px;
            border-radius: 1px;
    overflow: hidden; }
    .mobile-menu-button span::after {
      content: '';
      display: none;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      -webkit-border-radius: 1px;
              border-radius: 1px; }
    .mobile-menu-button span:first-child {
      top: 0;
      -webkit-transition: top 0.3s ease 0.3s, -webkit-transform 0.3s ease 0s;
      transition: top 0.3s ease 0.3s, -webkit-transform 0.3s ease 0s;
      -o-transition: top 0.3s ease 0.3s, transform 0.3s ease 0s;
      transition: top 0.3s ease 0.3s, transform 0.3s ease 0s;
      transition: top 0.3s ease 0.3s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s; }
    .mobile-menu-button span:nth-child(2) {
      top: 50%;
      margin-top: -1.5px;
      -webkit-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
    .mobile-menu-button span:last-child {
      top: auto;
      bottom: 0;
      -webkit-transition: bottom 0.3s ease 0.3s, -webkit-transform 0.3s ease 0s;
      transition: bottom 0.3s ease 0.3s, -webkit-transform 0.3s ease 0s;
      -o-transition: bottom 0.3s ease 0.3s, transform 0.3s ease 0s;
      transition: bottom 0.3s ease 0.3s, transform 0.3s ease 0s;
      transition: bottom 0.3s ease 0.3s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s; }
  .mobile-menu-button.menu-opened span:first-child {
    top: 7px;
    -webkit-transition: top 0.3s ease 0s, -webkit-transform 0.3s ease 0.3s;
    transition: top 0.3s ease 0s, -webkit-transform 0.3s ease 0.3s;
    -o-transition: top 0.3s ease 0s, transform 0.3s ease 0.3s;
    transition: top 0.3s ease 0s, transform 0.3s ease 0.3s;
    transition: top 0.3s ease 0s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .mobile-menu-button.menu-opened span:nth-child(2) {
    opacity: 0; }
  .mobile-menu-button.menu-opened span:last-child {
    bottom: 7px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: bottom 0.3s ease 0s, -webkit-transform 0.3s ease 0.3s;
    transition: bottom 0.3s ease 0s, -webkit-transform 0.3s ease 0.3s;
    -o-transition: bottom 0.3s ease 0s, transform 0.3s ease 0.3s;
    transition: bottom 0.3s ease 0s, transform 0.3s ease 0.3s;
    transition: bottom 0.3s ease 0s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s; }





/* ---------- preloader ---------- */

.preloader__overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: -50;
}

.preloader__overlay .preloader__overlay_icon {
  width: 100%;
  width: 6rem;
  height: 6rem;
}

.preloader__overlay .preloader__overlay_icon .inner {
  animation: rotation 2s infinite linear;
  -webkit-animation: rotation 8s infinite linear;
  line-height: 0;
}

.preloader__overlay.show {
  opacity: 1;
  visibility: visible;
  z-index: 50;
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}


@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}











/* ---------- local header ---------- */
.local__header {
  position: fixed;
  z-index: 95;
  left: 0;
  right: 0;
  top: 12rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  .local__header_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 7.8rem 0 6rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .local__header_logo {
    display: block;
    width: 100%;
    max-width: 17rem;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }

  .local__header_logo.gc {
    max-width: 33.3rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    -ms-align-self: stretch;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .local__header.sticky .local__header_logo.gc {
    max-width: 20rem;
  }

  .local__header_logo.gc::before {
    display: none;
  }


  .local__header .local__nav_close {
    width: 4rem;
    height: 4rem;
    color: #E6E6E6;
    position: absolute;
    font-size: 2.6rem;
    left: 1.4rem;
    top: 1rem;
    opacity: 0;
    visibility: hidden; }
    .local__header .local__nav_close i {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .local__header .local__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    top: -3rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .local__header .local__menu li {
      margin: 0 3.5rem; }
      .local__header .local__menu li a {
        display: block;
        font-size: 2rem;
        font-weight: 500;
        text-transform: uppercase;
        color: #fff;
        position: relative;
        padding: 1.5rem 0;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
        .local__header .local__menu li a::after {
          content: '';
          display: block;
          height: 2px;
          background: #39B54A;
          position: absolute;
          left: 51%;
          right: 51%;
          bottom: 0;
          -webkit-border-radius: 2px;
                  border-radius: 2px;
          -webkit-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
        .local__header .local__menu li a:hover::after {
          left: 0;
          right: 0; }
      .local__header .local__menu li.current-menu-item a::after {
        left: 0;
        right: 0; }
      .local__header .local__menu li:first-child {
        margin-left: 0; }
      .local__header .local__menu li:last-child {
        margin-right: 0; }
  .local__header.sticky {
    top: 5.8rem;
    background: rgba(0, 0, 0, 0.6); }
    .local__header.sticky .local__header_content {
      padding: 0 7.8rem 0 3.5rem; }
    .local__header.sticky .local__header_logo {
      max-width: 4.8rem; }
    .local__header.sticky .local__menu {
      top: 0; }
      .local__header.sticky .local__menu li a {
        font-size: 1.6rem; }


.local__header.gamechanger__header {
    top: 5.8rem;
    background: rgba(0, 0, 0, 0.6); }
    .local__header.gamechanger__header .local__header_content {
      padding: 0 3.5rem !important; }
    .local__header.gamechanger__header .local__header_logo {
      width: 100%;
      max-width: 20rem !important; }
    .local__header.gamechanger__header .local__menu {
      top: 0; }
      .local__header.gamechanger__header .local__menu li a {
        font-size: 1.6rem; }



@media only screen and (max-width: 1199px) {
  .local__header.gamechanger__header .local__header_content {
      padding: 0 1.5rem !important; }  
}



@media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
   .local__header.gamechanger__header .local__header_logo {
        padding: 2rem 0;
       } 
}


/* ---------- scroll to ---------- */
.scroll__to {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-left: -1.5rem;
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 3; }
  .scroll__to img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    width: 1.8rem;
    -webkit-animation: arrowpulse 2s linear infinite;
            animation: arrowpulse 2s linear infinite; }

@keyframes arrowpulse {
  0% {
    margin-left: 0.5rem; }
  50% {
    margin-left: -0.5rem; }
  100% {
    margin-left: 0.5rem; } }

@-webkit-keyframes arrowpulse {
  0% {
    margin-left: 0.5rem; }
  50% {
    margin-left: -0.5rem; }
  100% {
    margin-left: 0.5rem; } }
  .scroll__to span {
    margin-left: 3.4rem; }

/* ---------- swiper pagination ---------- */
.swiper-pagination {
  line-height: 0; }
  .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    border: 2px solid #FFFFFF;
    background: transparent;
    opacity: 0.8;
    cursor: pointer;
    margin: 0 0.6rem;
    -webkit-transition: border-color 0.3s ease 0s;
    -o-transition: border-color 0.3s ease 0s;
    transition: border-color 0.3s ease 0s; }
    .swiper-pagination-bullet-active {
      border-color: #39B54A;
      opacity: 1; }

/* ---------- intro ---------- */
.intro {
  min-height: 100vh;
  position: relative;
  overflow: hidden; }
  .intro .scroll__to {
    bottom: 9rem;
    left: 0rem;
    position: absolute; }
  .intro__slider {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0; }

    .intro__slider div.swiper-wrapper {
      height: 100%;
    }

    .intro__slider .swiper-slide {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; }
      .intro__slider .swiper-slide.swiper-slide-active .slide__content_title {
        opacity: 1;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        -webkit-transition-delay: 0.2s;
             -o-transition-delay: 0.2s;
                transition-delay: 0.2s; }
      .intro__slider .swiper-slide.swiper-slide-active .slide__content_title ~ p {
        top: 0;
        opacity: 1;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        -webkit-transition-delay: 0.4s;
             -o-transition-delay: 0.4s;
                transition-delay: 0.4s; }
      .intro__slider .swiper-slide.swiper-slide-active .btn__wrapper {
        top: 0;
        opacity: 1;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        -webkit-transition-delay: 0.6s;
             -o-transition-delay: 0.6s;
                transition-delay: 0.6s; }
    .intro__slider .slide__image {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
      .intro__slider .slide__image::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0.3;
        z-index: 0; }
    .intro__slider .slide__content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 11rem;
      color: #fff;
      z-index: 2; }
      .intro__slider .slide__content .inner {
        max-width: 80rem; }
      .intro__slider .slide__content .slide__content_title {
        font-weight: 300;
        font-size: 6.2rem;
        color: #fff;
        letter-spacing: 0.2rem;
        position: relative;
        top: 3rem;
        opacity: 0;
        margin-bottom: 5rem;
        line-height: 1.2; }
      .intro__slider .slide__content .slide__content_title ~ p {
        font-size: 2.4rem;
        line-height: 1.5;
        position: relative;
        top: 3rem;
        opacity: 0; }
      .intro__slider .slide__content .btn__wrapper {
        position: relative;
        top: 3rem;
        opacity: 0; }
      .intro__slider .slide__content .btn {
        position: relative;
        margin-top: 1.2rem; }
        .intro .intro__slider_pagination {
         display: -webkit-box; 
         display: -webkit-flex; 
         display: -ms-flexbox; 
         display: flex;
         -webkit-box-orient: vertical;
         -webkit-box-direction: normal;
         -webkit-flex-direction: column;
         -ms-flex-direction: column;
         flex-direction: column;
         position: absolute;
         right: 3.8rem;
         top: 50%;
         -webkit-transform: translateY(-50%);
         -ms-transform: translateY(-50%);
         transform: translateY(-50%);
         z-index: 3;
         width: auto;
         left: auto;
       }
    .intro .intro__slider_pagination .swiper-pagination-bullet {
      margin: 0.6rem 0; }

/* ---------- contacts ---------- */
.contacts {
  position: relative; }
  .contacts__bg {
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0; }
    .contacts__bg::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: #000000;
      opacity: 0.2; }
  .contacts__content {
    position: relative;
    z-index: 1;
    padding: 8rem 0; }

.contact__form {
  max-width: 58rem;
  background: #fff;
  padding: 5.5rem 5rem 5rem; }
  .contact__form .form__title {
    font-weight: 500;
    margin-bottom: 2rem; }
    .contact__form .form__title + p {
      font-size: 2rem;
      font-weight: 400;
      color: #666666;
      margin-bottom: 3rem; }
  .contact__form [type="submit"] {
    min-width: 25rem;
    margin-top: 3.2rem; }

/* ---------- footer ---------- */
.main__footer {
  border-top: 1px solid #e9e9e9;
  position: relative;
  z-index: 55; }
  .main__footer_content {
    background: #FFFFFF;
    padding: 8rem 0 14rem; }
    .main__footer_content_inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .main__footer_logo {
    display: block;
    width: 100%;
    max-width: 8.8rem; }
  .main__footer_copy {
    background: #F1F2F2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: #939D9D;
    padding: 2rem 0; }
    .main__footer_copy p {
      margin-bottom: 0;
      font-weight: 300; }
  .main__footer .location {
    font-size: 1.5rem;
    font-weight: 300; }
    .main__footer .location a {
      color: #000000;
      display: block; }
      .main__footer .location a .address {
        display: block;
      }
      .main__footer .location a:hover {
        color: #48ADE1; }
  .main__footer .phone {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2.2rem;
    font-weight: 300;
    color: #000000;
    line-height: 1; }
    .main__footer .phone img,
    .main__footer .phone svg {
      width: 1.8rem;
      height: 1.8rem;
      margin-right: 1.5rem; }
    .main__footer .phone:hover {
      color: #48ADE1; }
  .main__footer .sign__form {
    position: relative;
    max-width: 31rem; }
    .main__footer .sign__form input {
      margin: 0;
      padding-right: 6.5rem; }
    .main__footer .sign__form button[type="submit"] {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 4.8rem;
      z-index: 1;
      background: #48ADE1; }
      .main__footer .sign__form button[type="submit"] img {
        max-width: 1.92rem;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .main__footer .sign__form button[type="submit"]:hover {
        background: #3B9BCC; }

  .main__footer .sign__form + #subscribe_result {
    max-width: 31rem;
    text-align: left;
  }

  .main__footer_info_block {
    font-size: 1.4rem; }
    .main__footer_info_block_title {
      font-weight: 300;
      margin-bottom: 2.6rem; }
    .main__footer_info_block:nth-of-type(1) .main__footer_info_block_title {
      margin-bottom: 1.8rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .main__footer_info_block:nth-of-type(1) .main__footer_info_block_title img,
      .main__footer_info_block:nth-of-type(1) .main__footer_info_block_title svg {
        width: 100%;
        max-width: 1.8rem;
        margin-right: 1.5rem; }
    .main__footer_info_block:nth-of-type(2) .main__footer_info_block_title {
      text-align: center; }


.main__footer_info_block .main__footer_info_block_title svg {
  height: 1.8rem;
}

.socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  .socials li {
    margin: 0 0.5rem; }
    .socials li a {
      display: block;
      width: 5rem;
      height: 5rem;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      position: relative;
      background: #8E9294;
      color: #fff; }
      .socials li a i {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        .socials li a i.fa-youtube {
          font-size: 2.2rem; }
        .socials li a i.fa-twitter {
          font-size: 1.8rem; }
        .socials li a i.fa-facebook-f {
          font-size: 2.1rem; }
        .socials li a i.fa-linkedin-in {
          font-size: 2.3rem;
          margin-top: -1px; }
          .socials li a i.fa-instagram {
          font-size: 2.5rem; }
      /* .socials li a.google__link:hover {
        background: #D74A37 !important; }
      .socials li a.youtube__link:hover {
        background: #F40007 !important; }
      .socials li a.twitter__link:hover {
        background: #3FA6DB !important; }
      .socials li a.facebook__link:hover {
        background: #6177b2 !important; }
      .socials li a.linkedin__link:hover {
        background: #0077b7 !important; } */
    .socials li:first-child {
      margin-left: 0; }
    .socials li:last-child {
      margin-right: 0; }
  .socials.full li {
    margin: 0 1rem; }
    .socials.full li a {
      min-width: 20rem;
      height: 7rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: #FFFFFF;
      -webkit-border-radius: 20rem;
              border-radius: 20rem;
      font-size: 1.8rem;
      font-weight: 500;
      color: #000000;
      border: 1px solid #E6E6E6; }
      .socials.full li a i {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
            -ms-transform: translate(0, 0);
                transform: translate(0, 0);
        color: #E6E6E6;
        margin-right: 1.2rem;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
      .socials.full li a:hover {
        background: #FFFFFF; }
      .socials.full li a.youtube__link:hover {
        border-color: #F40007; }
        .socials.full li a.youtube__link:hover i {
          color: #F40007; }
      .socials.full li a.twitter__link:hover {
        border-color: #3FA6DB; }
        .socials.full li a.twitter__link:hover i {
          color: #3FA6DB; }
      .socials.full li a.facebook__link:hover {
        border-color: #6177b2; }
        .socials.full li a.facebook__link:hover i {
          color: #6177b2; }
      .socials.full li a.linkedin__link:hover {
        border-color: #0077b7; }
        .socials.full li a.linkedin__link:hover i {
          color: #0077b7; }
    .socials.full li:first-child {
      margin-left: 0; }
    .socials.full li:last-child {
      margin-right: 0; }

.socials__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F1F2F2;
  padding: 3rem 4rem; }
  .socials__box_title {
    margin: 0;
    text-transform: uppercase;
    font-size: 2.6rem; }

/* ---------- SECTIONS ---------- */
.section__title.slogan {
  text-transform: uppercase;
  color: #39B54A; }
  .section__title.slogan span {
    color: #48ADE1; }

.divider {
  height: 3px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  background: #48ADE1; }
  .divider__text {
    max-width: 6.7rem; }

/* ---------- intro about ---------- */
.more__info {
  /* display: -webkit-box;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -webkit-align-items: center;
       -ms-flex-align: center;
           align-items: center;
   -webkit-box-pack: justify;
   -webkit-justify-content: space-between;
       -ms-flex-pack: justify;
           justify-content: space-between; */
           display: block;
  }

  .more__info::after {
    content: '';
    display: table;
    clear: both;
  }
  .more__info_side {
    width: -webkit-calc(50% - 1.5rem);
    width: calc(50% - 1.5rem); }
  .more__info_item {
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
            box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
    margin-bottom: 3rem; 
    width: calc(50% - 1.5rem);}

    .more__info_item:nth-child(odd) {
      float: right;
    }

    .more__info_item:nth-child(even) {
      float: left;
    }

    .more__info_item:nth-child(2) {
      margin-top: calc(25% + 1.5rem);
    }

    .more__info_item_content {
      position: relative;
      z-index: 0;
      padding-top: 105%; }
      .more__info_item_content_inner {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 1.5rem;
        text-align: center; }
    .more__info_item_icon {
      width: 100%;
      max-width: 12rem;
      margin: 0 auto 3.5rem;
      text-align: center; }
      .more__info_item_icon img {
        display: inline-block;
      }
    .more__info_item_icon_inner {
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }  
    .more__info_item_title {
      font-weight: 400;
      margin-bottom: 0;
      color: #000000;
      margin-bottom: 2.5rem; }
    .more__info_item_link {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 1.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #48ADE1;
      letter-spacing: 0.1rem;
      background: #FFFFFF;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      opacity: 0; }
      .more__info_item_link .border {
        display: block;
        position: absolute;
        left: 5%;
        top: 5%;
        right: 5%;
        bottom: 5%;
        z-index: 0; }
        .more__info_item_link .border::before, 
        .more__info_item_link .border::after {
          content: '';
          display: block;
          position: absolute;
          border: 2px solid rgba(72, 173, 225, 0.3); 
        }
        .more__info_item_link .border::before {
          left: 1px;
          top: 0;
          border-left: 0 none;
          border-bottom: 0 none;
          width: 0;
          height: 0;
          opacity: 0;
          -webkit-transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s;
          -o-transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s;
          transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s; }
        .more__info_item_link .border::after {
          border-right: 0 none;
          border-top: 0 none;
          right: 0.1rem;
          bottom: 0;
          opacity: 0;
          width: 0;
          height: 0;
          -webkit-transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s;
          -o-transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s;
          transition: opacity 0.3s ease 0s, width 0s ease 0.3s, height 0s ease 0.3s; }
      .more__info_item_link .text {
        position: relative;
        top: 1rem;
        opacity: 0;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .more__info_item:hover .more__info_item_link {
      opacity: 1; }
      .more__info_item:hover .more__info_item_link .border::before {
        opacity: 0.3;
        width: 100%;
        height: 100%;
        -webkit-transition: opacity 0s ease 0s, width 0.1s ease 0.1s, height 0.1s ease 0.2s;
        -o-transition: opacity 0s ease 0s, width 0.1s ease 0.1s, height 0.1s ease 0.2s;
        transition: opacity 0s ease 0s, width 0.1s ease 0.1s, height 0.1s ease 0.2s; }
      .more__info_item:hover .more__info_item_link .border::after {
        opacity: 0.3;
        width: 100%;
        height: 100%;
        -webkit-transition: opacity 0s ease 0s, width 0.1s ease 0.3s, height 0.1s ease 0.4s;
        -o-transition: opacity 0s ease 0s, width 0.1s ease 0.3s, height 0.1s ease 0.4s;
        transition: opacity 0s ease 0s, width 0.1s ease 0.3s, height 0.1s ease 0.4s; }
      .more__info_item:hover .more__info_item_link .text {
        top: 0;
        opacity: 1;
        -webkit-transition-delay: 0.3s;
             -o-transition-delay: 0.3s;
                transition-delay: 0.3s; }
        .more__info_item:hover .more__info_item_link .text i {
          font-size: 2rem;
          position: relative;
          top: 0.1rem;
          left: 0;
          margin-left: 0.2rem;
          -webkit-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
        .more__info_item:hover .more__info_item_link .text:hover i {
          left: 0.4rem; }

.intro__about {
  font-size: 2.2rem;
  font-weight: 400;
  color: #58595B; }
  .intro__about .content__wrapper {
    padding: 16.5rem 0 13.5rem; }
  .intro__about_side.left {
    padding-right: 4rem; }
  .intro__about .section__title {
    font-weight: 500;
    margin-bottom: 1.3rem; }
  .intro__about .section__title + p {
    font-weight: 300;
  }
  .intro__about .divider {
    margin-bottom: 3.7rem; }
  .intro__about p {
    margin-bottom: 4rem; }
  .intro__about .btn {
    min-width: 25rem;
    margin-top: 3.3rem; }

/* ---------- parralax info ---------- */
.youtube__video_container,
.slider__video_container {
  position: relative;
  width: 100%;
  line-height: 0;
  display: inline-block;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 60.5%; }
  .youtube__video_container .play__btn,
  .slider__video_container .play__btn {
    display: block;
    width: 100%;
    max-width: 7rem;
    height: 7rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .youtube__video_container .play__btn.play-icon{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    } 
    .youtube__video_container .play__btn .triangle {
      fill: #000000;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .youtube__video_container .play__btn:hover .triangle {
      fill: #48ADE1; }
    .youtube__video_container .play__btn.hide {
      opacity: 0;
      visibility: hidden; }
  .youtube__video_container .stop__btn,
  .slider__video_container_full .stop__btn {
    display: block;
    color: #fff;
    font-size: 2.2rem;
    height: 3.5rem;
    width: 3.5rem;
    position: absolute;
    right: 0rem;
    top: 0rem;
    z-index: 5;
    opacity: 0;
    visibility: hidden; }
    .youtube__video_container .stop__btn i,
    .slider__video_container_full .stop__btn i {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }



@media only screen and (max-width: 1399px) {
 .youtube__video_container .stop__btn, 
 .slider__video_container_full .stop__btn {
    font-size: 2.6rem;
    height: 4rem;
    width: 4rem;
  } 
}

@media only screen and (max-width: 1399px) {
 .youtube__video_container .stop__btn, 
 .slider__video_container_full .stop__btn {
    font-size: 2.2rem;
    height: 3.5rem;
    width: 3.5rem;
  } 
}






    .youtube__video_container .stop__btn.show,
    .slider__video_container_full .stop__btn.show {
      opacity: 1;
      visibility: visible; }
  .youtube__video_container_full,
  .slider__video_container_full {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }



    .youtube__video_container_full_inner,
    .slider__video_container_full_inner {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%) scale(0.7);
      -ms-transform: translate(-50%, -50%) scale(0.7);
      transform: translate(-50%, -50%) scale(0.7);
      opacity: 0;
      width: 100% !important;
      max-width: 964px;
      padding-top: 28.25%;
      overflow: hidden; }


@media only screen and (max-width:1600px) {
  .youtube__video_container_full_inner, 
  .slider__video_container_full_inner {
    padding-top: 33.25% !important;
  }
}

@media only screen and (max-width:1499px) {
  .youtube__video_container_full_inner, 
  .slider__video_container_full_inner {
    padding-top: 40.25% !important;
  }
}


@media only screen and (max-width:1299px) {
  .youtube__video_container_full_inner, 
  .slider__video_container_full_inner {
    padding-top: 43.25% !important;
  }
}

@media only screen and (max-width:1199px) {
  .youtube__video_container_full_inner, 
  .slider__video_container_full_inner {
    padding-top: 53.25% !important;
  }
}

@media only screen and (max-width:992px) {
  .youtube__video_container_full_inner, 
  .slider__video_container_full_inner {
    padding-top: 56.25% !important;
  }
}





      .youtube__video_container_full_inner iframe,
      .slider__video_container_full_inner iframe {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100%; }
    .youtube__video_container_full.show,
    .slider__video_container_full.show {
      opacity: 1;
      visibility: visible; }
  .youtube__video_container_inner {
    position: relative;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .youtube__video_container_inner iframe {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%; }
    .youtube__video_container_inner.show {
      opacity: 1;
      visibility: visible; }


      .youtube__video_container_full.show .youtube__video_container_full_inner, 
      .youtube__video_container_full.show .slider__video_container_full_inner,
      .slider__video_container_full.show .youtube__video_container_full_inner,
      .slider__video_container_full.show .slider__video_container_full_inner {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }







.parallax__info {
  position: relative; }
  .parallax__info_content {
    position: relative;
    font-size: 2.2rem;
    font-weight: 500;
    color: #FFFFFF;
    padding: 18.5rem 0; }
    .parallax__info_content::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      /*background: rgba(0, 0, 0, 0.2); */
      opacity: 0.6;
    }
    .parallax__info_content > .container {
      position: relative;
      z-index: 1; }
    .parallax__info_content p {
      margin-bottom: 4rem; }
    .parallax__info_content .btn {
      min-width: 25rem;
      margin-top: 0.8rem; }
    .parallax__info_content_side.left {
      padding-right: 10rem; }
  .parallax__info .section__title {
    font-size: 3.8rem;
    margin-bottom: 3.5rem; }
  .parallax__info.playing {
    z-index: 200; }

/* ---------- news items ---------- */
.likes__messages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500; }
  .likes__messages li {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 2.3rem; }
    .likes__messages li a {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      pointer-events: none;
    }
    .likes__messages li img,
    .likes__messages li svg {
      width: 100%;
      max-width: 1.8rem;
      margin-right: 1rem; }
    .likes__messages li:first-child {
      margin-left: 0; }

.news__item.detail .likes__messages li a {
  pointer-events: auto;
} 


 /*.likes__messages li:last-child {
  display: none !important;
 }*/


.news__item_column {
  margin-bottom: 3rem;
}

.news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
          box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
  height: 100%; }
  .news__item_image {
    position: relative;
    padding-top: 56%;
    overflow: hidden; 
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
          box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
  }
    .news__item_image .inner {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .news__item_image .category {
      position: absolute;
      left: 3rem;
      top: 3rem;
      background: rgba(0, 0, 0, 0.3) !important;
      z-index: 2; }
  .news__item .category {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #48ADE1;
    -webkit-border-radius: 20rem;
            border-radius: 20rem;
    padding: 0.5rem 1.4rem;
    letter-spacing: 0.1rem; }
  .news__item .status {
    list-style: none;
    margin: 0 0 3.1rem;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .news__item .status li {
      margin-right: 1.5rem; }
      .news__item .status li:last-child {
        margin-right: 0; }
    .news__item .status .date {
      font-size: 1.2rem;
      font-weight: 400; }
  .news__item_description {
    color: #58595B;
    padding: 3rem 3rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .news__item_description_top {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .news__item_description_top .action__line {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 4.2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem; }
        .news__item_description_top .action__line .status {
          margin-bottom: 0; }
  .news__item_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000; 
    line-height: 1.4;}
  .news__item_actions {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    padding: 2.4rem 0 2.6rem;
    letter-spacing: 0.1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .news__item_actions_more {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: #FFFFFF;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
      .news__item_actions_more a {
        font-size: 1.6rem;
        font-weight: 700;
        color: #48ADE1;
        text-transform: uppercase;
        letter-spacing: 0.15rem; }
        .news__item_actions_more a i {
          margin-left: 0.5rem;
          font-size: 1.8rem;
          position: relative;
          left: 0;
          top: 0.1rem;
          -webkit-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
        .news__item_actions_more a:hover i {
          left: 0.4rem; }
    .news__item_actions .autor {
      text-transform: uppercase;
      display: inline-block;
      margin-right: 0.8rem; }
    .news__item_actions .dr,
    .news__item_actions .date {
      color: #999;
      display: inline-block; }
    .news__item_actions .date {
      text-transform: uppercase;
      margin-left: 0.8rem; }
    .news__item_actions .more {
      display: inline-block;
      font-size: 1.4rem;
      font-weight: 700;
      color: #48ADE1;
      text-transform: uppercase; }
      .news__item_actions .more i {
        position: relative;
        left: 0;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
      .news__item_actions .more:hover i {
        left: 0.4rem; }
  .news__item:hover .news__item_actions_more {
    opacity: 1;
    visibility: visible; }
  .news__item:hover .news__item_image .inner {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05); }
  .news__item.featured .news__item_image {
    padding-top: 66.4%; }
  .news__item.featured .news__item_description {
    padding: 4rem 4rem 0;
    font-size: 1.8rem;
    font-weight: 400; }
    .news__item.featured .news__item_description .news__item_title {
      font-weight: 400; }
    .news__item.featured .news__item_description p {
      margin-bottom: 3.2rem; }
  .news__item.latest {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 4rem;
    height: auto; }
    .news__item.latest .news__item_description {
      width: 51%;
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
          -ms-flex-order: 0;
              order: 0; }
    .news__item.latest .news__item_image {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-top: 0;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1; }
    .news__item.latest .status {
      margin-bottom: 5rem; }
    .news__item.latest .news__item_title {
      font-size: 3rem;
      margin-bottom: 3rem; }
    .news__item.latest .news__item_description_top {
      margin-bottom: 2rem; }
  .news__item.detail {
    font-weight: 500;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .news__item.detail .news__item_title {
      font-size: 3rem;
      margin-bottom: 3.2rem; }
    .news__item.detail .news__item_description {
      padding-left: 0;
      padding-right: 0; }
    .news__item.detail p {
      margin-bottom: 2.8rem; }

      .news__item.detail .news__item_description table,
    .news__item.detail .news__item_description .table {
      width: 100%;
      min-width: 738px;
    }

    .news__item_description .table__wrapper {
      overflow-x: scroll;
    }

    .news__item.detail .news__item_description table tr:nth-child(2n+1), 
    .news__item.detail .news__item_description .table tr:nth-child(2n+1) {
      background: #f0f0f0;
    }

    .news__item.detail .news__item_description table tr:first-child {
      font-weight: 600;
    }

    .news__item.detail .news__item_description table td,
    .news__item.detail .news__item_description .table td {
      padding: 1rem;
    }

    .news__item.detail .socials {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin-bottom: 1.8rem;
      margin-top: 3.5rem; 
    }
      .news__item.detail .socials li a {
        width: 3rem;
        height: 3rem;
        background: #D1D3D4; }
        .news__item.detail .socials li a i.fa-google-plus-g {
          font-size: 1.4rem; }
        .news__item.detail .socials li a i.fa-youtube {
          font-size: 1.4rem; }
        .news__item.detail .socials li a i.fa-twitter {
          font-size: 1.2rem; }
        .news__item.detail .socials li a i.fa-facebook-f {
          font-size: 1.4rem; }
        .news__item.detail .socials li a i.fa-linkedin-in {
          font-size: 1.4rem; }
        .news__item.detail .socials li a:hover {
          background: #48ADE1; }

.latest__news .content__wrapper {
  padding: 15rem 0 13rem; }

.latest__news .section__title {
  text-align: center;
  margin-bottom: 7.5rem; }

.latest__news_more {
  margin-top: 6rem;
  text-align: center; }
  .latest__news_more .btn {
    min-width: 25rem; }

/* ---------- sub intro ---------- */
.sub__intro {
  position: relative;
  height: 71rem;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  .sub__intro::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /*background: #000000;*/
    opacity: 0.7;
    z-index: 0; }
  .sub__intro_content {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: flex-end;
    align-items: flex-end;
    font-size: 2.2rem;
    font-weight: 500;
    padding-top: 15.5rem;
    padding-bottom: 3rem; }

  .sub__intro .section__title {
    font-weight: 500;
    letter-spacing: 0.2rem;
    margin-bottom: 0; }

  .sub__intro .section__title .post__date {
    display: block;
    font-size: 2.2rem;
    margin-top: 0.5rem;
  }
    .sub__intro .section__title ~ p {
      margin-bottom: 0; }
  }
  .sub__intro .breadcrumbs {
    position: absolute;
    left: 50%;
    bottom: 2.3rem;
    margin-left: -605px; }
    .sub__intro .breadcrumbs li::after {
      color: #FFFFFF; }
    .sub__intro .breadcrumbs li a {
      color: #FFFFFF; }
  .sub__intro.wide {
    height: 40rem; }
/*    .sub__intro.wide .sub__intro_content {
      display: none; }*/

/* ---------- sub intro info ---------- */
.sub__intro_info {
  font-size: 2rem;
  font-weight: 400;
  color: #58595B;
  line-height: 1.8; }
  .sub__intro_info .content__wrapper {
    padding: 12.5rem 0; }
  .sub__intro_info .section__title {
    font-size: 3rem;
    line-height: 1.73;
    color: #000000;
    margin-bottom: 3.5rem; }

    .sub__intro_info .section__title:empty {
      display: none;
    }
  .sub__intro_info .divider {
    margin-bottom: 3.5rem; }
  .sub__intro_info_side {
    position: relative; }
    .sub__intro_info_side.left {
      padding-right: 2rem;
      top: -1.3rem; }
    .sub__intro_info_side.right {
      left: 11rem; }
    .sub__intro_info_side.right .image__container {
      padding-top: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

/* ---------- advantages list item ---------- */
.advantages__list_item {
  font-size: 1.8rem;
  background: #F8F8F8;
  padding: 4rem 3rem;
  height: 100%; }
  .advantages__list_item h3,
  .advantages__list_item h4,
  .advantages__list_item h5 {
    color: #000000;
    font-size: 3rem;
    margin-bottom: 3.4rem; }
  .advantages__list_item ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 300;
    color: #58595B; }
    .advantages__list_item ul li {
      position: relative;
      padding-left: 3.5rem;
      margin-bottom: 1.6rem; }
      .advantages__list_item ul li::before {
        content: "\f00c";
        font-family: 'Font Awesome 5 Pro';
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        color: #015DAB;
        font-size: 1.9rem; }

.advantages__lists {
  font-size: 2rem;
  font-weight: 400;
  color: #58595B; }
  .advantages__lists .additional__info {
    text-align: center;
    margin-top: 6.8rem; }
    .advantages__lists .additional__info .btn {
      min-width: 27rem;
      margin-top: 2rem; }

/* ---------- parallax simple text ---------- */
.parallax__simple_text {
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 30.2vw; }
  .parallax__simple_text::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #000000;
    opacity: 0.8; }
  .parallax__simple_text_content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8; }
    .parallax__simple_text_content_inner {
      max-width: 104rem; }
  .parallax__simple_text h2,
  .parallax__simple_text h3,
  .parallax__simple_text h4,
  .parallax__simple_text h5 {
    font-weight: 400;
    margin-bottom: 3rem; }
  .parallax__simple_text .divider {
    margin: 0 auto 3.8rem;
    background: #FFFFFF; }
  .parallax__simple_text p {
    margin-bottom: 0; }

/* ---------- person info ---------- */
.person__info {
  color: #58595B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .person__info_text {
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
            box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.74;
    padding: 3.8rem 4rem 8rem; }
  .person__info_thumb {
    width: 13.6rem;
    height: 13.6rem;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    position: relative;
    -webkit-box-shadow: 0 3rem 2.4rem 0px rgba(0, 0, 0, 0.03);
            box-shadow: 0 3rem 2.4rem 0px rgba(0, 0, 0, 0.03);
    margin: -6.8rem auto 2.2rem;
    /* &::after {
			content: '';
			display: block;
			position: absolute;
			left: -1px;
			top: -1px;
			right: -1px;
			bottom: -1px;
			border: 0.8rem solid $white;
			border-radius: 50%;
		} */ }
    .person__info_thumb_image {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      border: 0.8rem solid #FFFFFF;
      -webkit-border-radius: 50%;
              border-radius: 50%; }
  .person__info_data {
    text-align: center; }
    .person__info_data .name {
      color: #000000;
      margin-bottom: 0.9rem; }
    .person__info_data .position {
      font-weight: 300;
      display: inline-block;
      letter-spacing: 0.1rem; }
  .person__info.action {
    max-width: 38.4rem;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
            box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
    padding: 0 3rem 4rem; }
    .person__info.action .person__info_data {
      margin-bottom: 0; }
    .person__info.action .name {
      font-size: 2.4rem;
      font-weight: 500; }
    .person__info.action .position {
      font-size: 1.8rem;
      letter-spacing: 0;
      font-weight: 300;
      margin-bottom: 3.2rem; }
    .person__info.action .divider {
      height: 1px;
      background: rgba(0, 0, 0, 0.1);
      margin-bottom: 4rem; }
    .person__info.action .btn {
      width: 100%; }

.our__team .content__wrapper {
  padding: 14.5rem 0 10.8rem; }

.our__team .section__title {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem; }

.our__team .divider {
  margin: 0 auto 7.4rem; }

.our__team .person__info {
  height: 100%; }
  .our__team .person__info_text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .our__team .person__info_data {
    margin-bottom: 4.5rem; }

/* ---------- contacts ---------- */
.all__contacts_content {
  padding: 9rem 0; }
  .all__contacts_content_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
            box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
    position: relative; }
    .all__contacts_content_inner::after {
      content: '';
      display: block;
      width: 2px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1px;
      -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.4);
              box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.4);
      background: #F4F2F2;
      z-index: 1; }
    .all__contacts_content_inner_side {
      width: -webkit-calc(50% - 1px);
      width: calc(50% - 1px);
      padding-top: 7.5rem;
      padding-bottom: 12rem; }
      .all__contacts_content_inner_side.left {
        padding-left: 6.5rem;
        padding-right: 6.5rem; }
      .all__contacts_content_inner_side.right {
        padding-left: 6rem;
        padding-right: 6rem; }

.all__contacts .content__title {
  text-transform: uppercase;
  margin-bottom: 5.2rem; }

.all__contacts form .submit__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.8rem; }
  .all__contacts form .submit__wrapper label {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }

.contact__info_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  margin-bottom: 4.7rem; }
  .contact__info_item_icon {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    max-width: 3.5rem;
    min-width: 3.5rem;
    margin-right: 3rem; }
    .contact__info_item span.title {
      display: block;
      font-size: 2rem;
      font-weight: 500; }
  .contact__info_item a {
    color: #000000; }
    .contact__info_item a:hover {
      color: #48ADE1; }

 .contact__info_item .address {
    display: block;
 } 

.touch__form label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer; }
  .touch__form label input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden; }
  .touch__form label .custom__checkbox {
    margin-right: 1.4rem; }







    /* ---------- .product__info ---------- */

    .touch__form .form-groups {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      border-bottom: 1px solid #D1D3D4;
      margin-bottom: 3rem;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }

    .touch__form .form-group {
      padding-bottom: 2rem;
      width: 50%;
      margin-bottom: 1rem;
    }


    .touch__form .product__info_title {
      text-transform: uppercase;
      margin-top: 2rem;
      font-weight: 600;
    }

    .touch__form .form-group-title {
      margin-bottom: 1rem;
    }

    .touch__form .form-group-items label {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }

    .touch__form .product__info + div .submit__wrapper {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: flex-start;
      align-items: flex-start;
    }

    .touch__form .product__info + div .submit__wrapper button[type="submit"] {
     -webkit-box-ordinal-group: 2;
     -ms-flex-order: 1;
     order: 1;
   }

   .touch__form .product__info + div .submit__wrapper label {
    margin-bottom: 2rem;
   }






.reach__our_team {
  background: #F6F6F6; }
  .reach__our_team .content__wrapper {
    padding: 9rem 0; }
  .reach__our_team .persons-row {
    max-width: 87rem;
    margin: 0 auto; }
    .reach__our_team .persons-row div[class^="col"]:last-child .person__info, .reach__our_team .persons-row div[class^="col"]:nth-last-child(2) .person__info {
      margin-bottom: 0; }
  .reach__our_team .section__title {
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.8rem; }
  .reach__our_team .divider__text {
    margin: 0 auto 13.5rem; }
  .reach__our_team .person__info {
    margin-bottom: 11.4rem; }

/* ---------- news ---------- */
.news__categories {
  background: #F1F2F2;
  padding: 3rem 3rem 1rem; }

.news__categories_title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 2.4rem; }

.news__category {
  background: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.1rem;
  position: relative;
  margin-bottom: 2rem; }
  .news__category_link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  .news__category_icon {
    width: auto;
    height: auto;
    min-width: 2.8rem;
    position: relative;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .news__category_inner {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 1rem; }
  .news__category_title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .news__category_count {
    line-height: 1;
    color: #58595B; }
  .news__category:hover .news__category_title {
    color: #48ADE1; }
  .news__category:hover .news__category_icon {
    left: 0.4rem; }

.news .content__wrapper {
  padding: 9rem 0 10rem; }

.news .news__categories {
  margin: 0 0 3rem; }

.news .socials__box {
  margin-bottom: 3rem; }

.news__more {
  text-align: center;
  margin-top: 4rem; }
  .news__more .btn {
    min-width: 22.4rem; }
  .news__more .pagination {
    display: none; }

/* ---------- pagination ---------- */
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .pagination li {
    margin: 0 1rem; }
    .pagination li:first-child {
      margin-left: 0; }
    .pagination li:last-child {
      margin-right: 0; }
    .pagination li a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 5.4rem;
      height: 5.4rem;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 1.6rem;
      font-weight: 500;
      color: #000000;
      border: 1px solid #E5E5E5;
      -webkit-border-radius: 2px;
              border-radius: 2px; }
      .pagination li a i {
        font-size: 2rem;
        color: #48ADE1; }
      .pagination li a:hover {
        border-color: #D8D8D8; }
      .pagination li a.current {
        border-color: #48ADE1;
        pointer-events: none; }

/* ---------- article ---------- */
.breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  position: relative;
  z-index: 2; }
  .breadcrumbs li {
    position: relative;
    margin-right: 1.5rem; }
    .breadcrumbs li::after {
      content: "\f105";
      font-family: 'Font Awesome 5 Pro';
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      position: relative;
      top: 0.1rem; }
    .breadcrumbs li a {
      font-size: 1.6rem;
      font-weight: 500;
      display: inline-block;
      margin-right: 1.5rem;
      color: #000000;
      opacity: 0.7; }
    .breadcrumbs li.active a {
      opacity: 1; }
    .breadcrumbs li:last-child::after {
      display: none; }

/* ---------- Article ---------- */
.basic__section_sidebar .content__wrapper {
  padding: 9rem 0; }

.basic__section_sidebar .sidebar {
  padding-left: 3rem; }
  .basic__section_sidebar .sidebar__content_block {
    margin-bottom: 4.2rem; }
    .basic__section_sidebar .sidebar__content_block_title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #000000;
      text-transform: uppercase;
      margin-bottom: 2.2rem; }
    .basic__section_sidebar .sidebar__content_block:last-of-type {
      margin-bottom: 0; }
  .basic__section_sidebar .sidebar .news__categories {
    padding: 0.8rem; }
    .basic__section_sidebar .sidebar .news__categories .news__category {
      margin-bottom: 0.8rem; }
      .basic__section_sidebar .sidebar .news__categories .news__category:last-child {
        margin-bottom: 0; }
  .basic__section_sidebar .sidebar .socials li a {
    background: #D1D3D4; }


.article__comments {
  /*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
  margin-bottom: 8rem;
  
}

.article__comments_inner {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 1rem 3rem 3rem;
}

.article__comments_title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}


 .article__comment {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin-bottom: 2rem;
    padding: 1rem 0 0;
  }

  .article__comment:last-child {
    margin-bottom: 0;
  }

  .article__comment_link {
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .article__comment_title {
    font-weight: 600;
  }


.reply__box {
  font-weight: 500;
  color: #58595B; }
  .reply__box_title {
    font-size: 3.2rem;
    color: #000000; }
  .reply__box_note {
    margin-bottom: 4rem; }
  .reply__box form textarea {
    height: 14rem; }
  .reply__box form .btn {
    min-width: 23rem;
    margin-top: 1rem; }

.news__article .person__info {
  margin-bottom: 10rem; }

.news__article .reply__box {
  margin-bottom: 7rem; }

.recent__news {
  background: #F1F2F2;
  padding: 0.8rem; }
  .recent__news .recent__news_item {
    margin-bottom: 0.8rem; }
    .recent__news .recent__news_item:last-child {
      margin-bottom: 0; }

.recent__news_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  position: relative; }
  .recent__news_item_link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .recent__news_item_image {
    min-width: 10.8rem; }
    .recent__news_item_image .inner {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      padding-top: 100%; }
  .recent__news_item_description {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 2.5rem;
    padding-right: 1rem;
    padding-top: 1.5rem; }
  .recent__news_item .date {
    display: block;
    font-size: 1.3rem;
    color: #58595B;
    line-height: 1;
    margin-bottom: 1.4rem; }
  .recent__news_item .title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.55;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .recent__news_item:hover .title {
    color: #48ADE1; }

/* ---------- product__categories ---------- */

.product__categories .content__wrapper {
  padding: 12.5rem 0; }

.product__categories .container {
  width: 100%;
  max-width: 1400px; }


.category-col {
  margin-bottom: 3rem;
}

.product__category {
  position: relative;
  -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
          box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
  height: 100%; }
  .product__category_link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .product__category_image {
    position: relative;
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 58.6%; }
    .product__category_image::after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 0;
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .product__category_image .btn {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      min-width: 27rem;
      z-index: 1;
      margin-top: 1rem;
      opacity: 0; }
  .product__category_description {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: #58595B;
    padding: 3.2rem 2rem; }
    .product__category_description_title {
      color: #000000; }
    .product__category_description p {
      margin-bottom: 0; }
  .product__category:hover .product__category_image::after {
    opacity: 1; }
  .product__category:hover .product__category_image .btn {
    opacity: 1;
    margin-top: 0; }

/* ---------- support__call ---------- */
.support__call {
  background: #F6F6F6; }
  .support__call .content__wrapper {
    padding: 9rem 0; }
    .support__call .content__wrapper_inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      background: #FFFFFF;
      -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
              box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
      padding: 1rem;
      position: relative; }
      .support__call .content__wrapper_inner::after {
        content: '';
        display: block;
        position: absolute;
        left: 0.9rem;
        top: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
        border: 1px solid #48ADE1; }
  .support__call .side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 2; }
    .support__call .side.left {
      min-width: 21%; }
    .support__call .side.center {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-weight: 400;
      line-height: 1.75;
      color: #58595B;
      padding-left: 7rem;
      padding-right: 6rem; }
      .support__call .side.center p {
        margin-bottom: 0; }
    .support__call .side.right {
      width: 23.5%;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
  .support__call .support__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 2.4rem;
    font-weight: 500;
    color: #48ADE1;
    position: relative; }
    .support__call .support__link::after {
      content: '';
      display: block;
      width: 1px;
      position: absolute;
      right: 0;
      height: 46.4%;
      background: #E7E7E7; }
    .support__call .support__link img,
    .support__call .support__link svg {
      width: 100%;
      height: auto;
      max-width: 7.8rem;
      max-height: 5.6rem;
      margin-bottom: 2.8rem; }


  .ajax-load p {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
  }

  #post-data .news__item_column:first-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
            max-width: 100%;
            width: 100%;
            margin-bottom: 0;
  }

  #post-data .news__categories_row,
  #post-data .socials__box_row {
    width: 100%;
    margin: 0;
  }


  .captcha-error {
    display: block;
    font-weight: 500;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }

  .g-recaptcha {
    margin-bottom: 2rem;
  }

  .contact__form .captcha-error {
    margin-bottom: -1rem;
  }

  .field-error {
    display: block;
    color: #48ade1;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: -2rem;
    min-height: 1rem;
  }



  .notifications__message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  border: 1px solid #D1D3D4;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background: #F1F2F2;
  font-weight: 600;
  width: 100%;
  position: relative;
  display: flex;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start; }
  .notifications__message_left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
            position: relative;
            top: 0.5rem; }
  .notifications__message_right {
    line-height: 0; }
  .notifications__message .icon {
    min-width: 1.6rem;
    max-width: 1.6rem;
    height: 1.6rem;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background: #58595B;
    margin-right: 1.6rem;
    position: relative; }
    .notifications__message .icon .inner {
      border-left: 2px solid #FFFFFF;
      border-bottom: 2px solid #FFFFFF;
      width: 1.1rem;
      height: 0.6rem;
      position: absolute;
      left: 52%;
      top: 44%;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          -ms-transform: translate(-50%, -50%) rotate(-45deg);
              transform: translate(-50%, -50%) rotate(-45deg); }
  .notifications__message .close {
    min-width: 2rem;
    height: 2rem;
    position: relative; }
    .notifications__message .close .inner {
      width: 1.6rem;
      height: 1.6rem;
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
          -ms-transform: translate(-50%, -50%) rotate(45deg);
              transform: translate(-50%, -50%) rotate(45deg); }
      .notifications__message .close .inner::before, .notifications__message .close .inner::after {
        content: '';
        display: block;
        position: absolute;
        background: #58595B; }
      .notifications__message .close .inner::before {
        width: 2px;
        left: 50%;
        margin-left: -1px;
        top: 0;
        bottom: 0; }
      .notifications__message .close .inner::after {
        height: 2px;
        top: 50%;
        margin-top: -1px;
        left: 0;
        right: 0; }
  .notifications__message.success {
    border-color: #00A04E;
    color: #00A04E;
    background: #E4F0E9; }
    .notifications__message.success .icon {
      background: #00A04E; }
    .notifications__message.success .close .inner::before, .notifications__message.success .close .inner::after {
      background: #00A04E; }
  .notifications__message.error {
    border-color: #CC3C35;
    color: #CC3C35;
    background: rgba(204, 60, 53, 0.1); }
    .notifications__message.error .icon {
      background: #CC3C35;
      background: transparent;
      transform: rotate(0deg); }
      /*.notifications__message.error .icon .inner {
        min-width: 1.1rem;
        min-height: 1.1rem;
        border: 0 none;
        left: 50%;
        top: 50%; 
        transform: translate(-50%, -50%);}*/
        .notifications__message.error .icon .inner {
        min-width: 1.1rem;
        min-height: 1.1rem;
        border: 0 none;
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
        line-height: 0;
        }
        .notifications__message.error .icon .inner::before, 
        .notifications__message.error .icon .inner::after {
          content: '';
          display: block;
          background: #FFFFFF;
          position: absolute; }
        .notifications__message.error .icon .inner::before {
          width: 2px;
          left: 50%;
          top: 0;
          bottom: 0;
          margin-left: -1px;
          display: none; }
        /*.notifications__message.error .icon .inner::after {
          height: 2px;
          top: 50%;
          margin-top: -1px;
          left: 0;
          right: 0; }*/
          .notifications__message.error .icon .inner::after {
            content: "\f057";
            font-family: 'Font Awesome 5 Pro';
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            background: transparent;
            font-size: 1.8rem;
            position: relative;
           }
    .notifications__message.error .close .inner::before, .notifications__message.error .close .inner::after {
      background: #CC3C35; }


  #form_result {
    margin-top: 3rem;
  }



  .touch__form #form_result {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }





/* ---------- Product category ---------- */

/* ---------- filters ---------- */
.filters__box {
  margin-top: 2px; }
  .filters__box_item {
    border: 2px solid #F1F2F2;
    margin-top: -2px; }
    .filters__box_item_title {
      font-weight: 500;
      color: #000000;
      position: relative;
      padding: 2.1rem 4rem 2.1rem 2rem;
      line-height: 1.2;
      cursor: pointer; }
      .filters__box_item_title i {
        color: #d1d2d4;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: absolute;
        right: 2rem;
        top: 2.2rem; }
        .filters__box_item_title i.fa-plus {
          opacity: 1;
          -webkit-transform: rotate(0deg);
              -ms-transform: rotate(0deg);
                  transform: rotate(0deg); }
        .filters__box_item_title i.fa-minus {
          opacity: 0; }
    .filters__box_item_list {
      list-style: none;
      margin: 0;
      padding: 1rem 0;
      border-top: 2px solid #F1F2F2;
      display: none; }
      .filters__box_item_list li .filter_item {
        width: 100%;
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: flex-start;
        align-items: flex-start;
        padding: 0.5rem 2rem; }
        .filters__box_item_list li .filter_item input {
          opacity: 0;
          visibility: hidden;
          position: absolute; }
        .filters__box_item_list li .filter_item .custom__checkbox {
          margin-right: 1.5rem;
          position: relative;
          top: 0.5rem; }
    .filters__box_item.active .filters__box_item_title i {
      color: #48ADE1; }
      .filters__box_item.active .filters__box_item_title i.fa-plus {
        opacity: 0;
        -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
                transform: rotate(135deg); }
      .filters__box_item.active .filters__box_item_title i.fa-minus {
        opacity: 1; }

.filters__box_item:first-child .filters__box_item_list {
  display: block;
}

/* .sidebar__section {
  padding-top: 9rem;
} */

.sidebar__section_title {
  margin-bottom: 0;
  text-align: center;
  display: none;
}

.sidebar__section_content {
  padding: 7rem 0 12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .sidebar__section_content_side {
    min-width: 28rem;
    max-width: 28rem; }
  .sidebar__section_content_main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 3rem; }

.filter__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3; }
  .filter__actions_list_box {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 1rem; }

  .filter__actions_list_box.sort {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
            margin-left: 0;
  }

  .filter__actions_list_box.sort span {
    margin: 0 0.5rem;
    font-weight: 600;
  }

  .filter__actions_list_box.sort span:first-of-type {
    margin-left: 0;
  }

    .filter__actions_list_box_title {
      display: inline-block;
      font-weight: 500;
      margin-right: 1.3rem; }
  .filter__actions .switch__view {
    margin-left: 1rem; }
  .filter__actions_list {
    position: relative;
    font-size: 1.6rem;
    min-width: 17.2rem;
    margin-left: -1px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .filter__actions_list_toggle {
      height: 5.6rem;
      font-family: "Quicksand", sans-serif;
      font-size: 1.6rem;
      width: 100%;
      padding: 0 1.8rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      border: 1px solid #F1F2F2;
      position: relative;
      z-index: 1;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      background: #FFFFFF; }
      .filter__actions_list_toggle i {
        color: #48ADE1;
        position: relative;
        top: 0.1rem;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg); }
    .filter__actions_list ul {
      list-style: none;
      margin: 0;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      position: absolute;
      top: 100%;
      right: 0;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
      background: #FFFFFF;
      width: 100%;
      -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.07);
              box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.07); }
      .filter__actions_list ul li {
        margin-top: -1px; }
        .filter__actions_list ul li a {
          display: block;
          height: 5.6rem;
          line-height: 5.5rem;
          padding: 0 1.8rem;
          white-space: nowrap;
          border-bottom: 1px solid #F1F2F2;
          color: #000000; }
          .filter__actions_list ul li a:hover {
            background: #F6F6F6; }
          .filter__actions_list ul li a.current {
            color: #48ADE1;
            background: transparent;
            pointer-events: none; }
    .filter__actions_list.list-show .filter__actions_list_toggle i {
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
    .filter__actions_list.list-show > ul {
      opacity: 1;
      visibility: visible;
      z-index: 5; }

.switch__view {
  list-style: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  padding: 0; }
  .switch__view li {
    margin: 0;
    padding: 0; }
    .switch__view li a {
      display: block;
      min-width: 5.6rem;
      height: 5.6rem;
      position: relative;
      border: 1px solid #F1F2F2; }
      .switch__view li a img,
      .switch__view li a svg {
        width: 100%;
        max-width: 2.8rem;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
        filter: gray;
        -webkit-filter: grayscale(100%);
        opacity: 0.4;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
    .switch__view li.active a img,
    .switch__view li.active a svg {
      opacity: 1;
      filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
      -webkit-filter: grayscale(0%); }
    .switch__view li:last-child {
      margin-left: -1px; }

.products__catalog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: 0;
  margin-bottom: 5.5rem;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s; }
  .products__catalog_item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
            box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
    width: 100%;
    margin-bottom: 3rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    margin-right: 0; }
    .products__catalog_item_left {
      width: 100%;
      max-width: 34rem;
      min-width: 28rem;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .products__catalog_item_right {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      border-left: 1px solid #e7e7e7;
      overflow: hidden; }
    .products__catalog_item_image {
      position: relative;
      overflow: hidden;
      height: 100%; }
      .products__catalog_item_image .inner {
        position: relative;
        -webkit-background-size: cover;
                background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        height: 100%;
        overflow: hidden;
        -webkit-transition: all 0.3s ease 0s;
         -moz-transition: all 0.3s ease 0s;
         transition: all 0.3s ease 0s;
         max-height: 25rem; }

  .grid-view .products__catalog_item_image .inner {
     height: auto;
     padding-top: 63%;
     min-height: 22rem; 
    }  

        .products__catalog_item_image .inner::after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.4);
          opacity: 0;
          -webkit-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
        .products__catalog_item_image .inner .btn {
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          z-index: 1;
          height: 4.6rem;
          line-height: 4.6rem;
          min-width: 16.4rem;
          opacity: 0;
          visibility: hidden; }
      .products__catalog_item_image .products__catalog_item_title {
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        margin: 0;
        background: #FFFFFF;
        font-size: 1.8rem;
        font-weight: 700;
        padding: 2.2rem 2rem;
        border-top: 1px solid #e7e7e7;
        display: none; }
    .products__catalog_item_description {
      padding: 3.4rem 3rem 2.6rem;
      height: 100%; }
      .products__catalog_item_description_text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; 
                min-height: 10rem;}

        .products__catalog_item_description_text_button_box {
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          -ms-align-items: flex-end;
          align-items: flex-end;
        }

        .products__catalog_item_description_text .btn {
          min-width: 16.4rem;
          height: 4.6rem;
          line-height: 4.6rem;
          position: relative;
          top: -0.8rem; }
        .products__catalog_item_description_text .staff {
          font-size: 1.3rem; }
          .products__catalog_item_description_text .staff td {
            font-weight: 300;
            padding-top: 0.4rem;
            padding-bottom: 0.4rem; }
            .products__catalog_item_description_text .staff td:first-child {
              padding-right: 0.6rem; }
            .products__catalog_item_description_text .staff td:last-child {
              font-weight: 600;
              padding-left: 0.6rem; }
  .products__catalog.grid-view {
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    margin-right: -3rem; }
    .products__catalog.grid-view .products__catalog_item {
      -webkit-transition-delay: 0.2s;
           -o-transition-delay: 0.2s;
              transition-delay: 0.2s;
      width: -webkit-calc(33.333333%  - 3rem);
      width: calc(33.333333%  - 3rem);
      margin-right: 3rem; }
      .products__catalog.grid-view .products__catalog_item .products__catalog_item_image {
        width: 100%; }
        .products__catalog.grid-view .products__catalog_item .products__catalog_item_image:hover .inner::after {
          opacity: 1; }
        .products__catalog.grid-view .products__catalog_item .products__catalog_item_image:hover .inner .btn {
          opacity: 1;
          visibility: visible; }
        .products__catalog.grid-view .products__catalog_item .products__catalog_item_image .products__catalog_item_title {
          -webkit-transform: translateY(0);
              -ms-transform: translateY(0);
                  transform: translateY(0); }
      .products__catalog.grid-view .products__catalog_item .products__catalog_item_description * {
        white-space: nowrap; }






/*product-details*/
.product__details_main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8rem;
  background: #fff; }
  .product__details_main .product_slider {
    width: 43%; }
  .product__details_main .product_info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    width: -webkit-calc(57% - 5rem);
    width: calc(57% - 5rem); }

    .product__details_main .product_info .product_info_top {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }

    .product__details_main .product_info .product_title {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding-bottom: 1rem;
      border-bottom: 1px solid #979797; }
      .product__details_main .product_info .product_title div {
        width: 100%; }
      .product__details_main .product_info .product_title h3 {
        letter-spacing: 1.2px; }
        .product__details_main .product_info .product_title h6 {
          font-weight: 700;
        }
        
        .product__details_main .product_info .product_title .product__numbers_legacy {
          font-weight: 500;
        }

    .product__details_main .product_info .product_filters-check {
      padding: 3rem 0 1rem;
      -webkit-column-count: 2;
         -moz-column-count: 2;
              column-count: 2; }
      .product__details_main .product_info .product_filters-check h6 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 0; }
      .product__details_main .product_info .product_filters-check p {
        font-size: 1.6rem;
        font-weight: 500; }
        .product__details_main .product_info .product_filters-check p span, .product__details_main .product_info .product_filters-check p a {
          color: #48ADE1;
          display: inline-block;
          margin-left: 1.4rem; }
      .product__details_main .product_info .product_filters-check div {
        margin-bottom: 2.5rem; }
    .product__details_main .product_info .btn_block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .product__details_main .product_info .btn_block .btn {
        padding: 0 3rem;
        margin-right: 2rem; }
      .product__details_main .product_info .btn_block .share {
        display: block;
        width: 5.4rem;
        height: 5.4rem;
        background: #8E9294;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-border-radius: 50%;
                border-radius: 50%; }
        .product__details_main .product_info .btn_block .share span {
          display: block;
          width: 2.1rem;
          height: 2.1rem;
          background: url(../img/share.svg) center center/cover no-repeat; }

/*.product_slider {
  height: 61rem; }*/
  .product_slider .swiper-container {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto; }
  .product_slider .swiper-slide {
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .product_slider .product-top {
    min-height: 54rem;
    height: 100%;
    width: 100%; }
  .product_slider .product-top .swiper-slide {
    border: 1px solid #E7E7E7; }
  .product_slider .product-thumbs {
    height: 7.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 10px 0 0; }
  .product_slider .product-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    border: 1px solid #E7E7E7; }
  .product_slider .product-thumbs .swiper-slide-thumb-active {
    opacity: 1; }

.product_filters_section {
  padding: 4rem;
  background: #F6F6F6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .product_filters_section .product_offset, .product_filters_section .product_menu {
    width: 27rem;
    max-width: 27rem;
    min-width: 27rem; }
  .product_filters_section .product_wrapper {
    width: -webkit-calc(100% - 62rem);
    width: calc(100% - 62rem);
    margin: 0 4rem; }
    .product_filters_section .product_wrapper .instruction__item {
      position: relative;
      border: 1px solid #e8e8e8;
      padding: 5rem;
      line-height: 2;
      margin-bottom: 2rem;
      background: #fff; }
      .product_filters_section .product_wrapper .instruction__item > div {
        overflow: hidden;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
        .product_filters_section .product_wrapper .instruction__item > div.active {
          max-height: 1000rem; }
        .product_filters_section .product_wrapper .instruction__item > div.active .indicator {
          background: #48ADE1;
          color: #fff;
          -webkit-transform: rotate(135deg);
          -ms-transform: rotate(135deg);
          transform: rotate(135deg); }
      .product_filters_section .product_wrapper .instruction__item p, .product_filters_section .product_wrapper .instruction__item li {
        font-size: 1.6rem;
        font-weight: 500; }
      .product_filters_section .product_wrapper .instruction__item a.download {
        font-size: 1.6rem;
        color: #48ADE1;
        font-weight: 500; }
      .product_filters_section .product_wrapper .instruction__item ul {
        margin: 0 0 2.4rem; }
      .product_filters_section .product_wrapper .instruction__item li {
        list-style: none;
        padding-left: 2.1rem;
        position: relative;
        margin-bottom: 1rem; }
        .product_filters_section .product_wrapper .instruction__item li:before {
          position: absolute;
          left: 0;
          top: 1.5rem;
          width: 1.1rem;
          height: 2px;
          background: #48ADE1; }
      .product_filters_section .product_wrapper .instruction__item .faq {
        padding-bottom: 3rem;
        border-bottom: 1px solid #E7E7E7;
        margin-bottom: 1rem;
        margin-top: 3rem; }
        .product_filters_section .product_wrapper .instruction__item .faq:last-child {
          margin: 0;
          border: none; }
        .product_filters_section .product_wrapper .instruction__item .faq h4 {
          font-size: 1.6rem;
          font-weight: 700;
          margin: 2.2rem 0 2rem; }
        .product_filters_section .product_wrapper .instruction__item .faq p {
          font-size: 1.6rem;
          font-weight: 500;
          color: #58595B;
          margin: 0; }
          .product_filters_section .product_wrapper .instruction__item .faq p span, .product_filters_section .product_wrapper .instruction__item .faq p a {
            text-decoration: none;
            color: #48ADE1;
            font-weight: 700; }
      .product_filters_section .product_wrapper .instruction__item .indicator {
        position: absolute;
        top: 3rem;
        right: 3rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 3.4rem;
        height: 3.4rem;
        border: 1px solid #48ADE1;
        color: #48ADE1;
        background: transparent;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        z-index: 1;
        cursor: pointer; }
        .product_filters_section .product_wrapper .instruction__item .indicator i {
          font-size: 1.6rem; }
      .product_filters_section .product_wrapper .instruction__item .instruction__item_title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1.2rem; }
  .product_filters_section .support__call .content__wrapper {
    padding: 2rem 0 0; }
    .product_filters_section .support__call .content__wrapper .container {
      padding-left: 0;
      padding-right: 0; }
  .product_filters_section .product_menu ul {
    padding: 0 3rem;
    background: #fff;
    margin: 0;
    -webkit-box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.07); }
  .product_filters_section .product_menu li {
    list-style: none;
    border-bottom: 1px solid #E7E7E7; }
    .product_filters_section .product_menu li:last-child {
      border: none; }
    .product_filters_section .product_menu li a {
      display: block;
      padding: 1.5rem 0;
      color: #000;
      font-size: 1.6rem;
      font-weight: 500;
      cursor: pointer; }
      .product_filters_section .product_menu li a.active {
        color: #48ADE1; }

table.instruction_table {
  width: 100%;
  margin-top: 3rem; }
  table.instruction_table thead {
    background: #F4F4F4; }
    table.instruction_table thead td {
      position: relative;
      border-right: 1px solid #EEEEEE;
      padding: 1.5rem; }
      table.instruction_table thead td h6 {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.5rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        cursor: pointer; }
        table.instruction_table thead td h6 span.filter-icon {
          display: inline-block;
          width: 1.5rem;
          min-width: 1.5rem;
          height: 1.5rem;
          background: url(../img/filter.svg) center center/cover no-repeat;
          margin-left: 5px;
          -webkit-filter: grayscale(1);
                  filter: grayscale(1);
          -webkit-transition: all 0.2s linear;
          -o-transition: all 0.2s linear;
          transition: all 0.2s linear; }
          table.instruction_table thead td h6 span.filter-icon.active {
            -webkit-filter: grayscale(0);
                    filter: grayscale(0); }
      table.instruction_table thead td .product__filters__select {
        position: absolute;
        padding: 1.5rem 2rem;
        background: #fff;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        width: auto;
        -webkit-box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.07);
                box-shadow: 0 0.2rem 2rem rgba(0, 0, 0, 0.07);
        -webkit-transform: translate(100%, 0);
            -ms-transform: translate(100%, 0);
                transform: translate(100%, 0);
        position: absolute;
        right: 5.5rem;
        top: 4rem;
        z-index: -1;
        opacity: 0;
        -webkit-transition: opacity .2s linear;
        -o-transition: opacity .2s linear;
        transition: opacity .2s linear; }
        table.instruction_table thead td .product__filters__select.active {
          z-index: 9;
          opacity: 1; }
        table.instruction_table thead td .product__filters__select form {
          position: relative;
          width: 11rem; }
          table.instruction_table thead td .product__filters__select form:after {
            position: absolute;
            top: -2.1rem;
            width: 1.2rem;
            height: 1.2rem;
            content: '';
            display: block;
            left: 0;
            background: #fff;
            -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                    transform: rotate(45deg); }
        table.instruction_table thead td .product__filters__select label {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 1.2rem;
          font-weight: 700;
          padding: 0.5rem 0 1.3rem; }
          table.instruction_table thead td .product__filters__select label span {
            margin-right: 1rem; }
          table.instruction_table thead td .product__filters__select label input {
            display: none; }
        table.instruction_table thead td .product__filters__select button.btn {
          width: 100%;
          min-width: 100%;
          -webkit-border-radius: 2px;
                  border-radius: 2px;
          height: 39px;
          line-height: 39px;
          font-size: 1.2rem;
          margin: 0.7rem 0 1.4rem; }
        table.instruction_table thead td .product__filters__select .clear {
          color: #58595B;
          font-size: 1.2rem;
          font-weight: 500;
          display: block;
          text-align: center; }
      table.instruction_table thead td:last-child {
        border-right: none; }
        table.instruction_table thead td:last-child .product__filters__select {
          right: 2px;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; }
          table.instruction_table thead td:last-child .product__filters__select form:after {
            left: 95%; }
  table.instruction_table tbody tr {
    background: #F4F4F4; }
    table.instruction_table tbody tr:nth-child(odd) {
      background: #fff; }
  table.instruction_table tbody td {
    padding: 1.5rem;
    border-right: 1px solid #EEEEEE;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4rem;
    text-align: center; }
    table.instruction_table tbody td:first-child {
      text-align: left;
      color: #48ADE1; }
    table.instruction_table tbody td:last-child {
      border-right: none; }
  table.instruction_table.table_specification {
    margin-top: 7.4rem; }
    table.instruction_table.table_specification thead td {
      padding: 1rem;
      vertical-align: middle; }
      table.instruction_table.table_specification thead td h5 {
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        text-align: center;
        text-transform: uppercase; }
      table.instruction_table.table_specification thead td:first-child {
        min-width: 1rem;
        max-width: 13.7rem;
        padding-left: 1.5rem; }
        table.instruction_table.table_specification thead td:first-child h5 {
          text-align: left; }
    table.instruction_table.table_specification thead th {
      border-right: 1px solid #EEEEEE;
      border-top: 1px solid #EEEEEE;
      min-width: 1rem;
      max-width: 8.8rem;
      width: 8.8rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 6px 9px;
      font-size: 1.3rem;
      font-weight: 500;
      vertical-align: middle;
      line-height: 1.2; }
      table.instruction_table.table_specification thead th:last-child {
        border-right: none; }
    table.instruction_table.table_specification tbody h5 {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0;
      text-align: center;
      text-transform: uppercase;
      color: #000; }
    table.instruction_table.table_specification tbody h6 {
      font-size: 1.4rem;
      text-align: center;
      font-weight: 500;
      margin: 0; }
    table.instruction_table.table_specification tbody td {
      max-width: 8.8rem;
      width: 8.8rem; }
      table.instruction_table.table_specification tbody td:first-child {
        color: #000;
        width: 13.7rem;
        max-width: 13.7rem; }

.related_product {
  padding: 9rem 0;
  background: #fff; }
  .related_product .container {
    padding-left: 0;
    padding-right: 0; }
  .related_product .slider-wrapper {
    position: relative; }
    .related_product .slider-wrapper .swiper-button-prev, .related_product .slider-wrapper .swiper-button-next {
      top: 45%;
      background: url(../img/arrow-blue.svg) center center/2rem no-repeat;
      outline: none; }
      .related_product .slider-wrapper .swiper-button-prev:focus, .related_product .slider-wrapper .swiper-button-prev:active, .related_product .slider-wrapper .swiper-button-next:focus, .related_product .slider-wrapper .swiper-button-next:active {
        outline: none; }
    .related_product .slider-wrapper .swiper-button-prev {
      left: -6.4rem; }
    .related_product .slider-wrapper .swiper-button-next {
      right: -6.4rem;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  .related_product .swiper-slide {
    padding: 1.5rem; }
    .related_product .swiper-slide > div {
      -webkit-box-shadow: 0 0.2rem 1.5rem 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 0.2rem 1.5rem 0 rgba(0, 0, 0, 0.1);
      -webkit-border-radius: 2px;
              border-radius: 2px; }
    .related_product .swiper-slide div.img {
      -webkit-background-size: 90% 90%;
              background-size: 90%;
      background-repeat: no-repeat;
      background-position: left center;
      height: 19.5rem; }
  .related_product .related_button_next, .related_product .related_button_prev {
    width: 7.4rem;
    height: 7.4rem; }
  .related_product h2 {
    margin-bottom: 4.4rem;
    text-align: center; }
  .related_product h6 {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 2rem 2rem 1.5rem;
    border-top: 1px solid #E7E7E7;
    margin: 0; }



/* ---------- 404 ---------- */
.footer__404 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }
  .footer__404 .main__footer_content {
    display: none; }

.section__404 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  overflow: hidden;
  background: #fafafa; }
  .section__404_num_overlay {
    position: absolute;
    left: 0;
    top: 15rem;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .section__404_num_overlay .inner {
      width: 82.8vw;
      max-width: 1590px;
      margin: 0 auto 0;
      position: relative;
      top: -3vh; }
  .section__404_img_overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-background-size: 100% 100%;
            background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom; }
  .section__404_content {
    width: 100%;
    text-align: center;
    color: #000;
    position: relative;
    z-index: 5;
    /*margin-top: -90px; */
  }
    .section__404_content .title {
      font-size: 62px;
      margin-bottom: 30px; }
      .section__404_content .title + p {
        max-width: 600px;
        margin: 0 auto 43px; }


  .localheader__404.sticky {
    top: 6.4rem;
  }




  .formula-text {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.formula-text strong {
  display: block;
  font-weight: 500;
  text-align: center;
  margin-left: 5px;
}

.formula-text strong u,
.formula-text strong span {
  display: block;
  position: relative;
  text-decoration: none !important;
}

.formula-text strong u::after,
.formula-text strong span::after {
  content: '';
  display: block;
  height: 1px;
  background: #58595B;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}


.product_menu.is-affixed .inner-wrapper-sticky {
  bottom: 10rem;
}

.product__numbers {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.product__numbers_id {
  margin-right: 15%;
}

.product__numbers_legacy.empty {
  display: none;
}

.sub_intro_breadcrumbs {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  color: #ccc;
  font-weight: 500;
}

.intro_bs {
  color: #fff;
}

.intro_bs a {
  color: inherit;
}

.intro_bs span {
  display: inline-block;
  position: relative;
}

.intro_bs span:not(.current)::after {
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: relative;
  top: 0.2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  color: #fff;
}

.intro_bs .current {
  color: #fff;
}










.product_filters_section .instruction__item {
  display: block !important;
  position: relative;
  padding: 4.5rem 4rem 1rem !important;
  line-height: 2;
  margin-bottom: 3rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.product_filters_section .instruction__item .question {
  position: relative;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 3rem;
  justify-content: space-between;
  cursor: pointer;
  max-height: 1000000rem !important;
  overflow: visible !important;
}

.product_filters_section .instruction__item .instruction__item_title {
  margin-bottom: 0 !important;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 1.5rem; 
}

.product_filters_section .instruction__item .indicator {
  position: relative !important;
  top: 0rem !important;
  right: 0 !important;
  margin-top: -0.5rem;
}

.product_filters_section .instruction__item p {
  margin-bottom: 3.6rem; 
}

.product_filters_section .instruction__item .answer {
  padding-right: 4rem;
  display: none;
  margin-bottom: 2rem;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}

.product_filters_section .instruction__item.active .indicator {
  background: #005a93;
  color: #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg); 
}

.sub__intro_about {
  height: 60rem;
}

.sub__intro_about .sub__intro_content {
  -ms-align-items: center;
  align-items: center;
} 

.sub__intro_category .sub__intro_content {
  -ms-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 5rem;
}

.sub__intro_category .section__title {
  text-align: left;
  font-size: 4rem;
  font-weight: 500;
}

.sub__article .sub_intro_breadcrumbs .current {
  font-size: 5rem;
  line-height: 1.1;
}








/* ---------- CHANGER ---------- */
.gcc-header-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 108rem;
  margin: 0 auto;
}
.gcc-header-content.left{
  align-items: flex-start;
}
.gcc-header-content h2 {
  font-size: 4rem;
  line-height: 1.25;
  margin-bottom: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
  

@media only screen and (max-width: 1199px) {
  .gcc-header-content h2 {
    font-size: 4.6rem;
  } 
}

.gcc-header-content.left h2{
  text-align: left;
}
.gcc-header-content p{
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
  color: #13679B;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}
.gcc-header-content.left p {
  text-align: left;
  margin: 0 0 3rem;
}
.sub__intro.parallax__info {
  height: 83rem;
}
.sub__intro.parallax__info .sub__intro_content{
  padding-bottom: 12rem;
}




.sub__intro.gc {
  height: 100vh !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 60;
}

.sub__intro.gc.play {
  z-index: 110;
}

.sub__intro.gc.parallax__info .sub__intro_content{
  padding-top: 0;
  height: auto;
  padding-bottom: 0;
  z-index: 5;
}


@media only screen and (max-width: 1600px) {
  .sub__intro.gc.parallax__info .sub__intro_content {
    margin-top: 4rem;
  }
}


@media only screen and (max-width: 1399px) {
  .gcc-header-content-bottom {
    margin-top: 2.5rem;
  }
}




@media only screen and (max-width: 992px){

  .sub__intro.gc.parallax__info .sub__intro_content {
    padding-top: 7rem;
  }

  .gcc-header-content h2{
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
  .gcc-header-content p{
    margin-bottom: 2rem;
  }
  .sub__intro.parallax__info {
    height: 73rem;
  }

  .sub__intro.gc {
    height: auto !important;
  }

  .sub__intro.parallax__info .sub__intro_content {
    padding-bottom: 7rem;
  }

  .gcc-header-content.left {
    margin-bottom: 5rem;
  }

  .gcc-header-content-bottom {
    margin-top: 2.5rem !important;
    margin-bottom: 10rem;
  }

  .gcc_product_block .gcc-header-content.left {
    margin-bottom: 0rem;
  }

}


@media only screen and (max-width: 767px) {
 .gcc-header-content.left {
    margin-bottom: 0;
  } 
}



.sub__intro_content .youtube__video_container,
.sub__intro_content .slider__video_container,
.sub__intro_content .slider__image_container {
  padding-top: 57%;
  border: 3px solid #F3CA3E;
  border-radius: 4px;
  box-shadow: 0 0.2rem 0.6rem 0 rgba(0,0,0,0.5);
}


.sub__intro_content .slider__image_container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.sub__intro_content .gcc-header-content  {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.sub__intro_content .gcc-header-content.left > img {
  max-width: 50rem;
  padding-bottom: 2rem;
}

.sub__intro.gc::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.sub__intro_content .gcc-header-content h2 + p{
  margin-bottom: 4.3rem;
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.33;
  font-weight: 400;
  padding-right: 6rem;
  letter-spacing: 0.1rem;
}

@media only screen and (max-width: 1199px) {
  .sub__intro_content .gcc-header-content h2 + p {
    padding-right: 0;
  }
}

.sub__intro_content .gcc-header-content .btn {
  height: 4.5rem;
  line-height: 4.5rem;
  min-width: 18.4rem;
  padding: 0 1.5rem;
  font-size: 1.2rem;
  color: #000;
}

.sub__intro_content .gcc-header-content .btn::after {
  color: #000;
}

.sub__intro_content .gcc-header-content .btn::after {
  top: 0.3rem;
}

.sub__intro_content .gcc-header-content p{
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #fff;
}



.sub__intro_wave_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}

.sub__intro_wave_bottom .wave__wrapper {
  margin-bottom: -1px;
  overflow: hidden;
}


@media only screen and (max-width: 767px) {
  .sub__intro_wave_bottom {
    margin-top: -4rem;
  }  
}

@media only screen and (max-width: 599px) {
  .sub__intro_wave_bottom {
    margin-top: -3rem;
  }  
}

.sub__intro_wave_bottom svg {
  margin-bottom: -1px;
}

.sub__intro_wave_bottom .front__wave {
  fill: #fff;
}

.sub__intro_wave_bottom .back__wave {
  fill: #F3CA3E;
}


.changer__intro_content {
  padding: 8.2rem 0 7.4rem; }

  
  .changer__intro_content_top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5rem; }
    .changer__intro_content_top .side.left {
      width: 48.7%; }



.gcc-header-content-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  font-size: 1.5rem;
  margin-top: 4.5rem;
}


@media only screen and (max-width: 1399px) {
  .gcc-header-content-bottom {
    margin-top: 1rem;
  }
}



.gcc-header-content-bottom p {
  margin-bottom: 0;
}

.gcc-header-content-bottom p span {
  display: block;
}

.gcc-header-content-bottom-side.right {
  position: relative;
  top: 0.4rem;
}

.gcc-header-content-bottom-side.right img {
  width: 100%;
  max-width: 15.6rem;
}


.gc__nav_bar {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 100%;
  margin-bottom: -5rem;
  padding: 0 1.5rem;
}

.gc__nav_bar.fixed {
  position: fixed;
  top: auto;
  bottom: 1.5rem;
  margin-bottom: 0;
  animation: barfadein 0.5s ease 0s forwards;
}

@keyframes barfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@webkit-keyframes barfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@media only screen and (max-width: 599px) {
  .gc__nav_bar {
    margin-bottom: -3rem;
  }
}


.gc__nav {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 4rem;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0,0,0,0.44);
  list-style: none;
  margin: 0 auto;
  padding: 1.3rem 0;
  flex-wrap: wrap;
  min-width: 28rem;
}

.gc__nav li {
  margin: 0 1rem;
}

.gc__nav li a {
  display: block;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.gc__nav li a:hover {
  color: #F3CA3E;
}


@media only screen and (max-width: 767px) {
  .changer__intro_content_top .side.left {
    width: 100%;
    margin-bottom: 3rem; } 

    .gc__nav li a {
      font-size: 1rem;
    }


  }
    .changer__intro_content_top .side.right {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    @media only screen and (max-width: 767px) {
      .changer__intro_content_top {
        display: block;
        margin-bottom: 3rem; } }
  @media only screen and (max-width: 767px) {
    .changer__intro_content {
      padding: 3rem 0; } }

.changer__intro .changer__info_box {
  height: 100%;
  padding-left: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .changer__intro .changer__info_box_title {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 3.2rem; }

  .changer__intro .changer__info_box_title + p {
    font-size: 1.8rem;
  }

  .changer__intro .changer__info_box_text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .changer__intro .changer__info_box .buttons__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
    .changer__intro .changer__info_box .buttons__list li {
      margin-right: 2rem; }
      .changer__intro .changer__info_box .buttons__list li.last-child {
        margin-right: 0; }
      @media only screen and (max-width: 992px) {
        .changer__intro .changer__info_box .buttons__list li {
          margin-right: 0; } }
    .changer__intro .changer__info_box .buttons__list .btn {
      height: 5.2rem;
      line-height: 5.2rem;
      padding: 0 3rem;
      min-width: 17.6rem; }
      .changer__intro .changer__info_box .buttons__list .btn.faq__btn {
        line-height: 4.8rem;
        background: transparent;
        border: 2px solid #D1D3D4;
        color: #000; }
        .changer__intro .changer__info_box .buttons__list .btn.faq__btn:hover {
          border-color: #a1a1a1; }
        @media only screen and (max-width: 1199px) {
          .changer__intro .changer__info_box .buttons__list .btn.faq__btn {
            margin-top: 2rem; } }
      @media only screen and (max-width: 599px) {
        .changer__intro .changer__info_box .buttons__list .btn {
          width: 100%;
          min-width: 1px; } }
    @media only screen and (max-width: 1199px) {
      .changer__intro .changer__info_box .buttons__list {
        display: block; } }
  @media only screen and (max-width: 992px) {
    .changer__intro .changer__info_box {
      padding-left: 2rem; } }
  @media only screen and (max-width: 767px) {
    .changer__intro .changer__info_box {
      padding-left: 0; } }

.play-icon {
  font-size: 3rem;
  color: #fff;
  width: 7.6rem;
  height: 7.6rem;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.4);
  position: relative; }
  .play-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%; }
  .play-icon i {
    position: relative;
    left: 0.2rem; }

.changer-gallery-top {
  padding-top: 61%;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  margin-bottom: 1rem; }
  .changer-gallery-top .swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .changer-gallery-top .swiper-wrapper .swiper-slide {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; }
      .changer-gallery-top .swiper-wrapper .swiper-slide .slide-link {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1; }
      .changer-gallery-top .swiper-wrapper .swiper-slide .play-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
  .changer-gallery-top .control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    width: 5rem;
    height: 5rem;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 5;
    font-size: 2rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0; }
    .changer-gallery-top .control.changer-swiper-button-prev {
      left: -7rem; }
    .changer-gallery-top .control.changer-swiper-button-next {
      right: -7rem; }
  .changer-gallery-top:hover .control.changer-swiper-button-prev {
    left: 1rem;
    opacity: 1; }
  .changer-gallery-top:hover .control.changer-swiper-button-next {
    right: 1rem;
    opacity: 1; }

.changer-gallery-thumbs {
  padding-top: 14.5%; }
  .changer-gallery-thumbs .swiper-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .changer-gallery-thumbs .swiper-wrapper .swiper-slide {
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      cursor: pointer; }
      .changer-gallery-thumbs .swiper-wrapper .swiper-slide::after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        -webkit-transform: translateY(101%);
            -ms-transform: translateY(101%);
                transform: translateY(101%);
        background: rgba(19, 103, 155, 0.75);
        -webkit-transition: all 0.2s ease-out 0s;
        -o-transition: all 0.2s ease-out 0s;
        transition: all 0.2s ease-out 0s; }
      .changer-gallery-thumbs .swiper-wrapper .swiper-slide:hover::after {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }
      .changer-gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::after {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }

.links__list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .links__list li {
    padding: 1.5rem 0 1.5rem 3rem;
    border-bottom: 1px solid #E7E7E7; }
    .links__list li a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: #13679b; }
      .links__list li a img {
        max-width: 1.8rem;
        margin-right: 1rem; }
    .links__list li:last-child {
      border: 0 none; }


.links__list li a i {
  margin-right: 1.1rem;
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.changer__accordion_title {
  font-size: 3rem;
  font-weight: 600;
}

.changer__accordion .accordion-item .question {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #E7E7E7;
  padding: 2.2rem 1.5rem 2.2rem 0; }
  .changer__accordion .accordion-item .question span {
    display: block;
    min-width: 1.4rem;
    min-height: 1.4rem;
    max-height: 1.4rem;
    max-width: 1.4rem;
    position: relative;
    margin-right: 1.4rem;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: 0.7rem; }
    .changer__accordion .accordion-item .question span::before, .changer__accordion .accordion-item .question span::after {
      content: '';
      display: block;
      position: absolute;
      background: #1F689A;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
    .changer__accordion .accordion-item .question span::before {
      width: 2px;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1px;
      opacity: 1; }
    .changer__accordion .accordion-item .question span::after {
      height: 2px;
      right: 0;
      left: 0;
      top: 50%;
      margin-top: -1px; }
  .changer__accordion .accordion-item .question.opened {
    color: #1F689A; }
    .changer__accordion .accordion-item .question.opened span {
      -webkit-transform: rotate(-225deg);
          -ms-transform: rotate(-225deg);
              transform: rotate(-225deg); }

.changer__accordion .accordion-item .answer {
  overflow-x: auto; }
  .changer__accordion .accordion-item .answer a,
  .changer__accordion .accordion-item .answer strong {
    color: #13679b; }
  .changer__accordion .accordion-item .answer table {
    font-size: 1.5rem;
    margin-bottom: 2.1rem;
    width: 100%;
    min-width: 80rem; }

.changer__accordion .accordion-item .answer table hr {
  display: none;
}

.changer__accordion .accordion-item .answer table th {
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 1.4rem;
}

.changer__accordion .accordion-item .answer table th,
.changer__accordion .accordion-item .answer table td {
  padding: 0 0.5rem;
}

.changer__accordion .accordion-item .answer table td {
  border: 1px solid #E7E7E7;
}

.changer__parallax_slider .swiper-wrapper {
  margin-bottom: 4.2rem; }

.changer__parallax_slider .swiper-slide {
  opacity: 0 !important;
  -webkit-transition-duration: 800ms !important;
       -o-transition-duration: 800ms !important;
          transition-duration: 800ms !important; }
  .changer__parallax_slider .swiper-slide.swiper-slide-active {
    opacity: 1 !important; }

    .swiper-pagination-bullets{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: absolute;
      z-index: 2;
      bottom: 40px;
      left: 0;
      width: 100%;
}
.changer-parallax-swiper-pagination .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  opacity: 1; }
  .changer-parallax-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
    background: #fff; }

.changer__parallax {
  height: 54rem;
  position: relative;
  overflow: hidden; 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.changer__parallax.wide {
  height: 40rem;
}


@media only screen and (max-width: 767px) {
  .changer__parallax.wide {
    height: auto;
  }
}

.changer__parallax.no-slider .gcc-header-content h2 {
  font-size: 4.5rem;
  font-weight: 400;
}


@media only screen and (max-width: 1199px){
  .changer__parallax {
    height: 55rem;
  }
}
  .changer__parallax::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    z-index: 1; }
  .changer__parallax.no-slider::after {
    display: none;
  }
  .changer__parallax_bg {
    position: absolute;
    left: 0;
    top: -50%;
    height: 200%;
    right: 0;
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0; }
  .changer__parallax_content {
    width: 100%;
    max-width: 100%;
    color: #fff;
    position: relative;
    text-align: center;
    z-index: 3;
    padding: 8rem 0 7.2rem; }
    .changer__parallax_content_inner {
      max-width: 115rem;
      margin: 0 auto; }


    .no-slider .changer__parallax_content_inner{
      max-width: 85rem;
    }
    .no-slider .changer__parallax_content_inner p {
      font-size: 1.8rem;
      line-height: 1.55;
      margin-bottom: 3rem;
      color: #fff;
      font-weight: 400;
    }
    .changer__parallax_content .title {
      font-size: 2.8rem;
      line-height: 1.25;
      margin-bottom: 2.6rem;
      margin-left: 0;
      margin-right: 0;
      font-weight: 700;
      padding: 0 5rem;
    }
      @media only screen and (max-width: 767px) {
        .changer__parallax_content .title {
          line-height: 1.4; 
          padding: 0;

        } 

        }
    .changer__parallax_content .notice {
      font-size: 1.8rem;
      line-height: 1.28;
      max-width: 40rem;
      margin: 0 auto;
     }

     .changer__parallax_content_inner .btn {
        height: 5.3rem;
        line-height: 5.3rem;
        font-size: 1.2rem;
        text-transform: uppercase;
        padding: 0 1.5rem;
        min-width: 18.3rem;
     }

     .changer__parallax_content_inner .btn::after {
      top: 0.3rem;
     }



    @media only screen and (max-width: 767px) {
      .changer__parallax_content {
        padding: 4rem 0 5rem; } 

        .changer__parallax.wide .swiper-pagination-bullets {
          bottom: 4rem !important;
        }

      }


.changer__parallax.wide .swiper-pagination-bullets {
  bottom: 9rem;
}


.changer__faq {
  padding: 7rem 0 5rem;
  overflow: hidden; }
  .changer__faq .section__title {
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 6rem; }
.accordion-item .answer a {
  font-weight: 600;
}
  @media only screen and (max-width: 767px) {
  .changer__faq .section__title {
  margin-bottom: 4rem; } }
  @media only screen and (max-width: 767px) {
  .changer__faq {
  padding: 4rem 0 3rem; } }



/*changer new*/
.gc__possibilities_section {
  padding: 3rem 0;
}

.gc__possibilities_section .container {
  max-width: 108rem;
}


.gc__possibilities_blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .gc__possibilities_blocks {
    align-items: flex-end;
  }
}

@media only screen and (max-width: 992px) {
  .gc__possibilities_blocks {
    align-items: flex-start;
  }
}


.gc__possibilities_blocks .item {
  width: 100%;
  max-width: 45.5rem;
  padding: 2.5rem 6rem 2.5rem 4.5rem;
  margin-bottom: 3.4rem;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  cursor:  pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  left: 0;
  margin-right: -2.5rem;
}

.gc__possibilities_blocks .item::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.gc__possibilities_blocks .item > * {
  position: relative;
  -webkit-transition: left 0.3s ease 0s;
  -moz-transition: left 0.3s ease 0s;
  transition: left 0.3s ease 0s;
  left: 0;
  z-index: 1;
}

.gc__possibilities_blocks .item:hover > * {
  left: -3rem;
}

.gc__possibilities_blocks .item:hover::after {
  left: -3rem;
  width: calc(100% - 2.5rem);
}

.gc__possibilities_blocks .item > a {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  width: calc(100% + 0rem);
  height: 100%;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.gc__possibilities_blocks .item:hover > a {
  width: calc(100% + 3rem);
  left: auto;
}

.gc__possibilities_blocks .item h4 {
  font-size: 2rem;
}

.gc__possibilities_blocks .item h4 span {
  font-weight: 500;
}


.gc__possibilities_section .gcc-header-content h2 {
  font-size: 4.3rem;
  padding-right: 2rem;
  margin-bottom: 0;
}

.gc__possibilities_section .gcc-header-content h2 + p {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #002F4F;
  line-height: 1.75;
}

.gc__possibilities_section .gcc-header-content .btn {
  height: 5.3rem;
  line-height: 5.1rem;
  border-width: 1px;
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 19.5rem;
  padding: 0 1.5rem;
  text-transform: none;
}

.gc__possibilities_section .gcc-header-content .btn::after {
  top: 0.3rem;
}




@media only screen and (max-width: 1199px){

  /*.gc__possibilities_blocks .item {
    padding-right: 3rem;
  }

  .gc__possibilities_blocks .item:hover {
    margin-right: 3rem;
  }*/


}

@media only screen and (max-width: 992px){
  .gc__possibilities_section {
    padding: 6rem 0 5rem;
  }
  .gc__possibilities_blocks .item {
    padding: 2rem 4rem 2rem 3rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    width: calc(100% - 2.5rem);
    margin-right: 2.5rem !important;
    margin-right: 0;
    left: 0;
  }

  .gc__possibilities_blocks .item:hover {
    margin-right: 0;
    left: 0;
  }

  .gc__possibilities_blocks .item::after {
    width: 100%;
  }

  .gc__possibilities_blocks .item:hover::after {
    left: 0;
  }

  .gc__possibilities_blocks .item:hover > * {
    left: 0;
  }

  .gc__possibilities_blocks .item:hover .circle {
    transform: translate(0rem, -50%) !important;
    opacity: 1;
  }

  .gc__possibilities_blocks .item  h4{
    font-size: 2rem;
  }
  .gc__possibilities_section .gcc-header-content {
    max-width: 100%;
  }
}
.gc__possibilities_blocks .item  h4{
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.gc__possibilities_blocks .item p{
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: #002F4F;
  margin-bottom: 0;
}
.circle{
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.gc__possibilities_blocks .item .circle{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  opacity: 0;
  transition: all 0.3s ease 0s;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.gc__possibilities_blocks .item:hover .circle{
  transform: translate(-3rem, -50%);
  opacity: 1;
}
.circle:after{
  font-size: 2rem;
  content: '\f178';
  font-family: 'Font Awesome 5 Pro';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 300;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


@media only screen and (max-width: 992px) {
    .gc__possibilities_blocks .item .circle {
      right: -2.5rem;
      opacity: 1;
    }
}


.ignoring-limits {
  position: relative;
  padding: 7.5rem 0;
  height: auto !important;
  overflow: hidden;
}

.ignoring-limits::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -moz-linear-gradient(0deg, rgba(153,218,255,0) 0%, rgba(86,160,205,1) 50%, rgba(19,103,155,0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(153,218,255,0)), color-stop(50%, rgba(86,160,205,1)), color-stop(100%, rgba(19,103,155,0)));
  background: -webkit-linear-gradient(0deg, rgba(153,218,255,0) 0%, rgba(86,160,205,1) 50%, rgba(19,103,155,0) 100%);
  background: -o-linear-gradient(0deg, rgba(153,218,255,0) 0%, rgba(86,160,205,1) 50%, rgba(19,103,155,0) 100%);
  background: -ms-linear-gradient(0deg, rgba(153,218,255,0) 0%, rgba(86,160,205,1) 50%, rgba(19,103,155,0) 100%);
  background: linear-gradient(90deg, rgba(153,218,255,0) 0%, rgba(86,160,205,1) 50%, rgba(19,103,155,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99DAFF', endColorstr='#13679B',GradientType=1 );
  clip-path: polygon(0 5.25%, 37.8% 0, 100% 21.5%, 100% 94.8%, 62.2% 100%, 0 78.5%);
}

.ignoring-limits::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: -moz-linear-gradient(0deg, rgba(19,103,155,1) 0%, rgba(19,103,155,0) 50%, rgba(19,103,155,1) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(19,103,155,1)), color-stop(50%, rgba(19,103,155,0)), color-stop(100%, rgba(19,103,155,1)));
  background: -webkit-linear-gradient(0deg, rgba(19,103,155,1) 0%, rgba(19,103,155,0) 50%, rgba(19,103,155,1) 100%);
  background: -o-linear-gradient(0deg, rgba(19,103,155,1) 0%, rgba(19,103,155,0) 50%, rgba(19,103,155,1) 100%);
  background: -ms-linear-gradient(0deg, rgba(19,103,155,1) 0%, rgba(19,103,155,0) 50%, rgba(19,103,155,1) 100%);
  background: linear-gradient(90deg, rgba(19,103,155,1) 0%, rgba(19,103,155,0) 50%, rgba(19,103,155,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13679B', endColorstr='#13679B',GradientType=1 );
  clip-path: polygon(0% 24%, 100% 0%, 100% 76%, 0% 100%);
}

.ignoring-limits-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 7.5rem;
  right: 0;
  bottom: 7.5rem;
  z-index: 3;
  clip-path: polygon(0px 13.5%, 36.4% 0px, 100% 13.5%, 100% 86.5%, 63.6% 100%, 0px 86.5%);
}

.ignoring-limits-bg-inner {
  height: 140%;
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


@media only screen and (max-width: 1199px) {
  .ignoring-limits-bg-inner {
    height: 100%;
    top: 0;
  }
}

.ignoring-limits-bg-inner::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.45;
}

.ignoring-limits-content {
  position: relative;
  z-index: 5;
  padding: 14rem 0 12rem;
}



@media only screen and (max-width: 992px){

  .ignoring-limits-video {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }


  .ignoring-limits-content {
    padding: 7rem 0 4.5rem;
  }
}
.ignoring-limits .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ignoring-limits h2{
  font-weight: 700;
  color: #fff;
  font-size: 4.5rem;
  margin-bottom: 2.7rem;
}
.ignoring-limits p{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.56;
  padding: 0 4rem;
  letter-spacing: 0.1rem;
  margin-bottom: 3.6rem;
}


@media only screen and (max-width: 767px) {
  .ignoring-limits p {
    padding: 0;
  }
}



.ignoring-limits .btn {
  height: 5.3rem;
  line-height: 5.1rem;
  border-width: 1px;
  min-width: 21.8rem;
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #000;
}

.ignoring-limits .btn::after {
  top: 0.3rem;
  color: #000;
}

.ignoring-limits .btn:hover {
  color: #fff;
}

.ignoring-limits .btn:hover::after {
  color: #fff;
}

.ignoring-limits .content, .ignoring-limits-video .content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ignoring-limits-video{
  padding-top: 11rem;
  padding-bottom: 5rem;
}


@media only screen and (max-width: 1199px) {
    .ignoring-limits-video {
      padding-top: 6rem;
    }
}

.ignoring-limits-video .gcc-header-content {
  max-width: 106rem;
}

.gcc-header-content .divider {
  height: 4px;
  width: 10.9rem;
  margin-bottom: 2rem;
}

.ignoring-limits-video .youtube__video_container {
  border: 4px solid #13679B;
  border-radius: 4px;
  max-width: 79rem;
  margin: 0 auto 2.2rem;
  display: block;
}


@media only screen and (max-width: 1399px) {

  .ignoring-limits-video .youtube__video_container {
    padding-top: 54.5%;
  }
}

.ignoring-limits-video .gcc-header-content h2 {
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.ignoring-limits-video .gcc-header-content h2 ~ p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: #002F4F;
  max-width: 70rem;
  margin-bottom: 3.8rem;
}

.ignoring-limits-video .gcc-header-content .btn {
  height: 5.3rem;
  line-height: 5.1rem;
  border-width: 1px;
  font-size: 1.2rem;
  text-transform: none;
  min-width: 19.6rem;
  padding: 0 1.5rem;
}

.ignoring-limits-video .gcc-header-content .btn::after {
  top: 0.3rem;
}


.ignoring-limits-video p.blue-title{
  max-width: 78%;
}
.gcc_product_block{
  padding-top: 10rem;
  padding-bottom: 6rem;
  transition: all 0.4s ease;
}


@media only screen and (max-width: 1199px) {
  .gcc_product_block {
    padding-top: 5rem;
  }
}

.gcc_product_block h2{
  margin-bottom: 2rem;
}
.product_block{
  width: calc(100% + 2.6rem);
  margin-left: -1.3rem;
  margin-top: 3rem;
  position: relative;
}
.product_block .description{
  display: none;
}
.gcc_product_block .item{
  position: relative;
  float: left;
  width: calc((100% - 10.4rem) / 4);
  padding: 2rem 3.7rem 4rem;
  margin: 0 1.3rem 4rem;
  background: #fff;
  border: 1px solid rgba(0, 113, 188, 0.31);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  border-radius: 6px;
  cursor:  pointer;
}
.gcc_product_block .item_pic{
  margin: 0 auto;
  margin-bottom: 2.1rem;
  transform: rotate(-90deg);
  width: 12rem;
  height: 12rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.gcc_product_block .item h6{
  font-size: 1.5rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}
.gcc_product_block .description p{
  margin-bottom: 0.7rem;
}
.gcc_product_block .description p, .gcc_product_block .description p span{
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 500;
}
.gcc_product_block .circle{
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);
}
.gcc_product_block .circle:after{
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    transform: rotate(90deg);
}
.gcc_product_block .item.active .circle:after{
    transform: rotate(-90deg);
}
.gcc_product_block .product{
  margin-bottom: 9.5rem;
  position: relative;
}


@media only screen and (max-width: 1199px) {
  .gcc_product_block .product {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 992px) {
  .gcc_product_block .product {
    margin-bottom: 0rem;
  }
}


.gcc_product_block .product .product-pic{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 61rem;
  height: 100%;
  background-size: cover;
  background-position: center left;
}


.gcc_product_block .gcc-header-content {
  display: block;
  max-width: 100%;
}

.gcc_product_block .gcc-header-content .description {
  margin-right: 0;
}


.gcc_product_block .gcc-header-content  h2{
  margin-bottom: 3rem;
  max-width: 54rem;
  font-size: 4.3rem;
  font-weight: 400;
}


@media only screen and (max-width: 992px) {
  .gcc_product_block .gcc-header-content h2 {
    max-width: 100%;
  }
}



.gcc_product_block .gcc-header-content .description p, .gcc_product_block .gcc-header-content .description span{
  font-size: 1.8rem;
  line-height: 1.23;
  color: #000;
}


@media only screen and (max-width: 1199px) {
  .gcc_product_block .gcc-header-content .description p, .gcc_product_block .gcc-header-content .description span {
    font-size: 1.5rem;
  }
}


.gcc_product_block .gcc-header-content p{
  margin-bottom: 1.5rem;
  line-height: 1;
}
.gcc_product_block .gcc-header-content .description{
  column-count: 2;
  margin-bottom: 2.5rem;
}


.gcc_product_block .gcc-header-content .btn {
  height: 5.3rem;
  min-width: 18.3rem;
  line-height: 5.3rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 1.5rem;
}

.gcc_product_block .gcc-header-content .btn::after {
  top: 0.3rem;
}


@media only screen and (max-width: 1199px){
  .gcc_product_block .product .product-pic{
    max-width: 42rem;
    height: 70%;
  }
}
@media only screen and (max-width: 992px){
  .gcc_product_block {
    padding-top: 0;
  }
  .gcc_product_block .product .product-pic {
    max-width: 40rem;
    height: auto;
    margin: 0 auto;
    position: relative;
    transform: none;
    top: 0;
    padding-top: 40%;
  }
  .gcc_product_block .gcc-header-content .description p, .gcc_product_block .gcc-header-content .description span{
    font-size: 1.6rem;
  }
  .gcc_product_block .gcc-header-content .description p{
    padding-right: 5px;
  }
}
.files-section{
  padding: 9rem 0 12.5rem;
}

.files-section .bg-gradient{
  max-width: 1040px;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px){

  .files-section {
    padding: 6rem 0 7rem;
  }

  .files-section .bg-gradient{
    margin: 0 3rem;
    max-width: 100%;
    width: auto;
  }
}
.files-section .gcc-header-content{
  max-width: 80rem;
}
.files-header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.files-header ul{
  margin-left: 0;
}

.files-header .tabs__caption {
  margin-bottom: 0;
}

.files-header .btn-transparent{
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.27;
  min-width: 15.9rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(0,0,0,0.45);
  color: rgba(0,0,0,0.45);
  height: 4.2rem;
  line-height: 4rem;
  text-transform: capitalize;
  margin: 0 2px 1rem;
  background: transparent;
  cursor:  pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}


@media only screen and (max-width: 1199px){

  .files-header .btn-transparent{
    min-width: 1rem;
    padding: 0 2.5rem;
  }
}


.files-header .btn-transparent:hover, .files-header .btn-transparent.active{
  border-color: #f3ca19;
  background: #f3ca19;
  color: #000;
}

.tabs .content {
  position: relative;
  margin: 0 -15px;
  border: 1px solid rgba(128,128,128,0.43);
  border-radius: 0.8rem;
  padding: 2rem 1rem 2rem 2.8rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(251,251,253,1)), color-stop(100%, rgba(255,255,255,0)));
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(251,251,253,1) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(251,251,253,1) 100%);
}


.tabs .content .scroll-wrapper > .scroll-content {
  padding-right: 17px;
}

.tabs .content::after {
  content: '';
  display: table;
  clear: both;
}

.tabs .content .files-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabs .content .files-overlay.active {
  position: relative;
  float: left;
  width: 100%;
  z-index: 3;
  height: auto;
  opacity: 1;
}


.files-section .gcc-header-content h2 {
  font-size: 4.3rem;
  font-weight: 400;
  margin-bottom: 2.4rem;
}
.files-section .gcc-header-content p {
  margin-bottom: 4.8rem;
  font-size: 1.8rem;
  max-width: 68rem;
  color: #002F4F;
}


@media only screen and (max-width: 767px) {
  .files-section .gcc-header-content p {
    margin-bottom: 4.8rem;
  }
}


.files-content{
  max-height: calc(11rem * 5 - 2rem);
}

.files-content .item {
  height: 9rem;
  max-width: calc(100% - 0.5rem);
  margin-bottom: 2rem;
  border: 1px solid rgba(0,113,188, 0.41);
  border-radius: 6px;
  padding: 0 2.5rem 0 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  background: #fff;
}
@media only screen and (max-width: 992px){
  .files-content{
    max-height: calc(10rem * 5 - 2rem);
  }
  .files-content .item{
    height: 8rem;
  }
}
.files-content .item:last-of-type{
  margin-bottom: 0;
}
.files-content .item > div{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.files-content .item svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.7rem;
}
.files-content .right-part div{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
} 
.files-content .right-part div:hover p{
  color: #056699;
  transition: all 0.3s ease;
}
.files-content .right-part div:hover svg path.svg-hover, .files-content .right-part div:hover svg rect.svg-hover {
  fill: #056699;
  transition: all 0.3s ease;
}
.files-content .right-part a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.files-content .right-part p {
  font-size: 1.3rem;
  line-height: 1.27;
  margin: 0 25px 0 0;
  font-weight: 500;
}
.files-content .item h6{
  font-size: 1.6rem;
  margin-bottom: 0;
  line-height: 1.25;
}
.files-content .item-pic {
  width: 5.2rem;
  margin-right: 2.2rem;
}

.files-content .item-pic img {
  max-width: 100%;
}






















html.skrollr body {
  height: 100% !important; }


.filter_subcategory_list {
  box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
  margin-bottom: 1rem;
}

.filter_subcategory_list_title {
  background: #005A93;
  color: #fff;
  font-weight: 600;
  padding: 1.2rem 2rem;
  line-height: 1.2;
}

.filter_subcategory_list ul {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
}

.filter_subcategory_list ul li a  {
  display: block;
  color: #000;
  position: relative;
  padding: 0.1rem 2rem;
  padding-right: 5.5rem;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter_subcategory_list ul li a:hover {
  color: #005A93;
}

.filter_subcategory_list ul li a::after {
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-size: 1.8rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 0.3rem;
  right: 4rem;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter_subcategory_list ul li a:hover::after {
  right: 2.5rem;
}


.subcategory_back_to_filter {
  box-shadow: 0 0 3.4rem 0 rgba(0, 0, 0, 0.0714);
  margin-bottom: 1rem;
  padding: 1.3rem 2rem;
}

.subcategory_back_to_filter .subcategory_name {
  display: block;
  font-weight: 600;
  color: #000;
}

.subcategory_back_to_filter_link {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
}

.subcategory_back_to_filter_link::before {
  content: "\f104";
  font-family: 'Font Awesome 5 Pro';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 1.8rem;
  color: #d1d2d4;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  left: 0;
  top: 0.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  margin-right: 0.8rem;
}

.subcategory_back_to_filter_link:hover::before {
  left: -0.5rem;
}



.selected_filters {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}

.selected_filter {
  position: relative;
  margin-right: 1rem;
  cursor: pointer;
  background: #EFEFEF;
  border-radius: 10rem;
  padding: 0.3rem 1rem;
  font-size: 1.5rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}

.selected_filter::before {
  content: "\f067";
  font-family: 'Font Awesome 5 Pro';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 1rem;
  transform: rotate(-45deg);
  width: 1.5rem;
  height: 1.5rem;
  background: #ccc;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.selected_filter span {
  font-weight: 600;
  margin-right: 5px;
}


/*scroll element*/
.files-content> .scroll-element,
.files-content> .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.files-content> .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.files-content> .scroll-element.scroll-x {
  bottom: 2px;
  height: 5px;
  left: 0;
  width: 100%;
}

.files-content> .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 11px;
  border: 0 none;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  box-sizing: border-box;
}

.files-content> .scroll-element .scroll-element_outer {
  overflow: hidden;
}
.files-content> .scroll-element .scroll-element_track {
  background-color: transparent;
}
.files-content> .scroll-element .scroll-bar {
  background-color: #F3CA19;
  border-radius: 40px;
}
.files-content> .scroll-element:hover .scroll-bar {
  background-color: #f3bb19;
}
.files-content> .scroll-element.scroll-draggable .scroll-bar {
  background-color: #f3bb19;
}

/* update scrollbar offset if both scrolls are visible */

.scroll-block
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_track {
  left: -12px;
}
.scroll-block
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_track {
  top: -12px;
}

.scroll-block
  > .scroll-element.scroll-x.scroll-scrolly_visible
  .scroll-element_size {
  left: -12px;
}
.scroll-block
  > .scroll-element.scroll-y.scroll-scrollx_visible
  .scroll-element_size {
  top: -12px;
}
/**/

@media only screen and (max-width: 767px){
  .gc__possibilities_section {
    padding: 7rem 0 6.5rem;
  }
  
  .gc__possibilities_section .btn{
    margin-bottom: 4rem;
  }
  .gc__possibilities_blocks .item:hover{
    margin-right: 0;
    left: 0;
  }
  .gc__possibilities_blocks .item h4 {
    font-size: 1.6rem;
  }
  .gcc-header-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .gcc-header-content p{
    font-size: 1.6rem;
  }
  .circle{
    width: 4rem;
    height: 4rem;
  }
  .gc__possibilities_blocks .item {
    padding: 2rem 2.5rem;
    margin-left: 0;
    margin-right: 0 !important;
    max-width: calc(100% - 4rem);
  }
  .gc__possibilities_blocks .item .circle{
    right: -2rem !important;
    opacity: 1;
  }
  .ignoring-limits {
    height: auto;
    padding: 12rem 0;
  }
  .ignoring-limits-video {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .product_block{
    width: 100%;
    margin-left: 0;
  }
  .gcc_product_block .item{
    width: 100%;
    margin: 0 0 3rem;
  }
  .gcc_product_block .product .product-pic {
    max-width: 90%;
    height: 0;
    padding-top: 60%;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .gcc_product_block .gcc-header-content .description {
    column-count: 1;
  }

  .changer__parallax_content .title {
    font-size: 2.6rem;
  }
  .changer__parallax_content .notice{
    font-size: 1.8rem;
  }
  .files-section .bg-gradient {
    padding: 8rem 15px 9rem;
  }
  .files-content .item{
    flex-wrap: wrap;
    max-width: calc(100% - 2.5rem);
    padding: 0 1.5rem;
  }
  .files-content .item h6{
    font-size: 1.6rem;
  }
  .files-content .item-pic {
    width: 2rem;
    margin-right: 1rem;
  }
  .files-section{
    padding: 0;
  }
  .files-header ul{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub__intro_content .youtube__video_container{
    margin-top: 0rem;
  }
  .sub__intro_content .gcc-header-content h2 + p{
    font-size: 1.8rem;
  }
  .sub__intro.parallax__info .sub__intro_content {
    padding-bottom: 5rem;
  }
  .sub__intro_content .gcc-header-content .btn {
    margin-bottom: 0rem;
  }
  .sub__intro.parallax__info .sub__intro_content {
    padding-bottom: 5rem;
  } 
}

@media only screen and (max-width: 767px){
  .gc-text-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .gc-video-col {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 3rem;
  }

  .parallax__info.gc {
    height: auto;
  }

  .gc__possibilities_blocks .item {
    max-width: calc(100% - 2rem);
  }

}


@media only screen and (max-width: 599px){
  .btn-more-big{
    width: 100%;
  }
}
















/* ---------- changer cables ---------- */
.changer__cables {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(251,251,253,1)), color-stop(100%, rgba(255,255,255,0)));
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(251,251,253,1) 100%);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(251,251,253,1) 100%);
}
  .changer__cables_item {
    position: relative;
    border: 1px solid rgba(51,51,51,0.4);
    -webkit-border-radius: 0.6rem;
            border-radius: 0.6rem;
    -webkit-box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.08);
    padding: 1.5rem 1.5rem 1.5rem;
    background: #fff; }
    .changer__cables_item_top {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    .changer__cables_item_bottom {
      position: relative;
      overflow: hidden;
      -webkit-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
       }


    .changer__cables_item_bottom::before {
      content: '';
      display: block;
      height: 1px;
      background: rgba(128,128,128,0.34);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    }

    .changer__cables_item_title {
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1.285; }
    .changer__cables_item_subtitle {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      font-size: 1.5rem;
      line-height: 1.44;
      margin-bottom: 4rem;
      margin-top: 2.2rem;
      text-align: center;
      padding: 0 1rem; }
    .changer__cables_item_description_list {
      list-style: none;
      margin: 1rem 0 0;
      padding: 0;
      font-size: 1.5rem;
      text-align: center;
      line-height: 1.3;
       }
      .changer__cables_item_description_list p {
        margin-bottom: 0; }


    .changer__cables_item_description_list li {
      margin-bottom: 1rem;
    }

    .changer__cables_item_description_list li:last-child {
      margin-bottom: 0;
    }

    .changer__cables_item_description_list li > span {
      display: block;
      font-weight: 700;
    }

    .changer__cables_item .btn {
      font-size: 0.9rem;
      min-width: 6rem;
      padding: 0 1rem;
      background: #f3ca19;
      color: #000; }

      .changer__cables_item .btn:hover {
        background: #f3ca19 !important;
      }

      .changer__cables_item .btn::after {
        top: 0;
        content: '\f178';
        font-size: inherit; }

    .changer__cables_item .btn:hover::after {
      color: #000 !important;
    }

    .changer__cables_item_expand {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer; }
      .changer__cables_item_expand .text {
        display: block;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 300;
        margin-bottom: 0.6rem;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        visibility: visible;
        opacity: 1; }

        .changer__cables_item_expand_buttons {
          display: flex;
          align-items: center;
        }

      .changer__cables_item_expand .icon {
        width: 2.6rem;
        height: 2.6rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        border: 1px solid #f3ca19;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        font-size: 1.2rem;
        background: #f3ca19;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg); }


    .changer__cables_item_expand .btn-more {
      margin-left: -2.6rem;
      opacity: 0;
      visibility: hidden;
      -webkit-transform: rotate(0deg) !important;
            -ms-transform: rotate(0deg) !important;
                transform: rotate(0deg) !important;
    }

    .changer__cables_item.is-expanded .changer__cables_item_expand .btn-more {
      opacity: 1;
      visibility: visible;
      margin-left: 0.8rem;
    }


    .changer__cables_item_expand .btn-more::after {
      display: none;
    }


    .changer__cables_item.is-expanded .changer__cables_item_expand .text {
      opacity: 0;
      visibility: hidden; }
    .changer__cables_item.is-expanded .changer__cables_item_expand .icon {
      background: #fff;
      border-color: #000;
      -webkit-transform: rotate(-180deg);
          -ms-transform: rotate(-180deg);
              transform: rotate(-180deg); }
  .changer__cables_content {
    padding: 10.3rem 0 5rem; }



    @media only screen and (max-width: 992px) {
      .changer__cables_content {
        padding: 6rem 0 5rem;
      }
    }



    .changer__cables_content_title {
      font-size: 4.8rem;
      font-weight: 400;
      text-align: center; 
      letter-spacing: 0.1rem;
  }
      .changer__cables_content_title + p {
        font-size: 1.8rem;
        text-align: center;
        color: #002F4F;
        margin-bottom: 5.5rem;
        font-weight: 700;
        letter-spacing: 0.02rem; }
  .changer__cables_grid {
    visibility: hidden; }
    .changer__cables_grid_column {
      padding: 0 1.3rem;
      margin-bottom: 4rem; }
    .changer__cables_grid.four {
      max-width: 94rem;
      margin: 2.2rem auto 0; }
      @media only screen and (max-width: 599px) {
        .changer__cables_grid.four {
          margin: 0 -1rem; } }
      .changer__cables_grid.four .changer__cables_grid_column {
        margin-bottom: 5.8rem;
        width: 25%; }
        @media only screen and (max-width: 992px) {
          .changer__cables_grid.four .changer__cables_grid_column {
            width: 33.33333333%; } }
        @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
          .changer__cables_grid.four .changer__cables_grid_column {
            width: 50%; } }
        @media only screen and (max-width: 599px) {
          .changer__cables_grid.four .changer__cables_grid_column {
            width: 100%;
            padding: 0 0.5rem;
            margin-bottom: 6rem; } }
      .changer__cables_grid.four .changer__cables_item {
        padding-top: 0;
        padding-left: 2.2rem;
        padding-right: 2.2rem; }
        @media only screen and (max-width: 599px) {
          .changer__cables_grid.four .changer__cables_item {
            padding-left: 1rem;
            padding-right: 1rem; } }
        .changer__cables_grid.four .changer__cables_item_top {
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-bottom: 1rem; }
        .changer__cables_grid.four .changer__cables_item_title {
          text-align: center;
          padding: 0;
          margin-bottom: 0; 
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1;
          font-size: 1.6rem;
          font-weight: 700;
        }
          @media only screen and (max-width: 599px) {
            .changer__cables_grid.four .changer__cables_item_title {
              padding: 0; } }
        
        .changer__cables_grid.four .changer__cables_item_icon {
          width: 100%;
          max-width: 12rem;
          position: relative;
          -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
            box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            overflow: hidden;
            margin-top: -3rem;
            margin-bottom: 1.6rem;
         }
          .changer__cables_grid.four .changer__cables_item_icon_inner {
            padding-top: 100%;
            -webkit-background-size: cover;
                    background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            -webkit-border-radius: 50%;
                    border-radius: 50%;
            overflow: hidden; }
        .changer__cables_grid.four .changer__cables_item_description_list {
          margin-bottom: 1.5rem; }


        .changer__cables_grid.four .changer__cables_item .btn {
          height: 2rem;
          line-height: 2rem;
          font-size: 0.7rem; 

        }




        .changer__cables_grid.four .changer__cables_item_expand {
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%);
          bottom: 0;
          margin-bottom: -1.3rem;
          flex-direction: row;
      }


          .changer__cables_grid.four .changer__cables_item_expand .text {
            display: none; }


    .changer__cables_grid.four .changer__cables_item_subtitle {
      font-size: 1.2rem;
      margin-top: 0;
      margin-bottom: 0;
    }


    .changer__cables_grid.four .changer__cables_item_bottom {
      margin-left: -2.2rem;
      margin-right: -2.2rem;
      padding-left: 2.2rem;
      padding-right: 2.2rem;
    }


    @media only screen and (max-width: 599px) {
     .changer__cables_grid.four .changer__cables_item_bottom {
      margin-left: -1rem;
      margin-right: -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }
 
    }


    .changer__cables_grid.three {
      max-width: 90rem;
      margin: 4rem auto 0; }
      .changer__cables_grid.three .changer__cables_grid_column {
        width: 33.333333%;
        padding: 0 0.5rem;
        margin-bottom: 9rem; }
        @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
          .changer__cables_grid.three .changer__cables_grid_column {
            width: 50%; } }
        @media only screen and (max-width: 599px) {
          .changer__cables_grid.three .changer__cables_grid_column {
            width: 100%; } }
      .changer__cables_grid.three .changer__cables_item {
        padding-top: 0; }
        .changer__cables_grid.three .changer__cables_item_top {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; }
        .changer__cables_grid.three .changer__cables_item_title {
          min-height: 4.6rem;
          font-size: 1.8rem;
          -webkit-box-ordinal-group: 2;
          -webkit-order: 1;
              -ms-flex-order: 1;
                  order: 1;
          margin-bottom: 0;
          text-align: center;
          padding: 0 2rem; 
        -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;}
        .changer__cables_grid.three .changer__cables_item_icon {
          width: 100%;
          max-width: 12rem;
          position: relative;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          -webkit-box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
                  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
          margin-top: -6rem;
          margin-bottom: 2.6rem; }
          .changer__cables_grid.three .changer__cables_item_icon_inner {
            padding-top: 100%;
            -webkit-background-size: cover;
                    background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            -webkit-border-radius: 50%;
                    border-radius: 50%;
            overflow: hidden; }
        .changer__cables_grid.three .changer__cables_item_description_list {
          margin-bottom: 2.5rem; }
        .changer__cables_grid.three .changer__cables_item .btn {
          height: 2.8rem;
          line-height: 2.8rem;
          min-width: 8.8rem;
          margin-bottom: 2rem; }
        .changer__cables_grid.three .changer__cables_item_expand {
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%);
          bottom: 0;
          margin-bottom: -1.3rem; }
        .changer__cables_grid.three .changer__cables_item.is-expanded .changer__cables_item_expand .text {
          opacity: 0;
          visibility: hidden; }
    .changer__cables_grid.two {
      max-width: 90.1rem;
      margin: 0 auto; }
      .changer__cables_grid.two .changer__cables_grid_column {
        width: 50%;
        padding: 0 1.2rem;
        margin-bottom: 2.5rem; }
        @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
          .changer__cables_grid.two .changer__cables_grid_column {
            width: 100%; } }
      .changer__cables_grid.two .changer__cables_item {
        padding-top: 2rem; }
        .changer__cables_grid.two .changer__cables_item_top {
          display: block; }
          .changer__cables_grid.two .changer__cables_item_top::after {
            content: '';
            display: table;
            clear: both; }
        .changer__cables_grid.two .changer__cables_item_bottom {
          padding-left: 9rem; }
        .changer__cables_grid.two .changer__cables_item_title {
          font-size: 1.7rem;
          margin-bottom: 0.8rem;
          line-height: 1.23;
          float: right;
          width: -webkit-calc(100% - 9rem);
          width: calc(100% - 9rem);
          text-align: left;
          white-space: nowrap;
          overflow: hidden;
          -o-text-overflow: ellipsis;
             text-overflow: ellipsis; }
          @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
            .changer__cables_grid.two .changer__cables_item_title {
              white-space: normal; } }
        .changer__cables_grid.two .changer__cables_item_subtitle {
          margin-top: 0;
          margin-bottom: 1.8rem;
          float: right;
          width: -webkit-calc(100% - 9rem);
          width: calc(100% - 9rem);
          text-align: left;
          padding: 0; }
        .changer__cables_grid.two .changer__cables_item_icon {
          width: 100%;
          max-width: 6.7rem;
          position: relative;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          -webkit-box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
                  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
          float: left; }
          .changer__cables_grid.two .changer__cables_item_icon_inner {
            padding-top: 100%;
            -webkit-background-size: cover;
                    background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            -webkit-border-radius: 50%;
                    border-radius: 50%;
            overflow: hidden; }
        .changer__cables_grid.two .changer__cables_item_description_list {
          margin-bottom: 1.5rem; }
        .changer__cables_grid.two .changer__cables_item .btn {
          height: 2.3rem;
          line-height: 2.3rem;
          min-width: 7rem;
          margin-bottom: 1rem; }
        .changer__cables_grid.two .changer__cables_item_expand {
          position: absolute;
          right: 2rem;
          bottom: 0;
          margin-bottom: -1rem; }
          .changer__cables_grid.two .changer__cables_item_expand .text {
            font-size: 0.7rem; }
          .changer__cables_grid.two .changer__cables_item_expand .icon {
            width: 2rem;
            height: 2rem;
            font-size: 1rem; }


.gc__media_slider_pagination {
    position: relative;
    bottom: 0;
    margin-top: 1rem;
  }


.swiper-pagination-bullets.no-bullets {
  display: none;
}




/* ---------- fr-fic fr-dib fr-fil - on left (text not floating) ---------- */

img.fr-fic.fr-dib.fr-fil,
img.fr-dib.fr-fil {
  margin-left: 0 !important;
}

/* ---------- fr-fic fr-dib - on center (text not floating) ---------- */

img.fr-fic.fr-dib,
img.fr-dib {
  margin: 5px auto;
}

/* ---------- fr-fic fr-dib fr-fir - on right (text not floating) ---------- */

img.fr-fic.fr-dib.fr-fir,
img.fr-dib.fr-fir {
  margin-right: 0 !important;
}

/* ---------- fr-fic fr-dii fr-fil - on left (text floating right) ---------- */

img.fr-fic.fr-dii.fr-fil,
img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

/* ---------- fr-fic fr-dii - on center (text floating both sides) ---------- */

img.fr-fic.fr-dii,
img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}

/* ---------- fr-fic fr-dii fr-fir - справа (text floating left) ---------- */

img.fr-fic.fr-dii.fr-fir,
img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

.fr-img-caption.fr-fic .fr-img-wrap {
  display: block;
  text-align: center;
}

.fr-img-caption img {
  display: inline-block;
}

.fr-img-caption .fr-inner {
  display: block;
}

.fr-img-caption.fr-fil .fr-img-wrap {
  text-align: left;
}

.fr-img-caption.fr-fir .fr-img-wrap {
  text-align: right;
}


.fr-img-caption .fr-inner {
  text-align: center;
}


/* ---------- fr-fic fr-dib fr-fil - on left (text not floating) ---------- */

img.fr-fic.fr-dib.fr-fil,
img.fr-dib.fr-fil {
  margin-left: 0 !important;
}

/* ---------- fr-fic fr-dib - on center (text not floating) ---------- */

img.fr-fic.fr-dib,
img.fr-dib {
  margin: 5px auto;
}

/* ---------- fr-fic fr-dib fr-fir - on right (text not floating) ---------- */

img.fr-fic.fr-dib.fr-fir,
img.fr-dib.fr-fir {
  margin-right: 0 !important;
}

/* ---------- fr-fic fr-dii fr-fil - on left (text floating right) ---------- */

img.fr-fic.fr-dii.fr-fil,
img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

/* ---------- fr-fic fr-dii - on center (text floating both sides) ---------- */

img.fr-fic.fr-dii,
img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}

/* ---------- fr-fic fr-dii fr-fir - справа (text floating left) ---------- */

img.fr-fic.fr-dii.fr-fir,
img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}





/* ---------- img with caption ---------- */


/* ---------- base rules ---------- */
.fr-img-caption {
  text-align: center;
}

span.fr-img-caption {
  position: relative;
  max-width: 100%;
}

.fr-img-caption .fr-img-wrap {
  padding: 0;
  margin: auto;
  text-align: center;
  width: 100%;
}





/* ---------- text center NO FLOAT ---------- */
span.fr-img-caption.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

/* ---------- text left NO FLOAT ---------- */
span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

/* ---------- text right NO FLOAT ---------- */
span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}




/* ---------- text center WITH FLOAT ---------- */

span.fr-img-caption.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - (2 * 5px));
}

/* ---------- text right WITH FLOAT ---------- */
span.fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

/* ---------- text left WITH FLOAT ---------- */
span.fr-img-caption.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}















/* ---------- changer__resources ---------- */
.changer__resources .question {
  cursor: pointer;
  font-size: 3rem;
  font-weight: 400;
  color: #000;
  background: #FDFDFD;
  border-bottom: 2px solid rgba(128, 128, 128, 0.2);
  line-height: 1.3;
  padding: 2.7rem 1.5rem; }
  @media only screen and (max-width: 992px) {
    .changer__resources .question {
      font-size: 2rem;
      padding: 1.7rem 1.5rem; } }
  .changer__resources .question__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto; }
    .changer__resources .question__inner .text {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-right: 1.5rem;
      overflow: hidden;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      white-space: nowrap; }
  .changer__resources .question .icon {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid #FFCF00;
    background: #FFCF00;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    position: relative;
    font-size: 2rem;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg); }
    @media only screen and (max-width: 992px) {
      .changer__resources .question .icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem; } }
    .changer__resources .question .icon i {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .changer__resources .question.opened .icon {
    background: transparent;
    border-color: #808080;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }

.changer__download_item {
  position: relative;
  padding: 2.6rem 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media only screen and (max-width: 1199px) {
    .changer__download_item:nth-child(odd) {
      background: #F2F5F7 !important; }
      .changer__download_item:nth-child(odd):hover {
        background: #F2F5F7 !important; }
    .changer__download_item:hover {
      background: transparent !important; } }
  .changer__download_item_link {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .changer__download_item_inner {
    width: 100%;
    max-width: 1210px;
    padding: 0 1.5rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 992px) {
      .changer__download_item_inner {
        display: block; } }
    .changer__download_item_inner_left {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      padding-right: 1.5rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
      @media only screen and (max-width: 992px) {
        .changer__download_item_inner_left {
          margin-bottom: 2rem;
          padding-right: 0; } }
    @media only screen and (max-width: 992px) {
      .changer__download_item_inner_right {
        padding-left: 6.8rem; } }
  .changer__download_item_icon {
    min-width: 4.8rem;
    margin-right: 3.6rem; }
    @media only screen and (max-width: 992px) {
      .changer__download_item_icon {
        margin-right: 2rem; } }
    .changer__download_item_icon.pdf {
      min-width: 4.8rem; }
  .changer__download_item .title {
    font-size: 2rem;
    line-height: 1.25;
    color: #000;
    margin-bottom: 0.6rem; }
    .changer__download_item .title + span {
      font-size: 1.6rem;
      line-height: 1.25;
      display: block;
      color: #000;
      opacity: 0.65; }
  .changer__download_item .icon {
    display: block;
    min-width: 3.2rem;
    height: 3.2rem;
    position: relative;
    color: #fff;
    background: #0667D5;
    -webkit-border-radius: 50%;
            border-radius: 50%; }
    .changer__download_item .icon i {
      font-size: 1.4rem;
      color: #fff;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .changer__download_item_call {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0; }
    @media only screen and (max-width: 1199px) {
      .changer__download_item_call {
        opacity: 1; } }
    .changer__download_item_call .title {
      margin-bottom: 0; }
    .changer__download_item_call .icon {
      opacity: 1 !important;
      margin-left: 3rem; }
  .changer__download_item:hover {
    background: #F2F5F7; }
    .changer__download_item:hover .changer__download_item_call {
      opacity: 1; }

/* ---------- gamechanger__faq ---------- */
.gamechanger__faq {
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(#fbfbfd));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, #fbfbfd 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fbfbfd 100%); }
  .gamechanger__faq .section__title {
    font-weight: 400;
    font-size: 4.3rem;
    color: #000;
    letter-spacing: -0.076rem;
    margin-bottom: 2.4rem;
    text-align: center; }
    .gamechanger__faq .section__title + p {
      text-align: center;
      max-width: 66rem;
      margin: 0 auto 3rem;
      font-size: 1.7rem;
      line-height: 1.64;
      margin-bottom: 2.8rem; }
  .gamechanger__faq_questions {
    width: 100%;
    max-width: 1230px;
    margin: 6.5rem auto 0;
    padding: 0 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }


            .gamechanger__faq_questions.last-centered .gamechanger__faq_item:last-child {
              left: 50%;
              transform: translateX(-50%);
            }

            .gamechanger__faq_questions.last-centered .gamechanger__faq_item:last-child .gamechanger__faq_item_answer {
              left: calc(-50% - 0.6rem);
            }


    @media only screen and (max-width: 992px) {
      .gamechanger__faq_questions {
        margin-top: 4.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: auto; } 

        .gamechanger__faq_questions.last-centered .gamechanger__faq_item:last-child .gamechanger__faq_item_answer {
          left: 0;
        }
  }
  .gamechanger__faq_item {
    position: relative;
    width: -webkit-calc(50% - 0.6rem);
    width: calc(50% - 0.6rem);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-bottom: 0rem;
    text-align: left; }
    @media only screen and (max-width: 992px) {
      .gamechanger__faq_item {
        width: 100%; } }
    .gamechanger__faq_item_question {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer;
      border: 1px solid rgba(0, 113, 188, 0.41);
      -webkit-border-radius: 0.6rem;
              border-radius: 0.6rem;
      padding: 2rem 3.6rem 2rem;
      margin-bottom: 1.2rem;
      -webkit-transition: background 0.3s ease 0s;
      -o-transition: background 0.3s ease 0s;
      transition: background 0.3s ease 0s; }
      @media only screen and (max-width: 992px) {
        .gamechanger__faq_item_question {
          height: auto !important; } }
      @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
        .gamechanger__faq_item_question {
          padding: 1rem 1.5rem 1rem; } }
      .gamechanger__faq_item_question_icon {
        min-width: 3.2rem;
        height: 3.2rem;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        border: 1px solid #0667D5;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        color: #0667D5;
        position: relative;
        font-size: 1.6rem;
        margin-right: 2.4rem;
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg); }
        @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
          .gamechanger__faq_item_question_icon {
            margin-right: 1.4rem; } }
        .gamechanger__faq_item_question_icon i {
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          -webkit-transition: all 0.3s ease 0s;
          -o-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s; }
          .gamechanger__faq_item_question_icon i.fa-plus {
            opacity: 1; }
          .gamechanger__faq_item_question_icon i.fa-minus {
            opacity: 0; }
      .gamechanger__faq_item_question_text {
        margin-bottom: 0;
        font-size: 1.7rem;
        line-height: 1.235; }
      .gamechanger__faq_item_question:hover {
        background: rgba(6, 103, 213, 0.03); }
    .gamechanger__faq_item_answer {
      padding: 2rem 3.6rem 0.5rem;
      position: relative;
      border: 1px solid rgba(0, 113, 188, 0.41);
      -webkit-border-radius: 0.6rem;
              border-radius: 0.6rem;
      width: -webkit-calc(200% + 1.2rem);
      width: calc(200% + 1.2rem);
      display: none;
      background: #fff;
      -webkit-transition: background 0.3s ease 0s;
      -o-transition: background 0.3s ease 0s;
      transition: background 0.3s ease 0s; }

      .gamechanger__faq_item_answer_inner {
        overflow-x: auto;
      }


      @media only screen and (max-width: 992px) {
        .gamechanger__faq_item_answer {
          width: 100%; } }
      @media (max-height: 499px) and (max-width: 899px), (max-width: 767px) {
        .gamechanger__faq_item_answer {
          padding: 1.5rem 1.5rem 0rem; } }
    .gamechanger__faq_item.expanded {
      padding-bottom: 0;
      margin-bottom: 1.2rem; }
      .gamechanger__faq_item.expanded .gamechanger__faq_item_question {
        background: rgba(6, 103, 213, 0.03); }
      .gamechanger__faq_item.expanded .gamechanger__faq_item_question_icon {
        -webkit-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
                transform: rotate(360deg);
        color: #fff;
        background: #0667D5; }
        .gamechanger__faq_item.expanded .gamechanger__faq_item_question_icon i.fa-plus {
          opacity: 0; }
        .gamechanger__faq_item.expanded .gamechanger__faq_item_question_icon i.fa-minus {
          opacity: 1; }
      .gamechanger__faq_item.expanded .gamechanger__faq_item_answer {
        z-index: 50;
        background: rgba(6, 103, 213, 0.03); }
    .gamechanger__faq_item:nth-child(even) .gamechanger__faq_item_answer {
      left: -webkit-calc(-100% - 1.2rem);
      left: calc(-100% - 1.2rem); }
      @media only screen and (max-width: 992px) {
        .gamechanger__faq_item:nth-child(even) .gamechanger__faq_item_answer {
          left: 0; } }
  .gamechanger__faq_content {
    padding-top: 10.7rem;
    padding-bottom: 13.5rem; }
    @media only screen and (max-width: 992px) {
      .gamechanger__faq_content {
        padding-top: 6.7rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 8rem; } }
    .gamechanger__faq_content_top {
      margin-bottom: 12rem; }
      @media only screen and (max-width: 992px) {
        .gamechanger__faq_content_top {
          margin-bottom: 3.5rem; } }
    .gamechanger__faq_content_bottom {
      text-align: center; }
      .gamechanger__faq_content_bottom .btn {
        font-size: 1.4rem;
        min-width: 16.8rem;
        height: 5.3rem;
        line-height: 5.3rem;
        font-weight: 400;
        text-transform: none; }





/* ---------- changer__product_overview ---------- */

.changer__product_overview_content {
  display: flex;
  align-items: flex-start;
  padding: 8.2rem 0 7.4rem;
}

.changer__product_overview_content_left {
  width: 48.7%;
}

.changer__product_overview_content_right {
  width: 51.3%;
  padding-left: 5rem;
}

.changer__product_overview .gc__media_slider .slider__video_container,
.changer__product_overview .gc__media_slider .slider__image_container {
  padding-top: 57%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 4px;
  box-shadow: 0 0.2rem 0.6rem 0 rgba(0,0,0,0.5);
  border: 3px solid;
}

.changer__product_overview .swiper-pagination-bullet {
  border-color: #000;
}




div.swiper-slide {
  height: auto;
}




/* ---------- changer__partners ---------- */

.changer__partners {
  padding: 4rem 0 5rem;
}

.changer__partners_content {
  width: 100%;
  max-width: 113rem;
  margin: 0 auto;
  padding: 0 1.5rem; }

.changer__partners .section__title {
  font-size: 4.3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 7rem; }

.changer__partners_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -2.8rem; }
  .changer__partners_list li {
    width: 16.666666%;
    margin-bottom: 2.8rem; }
    .changer__partners_list li a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; 
              padding: 0 1.5rem;
            }