/*=============================
=            Majka            =
=============================*/
/*=====  End of Majka  ======*/
/*=============================
=            Majka            =
=============================*/
/*=====  End of Majka  ======*/
/*=============================
=            Basic            =
=============================*/
body {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5385;
  font-family: "sofia-pro",arial, sans-serif;
}

.wrapper {
  background-color: #161616;
  overflow: hidden;
}

.wrapper_content {
  padding: 0 32px;
}

input, textarea, button {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  cursor: pointer;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}

*:hover, *:focus, *:active {
  outline: none;
}

main {
  margin-top: 100px;
}

.sofia {
  font-family: sofia-pro,sans-serif;
}

.container {
  width: 90.5%;
}

/*=====  End of Basic  ======*/
/*=======================================
=            Animation class            =
=======================================*/
.scroll_anim_left {
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.scroll_anim_left.start_anim {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.scroll_anim_bot, .history_scroll, .scroll_anim_bot_prod, .scroll_anim_bot_later {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll_anim_bot.start_anim, .history_scroll.start_anim, .scroll_anim_bot_prod.start_anim, .scroll_anim_bot_later.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/*=====  End of Animation class  ======*/
/*==============================
=            Button            =
==============================*/
.slanting_button {
  position: relative;
  height: 44px;
  width: 175px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-right: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.slanting_button .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  display: inline-block;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.slanting_button .t2 {
  display: none;
}

.slanting_button .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0;
  background-color: #ed1f24;
  -webkit-transform: skewX(-38deg);
  transform: skewX(-38deg);
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 8px 5px #000;
          box-shadow: 2px 2px 8px 5px #000;
  z-index: 1;
}

.slanting_button .bg::after {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 102%;
  background-color: #000;
  z-index: 2;
  -webkit-transition: all 0.5s ease-in-out 0.1s;
  transition: all 0.5s ease-in-out 0.1s;
}

.slanting_button.img {
  margin-right: 55px;
  padding-right: 12px;
}

.slanting_button .el_img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -55px;
  z-index: 5;
  display: block;
  height: 19px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: right;
}

.slanting_button .el_img img {
  position: relative;
  z-index: 3;
  display: block;
  height: 100%;
}

.slanting_button .el_img::before {
  content: "";
  width: 19px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/button_img_2.png");
  position: absolute;
  left: 0;
  top: 5px;
  background-size: 100% 100%;
  z-index: 5;
  animation-name: slanting_button_anim;
  animation-duration: 4.4s;
  animation-iteration-count: infinite;
  -webkit-animation-name: slanting_button_anim;
  -webkit-animation-duration: 4.4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: slanting_button_anim;
  -moz-animation-duration: 4.4s;
  -moz-animation-iteration-count: infinite;
  -o-animation-name: slanting_button_anim;
  -o-animation-duration: 4.4s;
  -o-animation-iteration-count: infinite;
}

.slanting_button.open {
  cursor: url("../img/close.svg"), auto;
}

.slanting_button.open .t1 {
  display: none;
}

.slanting_button.open .t2 {
  display: inline-block;
}

.slanting_button:active {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}

@-webkit-keyframes slanting_button_anim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  19% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slanting_button_anim {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  19% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 992px) {
  .slanting_button:hover .bg::after {
    left: -52%;
  }
  .slanting_button:hover.img .text {
    left: -15px;
  }
  .slanting_button:hover.img .el_img {
    right: -40px;
  }
}

@media screen and (max-width: 991px) {
  .slanting_button {
    height: 38px;
    width: 152px;
    font-size: 12px;
  }
  .slanting_button.img {
    margin-right: 45px;
    padding-right: 12px;
  }
  .slanting_button .el_img {
    height: 14px;
    right: -45px;
  }
  .slanting_button .el_img::before {
    width: 14px;
    top: 3px;
  }
  .slanting_button .el_img img {
    width: 70px;
  }
}

.icon_button {
  position: relative;
  height: 44px;
  width: 264px;
  color: #ed1f24;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 0 17px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.icon_button .all {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.icon_button .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  display: inline-block;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.icon_button::after {
  content: "";
  width: calc(100% - 34px);
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  top: 0;
  background-color: #fff;
  -webkit-transform: skewX(-38deg);
  transform: skewX(-38deg);
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 5px 4px #000;
          box-shadow: 2px 2px 5px 4px #000;
  z-index: 1;
}

.icon_button svg {
  width: 13px;
  position: absolute;
  z-index: 5;
  top: 78px;
  left: -5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 992px) {
  .icon_button:hover .text {
    margin-left: 26px;
  }
  .icon_button:hover svg {
    left: 30px;
    top: 14px;
  }
}

@media screen and (max-width: 991px) {
  .icon_button .text {
    margin-left: 26px;
  }
  .icon_button svg {
    left: 30px;
    top: 14px;
  }
}

/*=====  End of Button  ======*/
/*========================================
=            Title hover line            =
========================================*/
.hover_line span {
  position: relative;
  display: inline-block;
}

.hover_line span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ed1f24;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
}

@media screen and (min-width: 991px) {
  .hover_line:hover span::before {
    right: auto;
    left: 0;
    width: 100%;
  }
}

/*=====  End of Title hover line  ======*/
/*==============================
=            Header            =
==============================*/
.header {
  background-color: #161616;
  width: 100%;
  position: fixed;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  z-index: 999;
  left: 0;
  top: 0;
  padding: 0 32px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header > .row {
  position: relative;
  padding-top: 28px;
  height: 100px;
}

.web_logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 240px;
}

.web_logo .cls-1 {
  fill: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.web_logo .cls-2 {
  fill: #ed1c24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.web_logo .cls-3 {
  fill: #008445;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.web_logo .cls-1, .web_logo .cls-2, .web_logo .cls-3 {
  fill: #fff;
}

@media screen and (min-width: 991px) {
  .web_logo:hover .cls-1, .web_logo:hover .cls-2, .web_logo:hover .cls-3 {
    fill: #fff;
  }
}

.header_disc_but {
  float: left;
  padding: 15px 50px 15px 0;
  position: relative;
  cursor: pointer;
  z-index: 20;
  min-width: 120px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-350px);
  transform: translateX(-350px);
}

.header_disc_but .el {
  display: block;
  width: 19px;
  height: 2px;
  background-color: #ed1f24;
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header_disc_but .el::before, .header_disc_but .el::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ed1f24;
  left: 4px;
  top: -5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header_disc_but .el::after {
  top: 5px;
}

.header_disc_but .text2 {
  display: none;
}

.header_disc_but.open {
  z-index: 30;
}

.header_disc_but.open .el {
  background-color: transparent;
  right: 9px;
}

.header_disc_but.open .el::before, .header_disc_but.open .el::after {
  left: 0;
  top: 0;
  bottom: 0;
}

.header_disc_but.open .el::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header_disc_but.open .el::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 991px) {
  .header_disc_but:hover .el {
    right: 9px;
  }
  .header_disc_but:hover .el::before, .header_disc_but:hover .el::after {
    left: 0;
  }
}

.header_prod_but {
  padding: 15px 50px 15px 10px;
  position: relative;
  float: left;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(-350px);
  transform: translateX(-350px);
}

.header_prod_but::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  border-bottom: 3px solid #ed1f24;
  border-right: 3px solid #ed1f24;
  right: 16px;
  top: -5px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header_prod_but.open {
  z-index: 30;
}

@media screen and (min-width: 991px) {
  .header_prod_but:hover::after {
    top: 2px;
  }
}

.header_right {
  float: right;
  padding-top: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(350px);
  transform: translateX(350px);
}

/*----------  Discover menu  ----------*/
.header_menu {
  position: absolute;
  left: 0;
  top: 75px;
  padding-top: 25px;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.header_menu.open {
  pointer-events: auto;
  -webkit-transition: all 0.1s ease-in-out 0.3s;
  transition: all 0.1s ease-in-out 0.3s;
  z-index: 30;
}

.header_menu.open .header_menu_all {
  -webkit-box-shadow: 0 0 20px 3px #000;
          box-shadow: 0 0 20px 3px #000;
}

.header_menu.open .header_menu_left {
  -webkit-transition: all 0.4s ease-in-out 0.2s;
  transition: all 0.4s ease-in-out 0.2s;
  left: 0;
}

.header_menu.open .header_menu_right {
  -webkit-transition: all 0.4s ease-in-out 0.2s;
  transition: all 0.4s ease-in-out 0.2s;
  right: 0;
}

.header_menu.open .header_bg_close {
  opacity: 1;
  pointer-events: auto;
}

.header_menu.open .menu_box_anim, .header_menu.open .menu_box_anim_2 {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

@media screen and (min-width: 1025px) {
  .header_menu.product_menu.open {
    max-height: calc(100vh - 100px);
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.header_menu_all {
  float: left;
  width: 100%;
}

.header_bg_close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(22, 22, 22, 0.7);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.header_bg_close.open {
  opacity: 1;
  pointer-events: auto;
  z-index: 22;
}

.discover_menu_l {
  float: left;
  width: 575px;
  background-color: #ed1f24;
  padding: 54px 105px 51px;
  left: calc(-575px - 50px);
  height: 585px;
  overflow: hidden;
}

.header_menu_left, .header_menu_right {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.discover_menu_r {
  float: right;
  width: calc(100% - 575px);
  height: 585px;
  right: calc(-100% + 525px);
}

.discover_menu_bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.discover_menu_bg.active {
  opacity: 1;
}

.menu_box_anim {
  -webkit-transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.6s;
  transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-170px);
  transform: translateX(-170px);
}

.menu_box_anim_2 {
  -webkit-transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.7s;
  transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.7s;
  opacity: 0;
  -webkit-transform: translateX(-170px);
  transform: translateX(-170px);
}

.discover_menu_box {
  float: left;
  width: 100%;
  padding-bottom: 38px;
}

.discover_menu_box .title {
  color: #000;
  font-size: 16px;
  line-height: 1em;
  font-weight: bold;
  padding-bottom: 14px;
}

.discover_menu_box ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  column-count: 2;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  font-weight: 600;
}

.discover_menu_box ul a {
  color: #fff;
  display: inline-block;
  padding: 6px 0;
  width: 100%;
}

.discover_menu_box ul span {
  position: relative;
}

.discover_menu_box ul span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: -15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: auto;
}

.discover_menu_box.art {
  padding-bottom: 24px;
}

.discover_menu_box.bot {
  border-top: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 0;
}

@media screen and (min-width: 991px) {
  .discover_menu_box ul a:hover span::after {
    right: -27px;
  }
}

/*----------  Products menu  ----------*/
.product_menu_l {
  background-color: #181818;
  width: 51.6%;
  display: table-cell;
  left: calc(-51.6% - 50px);
}

.product_menu_list {
  padding: 41px 0% 41px 10%;
  font-size: 13px;
  float: none;
  display: table-cell;
  vertical-align: top;
  width: 47%;
}

.product_menu_list .element {
  float: left;
  width: 100%;
  padding: 15px 0;
  cursor: pointer;
  height: 60px;
  position: relative;
}

.product_menu_list .min_img {
  float: left;
  width: 40px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  left: 0;
}

.product_menu_list .min_img::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 8px 1px #000;
  box-shadow: 0 0 8px 1px #000;
}

.product_menu_list .min_img img {
  max-width: 100%;
}

.product_menu_list .title {
  float: left;
  position: relative;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1.23077em;
  padding-left: 72px;
  max-width: 250px;
}

.product_menu_list .active::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #181818;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  z-index: 30;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 991px) {
  .product_menu_list .element:hover .title {
    color: #ed1f24;
  }
  .product_menu_list .element:hover .min_img {
    left: 12px;
  }
}

.product_menu_el {
  float: none;
  display: table-cell;
  vertical-align: top;
  background-color: #212121;
  width: 53%;
}

.product_menu_el .element {
  visibility: hidden;
  position: absolute;
  padding: 64px 25% 40px 27%;
  display: none;
}

.product_menu_el .element.active {
  visibility: visible;
  display: block;
  position: relative;
  pointer-events: auto;
}

.product_menu_el .title {
  font-size: 16px;
  min-height: 49px;
}

.product_menu_el .title a {
  color: #ed1f24;
}

.product_menu_el .desc {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  line-height: 19/12;
  padding: 18px 0px 44px;
}

.product_menu_el .img {
  position: relative;
}

.product_menu_el .img::after {
  content: "";
  height: 1px;
  width: 70%;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: transparent;
  -webkit-box-shadow: 0 -35px 20px 2px #000;
  box-shadow: 0 -35px 20px 2px #000;
}

.product_menu_el .img a {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 210px;
  width: 100%;
}

.product_menu_el .img img {
  width: 100%;
}

.product_menu_r {
  display: table-cell;
  width: 48.4%;
  right: calc(-48.4% - 50px);
  background-color: #383838;
  vertical-align: top;
}

.product_menu_r .all {
  float: left;
  width: 100%;
  padding: 64px 7% 40px;
}

.product_menu_r .title {
  font-size: 16px;
  padding-bottom: 33px;
}

.product_menu_r a {
  color: #fff;
}

.product_menu_r .box {
  float: left;
  width: 32%;
  margin-right: 20px;
}

.product_menu_r .box ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
}

.product_menu_r .box ul a {
  display: inline-block;
  padding: 8px 0 8px 17px;
  position: relative;
  width: 100%;
}

.product_menu_r .box ul a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 3px solid #ed1f24;
  border-bottom: 3px solid #ed1f24;
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.product_menu_r .box.ti_box {
  padding-top: 57px;
}

.product_menu_r .info {
  display: none;
}

.product_menu_r .info.active {
  display: block;
}

@media screen and (min-width: 991px) {
  .product_menu_r .box ul a:hover::before {
    left: 2px;
  }
  .product_menu_r .box.accessor {
    width: 50%;
  }
  .product_menu_r .box.accessor ul {
    font-size: 16px;
    text-transform: uppercase;
    margin-top: -15px;
  }
  .product_menu_r .box.accessor ul a {
    padding: 15px 0;
  }
  .product_menu_r .box.accessor ul a::before {
    display: none;
  }
  .product_menu_r .box.accessor ul a span {
    position: relative;
    padding-right: 15px;
  }
  .product_menu_r .box.accessor ul a span::before {
    border-bottom: 3px solid #ed1f24;
    border-right: 3px solid #ed1f24;
    bottom: 0;
    content: "";
    height: 10px;
    right: -8px;
    margin: auto;
    position: absolute;
    top: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    width: 10px;
  }
  .product_menu_r .box.accessor ul a:hover span::before {
    right: -18px;
  }
}

/*=====  End of Header  ======*/
/*==============================
=            Footer            =
==============================*/
.footer {
  background-color: #000;
  padding-top: 72px;
  padding-bottom: 66px;
  margin-bottom: 40px;
  opacity: 0;
  position: relative;
  z-index: 10;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.footer .row {
  position: relative;
}

.container_footer {
  width: 94%;
}

.footer_menu {
  float: left;
  width: 190px;
  text-transform: uppercase;
  padding-bottom: 0;
}

.footer_menu .title {
  color: #ed1f24;
}

.footer_menu ul {
  column-count: 1;
  -moz-column-count: 1;
  -webkit-column-count: 1;
  position: relative;
  font-size: 11.5px;
  line-height: 13px;
}

.footer_menu ul span {
  display: inline-block;
}

.footer_menu ul span::after {
  border-color: #ed1f24;
}

.footer_menu ul a {
  padding: 9px 0;
}

.footer_menu ul .cat_id_782 a {
  padding-right: 40px;
}

.footer_menu .logo {
  position: absolute;
  bottom: 0;
}

.footer_menu.two_col {
  width: 380px;
}

.footer_menu.two_col ul {
  column-count: 2;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-fill: auto;
  -moz-column-fill: auto;
  -webkit-column-fill: auto;
  height: 270px;
}

.footer_menu.two_col ul li {
  display: inline-block;
}

.footer_menu.two_col .logo {
  right: 0px;
}

.footer_menu.two_col .logo a {
  padding-bottom: 0;
}

.footer_menu.f_logo ul {
  height: 270px;
}

.footer_menu.f_logo .logo a {
  padding-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .footer_menu.two_col ul li {
    padding-right: 35px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_menu.two_col ul li {
    padding-right: 20px;
  }
}

.footer_row {
  padding-bottom: 44px;
}

.footer_logo {
  display: block;
  float: right;
  width: 137px;
}

.footer_logo .web_logo {
  width: 100%;
  position: relative;
}

.footer_logo .web_logo .cls-1, .footer_logo .web_logo .cls-2, .footer_logo .web_logo .cls-3 {
  fill: #fff;
}

.footer_logo .web_logo .hidden-sm, .footer_logo .web_logo .hidden-xs {
  display: block !important;
}

.footer_bot {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  text-align: right;
  font-size: 12px;
}

.footer_bot svg {
  height: 43px;
  margin: -5px 0;
  vertical-align: middle;
}

/*=====  End of Footer  ======*/
/*===================================
=            Part finder            =
===================================*/
body.overflow {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.part_finder_bg_close {
  background-color: rgba(22, 22, 22, 0.9);
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  cursor: url("../img/close.svg"), auto;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  width: 100%;
  z-index: 998;
}

.wrapper_content {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  float: left;
  width: 100%;
  position: relative;
  left: 0;
}

.part_finder_open {
  overflow: hidden;
  height: 100vh;
}

.part_finder_open .wrapper_content {
  left: -575px;
}

.part_finder_open .pt_menu_bg {
  left: -543px;
}

.part_finder_open .part_finder_bg_close {
  opacity: 1;
  pointer-events: auto;
  z-index: 998;
}

.part_finder_open .header {
  left: -575px;
}

.part_finder_open .part_finder {
  right: -20px;
}

.part_finder {
  position: fixed;
  right: -595px;
  height: 100vh;
  width: 595px;
  background-color: #161616;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 999;
  color: #fff;
  top: 0;
}

.part_finder_content {
  padding: 90px 128px 50px 95px;
  width: 100%;
  position: relative;
  z-index: 5;
  width: 575px;
}

.part_finder_title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 11px;
}

.part_finder_sub_title {
  font-size: 12px;
  line-height: 1.333em;
  text-align: center;
}

.part_finder_sub_title2 {
  font-size: 12px;
  line-height: 1.333em;
  text-align: center;
  color: #7f7f7f;
  padding-top: 40px;
}

.part_fider_anim_1 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
}

.part_fider_anim_2 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-in-out 0.06s;
  transition: all 0.2s ease-in-out 0.06s;
}

.part_fider_anim_3 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-in-out 0.03s;
  transition: all 0.2s ease-in-out 0.03s;
}

.part_fider_anim_4 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.part_fider_anim_5 {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.part_finder_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  max-height: 100vh;
  overflow-y: scroll;
}

.part_finder_block.active {
  pointer-events: auto;
  opacity: 1;
}

.part_finder_block.active .part_fider_anim_1, .part_finder_block.active .part_fider_anim_2, .part_finder_block.active .part_fider_anim_3, .part_finder_block.active .part_fider_anim_4, .part_finder_block.active .part_fider_anim_5 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.part_finder_block.active .part_fider_anim_1 {
  -webkit-transition: all 0.2s ease-in-out 0.31s;
  transition: all 0.2s ease-in-out 0.31s;
}

.part_finder_block.active .part_fider_anim_2 {
  -webkit-transition: all 0.2s ease-in-out 0.34s;
  transition: all 0.2s ease-in-out 0.34s;
}

.part_finder_block.active .part_fider_anim_3 {
  -webkit-transition: all 0.2s ease-in-out 0.37s;
  transition: all 0.2s ease-in-out 0.37s;
}

.part_finder_block.active .part_fider_anim_4 {
  -webkit-transition: all 0.2s ease-in-out 0.4s;
  transition: all 0.2s ease-in-out 0.4s;
}

.part_finder_block.active .part_fider_anim_5 {
  -webkit-transition: all 0.2s ease-in-out 0.43s;
  transition: all 0.2s ease-in-out 0.43s;
}

.part_finder_block.active.sellect_el {
  pointer-events: none;
}

.part_finder_block.active.sellect_el .part_fider_anim_1 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.part_finder_block.active.sellect_el .part_fider_anim_2 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.2s ease-in-out 0.03s;
  transition: all 0.2s ease-in-out 0.03s;
}

.part_finder_block.active.sellect_el .part_fider_anim_3 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.2s ease-in-out 0.06s;
  transition: all 0.2s ease-in-out 0.06s;
}

.part_finder_block.active.sellect_el .part_fider_anim_4 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.2s ease-in-out 0.09s;
  transition: all 0.2s ease-in-out 0.09s;
}

.part_finder_block.active.sellect_el .part_fider_anim_5 {
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all 0.2s ease-in-out 1.2s;
  transition: all 0.2s ease-in-out 1.2s;
}

.part_finder_all {
  position: relative;
}

/*----------  Step 1  ----------*/
.part_finder_1 {
  position: relative;
}

.part_finder_1_loup {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -46px;
  width: 18px;
}

.part_finder_1_loup svg .st0 {
  fill: #ed1f24;
}

.part_finder_1_list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 58px;
}

.part_finder_1_list .text {
  padding-left: 40px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 60px);
  padding-right: 10px;
}

.part_finder_1_list img {
  width: 43px;
  vertical-align: middle;
}

.part_finder_1_list .img {
  position: relative;
}

.part_finder_1_list .img::after {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: -7px;
  -webkit-box-shadow: 0 2px 7px 0px #000;
          box-shadow: 0 2px 7px 0px #000;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.part_finder_1_list li {
  height: 68px;
  margin: 2px 0;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.part_finder_1_list li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ed1f24;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 0%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.part_finder_1_list li:active::before {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}

.part_finder_1_list li:focus::before {
  top: 0%;
}

.part_finder_1_list .el {
  position: relative;
  padding-left: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 991px) {
  .part_finder_1_list li:hover::before {
    opacity: 1;
  }
}

/*----------  Step 2  ----------*/
.part_finder_2 .part_finder_content {
  padding-left: 65px;
  padding-right: 97px;
}

.part_finder_back {
  position: absolute;
  left: 0;
  right: 0;
  top: -62px;
  margin: auto;
  color: #7f7f7f;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}

.part_finder_back span {
  position: relative;
}

.part_finder_back span svg {
  position: absolute;
  left: 0;
  right: 0;
  top: -23px;
  margin: auto;
  width: 10px;
  fill: #ed1f24;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media screen and (min-width: 991px) {
  .part_finder_back:hover span svg {
    top: -30px;
  }
}

.part_finder_2_icon {
  padding-top: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  box-pack: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
  -ms-flex-pack: left;
  -webkit-box-align: top;
  box-align: top;
  -moz-align-items: top;
  -ms-align-items: top;
  -o-align-items: top;
  align-items: top;
  -ms-flex-align: top;
}

.part_finder_2_el {
  float: left;
  width: 50%;
  text-align: center;
  font-size: 14px;
  padding: 22px 10px;
  cursor: pointer;
  -webkit-box-flex: 0;
  box-flex: 0;
  -moz-flex: 0 0 49%;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
}

.part_finder_2_el svg {
  fill: #ed1f24;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.part_finder_2_el svg .cls-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.part_finder_2_el svg .cls-2 {
  fill: #ed1f24;
}

.part_finder_2_el .title {
  padding-top: 13px;
}

.part_finder_2_el.active svg {
  background-color: #ed1f24;
}

.part_finder_2_el.active svg .cls-1 {
  fill: #fff;
}

@media screen and (min-width: 991px) {
  .part_finder_2_el:hover svg {
    background-color: #ed1f24;
  }
  .part_finder_2_el:hover svg .cls-1 {
    fill: #fff;
  }
}

.pf2_cross_wrap {
  padding: 43px 0 50px;
}

.pf2_cross {
  width: 325px;
  margin: 0 auto;
  max-width: 100%;
  height: 75px;
  border: 2px solid #ed1f24;
  background-color: transparent;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pf2_cross span {
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 991px) {
  .pf2_cross:hover {
    background-color: #ed1f24;
  }
}

/*----------  Step 3  ----------*/
.part_finder_3 .part_finder_content {
  min-height: 100vh;
}

.part_finder_3_select {
  padding-top: 33px;
}

.selectboxit-container {
  float: left;
  width: 100%;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 48px;
}

.selectboxit-container .selectboxit-enabled {
  display: block;
  max-width: 100%;
  background-color: #393939;
  height: 72px;
  border-radius: 12px;
  padding: 5px 42px;
  position: relative;
  cursor: pointer;
}

.selectboxit-container .selectboxit-enabled .selectboxit-text {
  display: inline-block;
  position: relative;
  text-overflow: ellipsis;
  height: 20px;
  overflow: hidden;
  width: 94%;
  white-space: nowrap;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.selectboxit-container .selectboxit-arrow-container {
  background-image: url("../img/arrow.svg");
  display: block;
  width: 11px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  right: 42px;
  top: 5px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.selectboxit-container .selectboxit-option-icon-container {
  display: none;
}

.selectboxit-container .selectboxit-list {
  display: none;
  position: absolute;
  z-index: 100;
  list-style: none;
  padding-left: 0;
  background-color: #393939;
  max-width: 100%;
  min-width: 100% !important;
  top: calc(100% - 10px) !important;
  max-height: none !important;
  padding-bottom: 20px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.selectboxit-container .selectboxit-option.selectboxit-disabled, .selectboxit-container .selectboxit-option.selectboxit-selected {
  display: none;
}

.selectboxit-container .selectboxit-option a {
  color: #fff;
  display: block;
  padding: 15px 40px;
  cursor: pointer;
}

.part_finder_all .selectboxit-container {
  margin-bottom: 16px;
}

.part_finder_all .selectboxit-container[aria-expanded="true"] .selectboxit-arrow-container {
  display: none;
}

.part_finder_all .selectboxit-container .selectboxit-enabled {
  height: 54px;
  padding: 5px 45px;
}

.part_finder_all .selectboxit-container .selectboxit-enabled .selectboxit-text {
  font-size: 14px;
}

.part_finder_all .selectboxit-container .selectboxit-list {
  padding: 0 23px 20px;
}

.part_finder_all .selectboxit-container .selectboxit-option {
  position: relative;
}

.part_finder_all .selectboxit-container .selectboxit-option[data-val="- Popular Makes -"], .part_finder_all .selectboxit-container .selectboxit-option[data-val="---Popular Models---"] {
  display: none;
}

.part_finder_all .selectboxit-container .selectboxit-option[data-val="- All Makes -"], .part_finder_all .selectboxit-container .selectboxit-option[data-val="----All Models----"] {
  pointer-events: none;
}

.part_finder_all .selectboxit-container .selectboxit-option[data-val="- All Makes -"] a, .part_finder_all .selectboxit-container .selectboxit-option[data-val="----All Models----"] a {
  opacity: 0;
}

.part_finder_all .selectboxit-container .selectboxit-option[data-val="- All Makes -"]::before, .part_finder_all .selectboxit-container .selectboxit-option[data-val="----All Models----"]::before {
  background-color: transparent;
  border-radius: 0px;
  height: 1px;
  opacity: 1;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 44px);
  border-bottom: 1px dashed #484848;
}

.part_finder_all .selectboxit-container .selectboxit-option::before {
  background-color: #ed1f24;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}

.part_finder_all .selectboxit-container .selectboxit-option a {
  padding: 10px 22px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 991px) {
  .part_finder_all .selectboxit-container .selectboxit-option:hover::before {
    opacity: 1;
  }
}

.part_finder_3-2 .part_finder_sub_title2 {
  padding-top: 25px;
}

.part_finder_3-2 .part_finder_content {
  min-height: 100vh;
}

.pf3-2_search {
  padding-top: 25px;
}

.pf3-2_search .or {
  color: #fff;
  text-align: center;
  padding: 9px 0px 12px;
}

.search_inp_refe {
  position: relative;
}

.search_inp_refe input {
  background-color: #393939;
  border-radius: 12px;
  display: block;
  height: 54px;
  max-width: 100%;
  padding: 5px 60px 5px 38px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  border: none;
  width: 100%;
}

.search_inp_refe input::-webkit-input-placeholder {
  color: #fff;
}

.search_inp_refe input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.search_inp_refe input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.search_inp_refe input:-ms-input-placeholder {
  color: #fff;
}

.search_inp_refe .icon {
  position: absolute;
  width: 63px;
  padding: 18px 38px 14px 11px;
  top: 0px;
  right: 0px;
  z-index: 5;
  cursor: pointer;
}

.search_inp_refe svg {
  height: auto;
  width: 100%;
}

.search_inp_refe .cross {
  display: none;
}

.search_inp_refe .cross svg {
  stroke: #ed1f24;
}

.search_inp_refe.found .cross {
  display: inline;
}

.search_inp_refe.found .loup {
  display: none;
}

.search_inp_refe_list {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 21;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #393939;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 10px 16px 15px;
  -webkit-box-shadow: 1px 2px 4px 0 #292929;
          box-shadow: 1px 2px 4px 0 #292929;
  text-transform: uppercase;
  display: none;
}

.search_inp_refe_list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  padding-top: 12px;
}

.search_inp_refe_list ul::before {
  content: "";
  height: 1px;
  width: calc(100% - 44px);
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ed1f24;
  z-index: 22;
}

.search_inp_refe_list li {
  position: relative;
  list-style: none;
}

.search_inp_refe_list li::before {
  background-color: #ed1f24;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  z-index: 1;
}

.search_inp_refe_list span {
  padding: 10px 22px;
  position: relative;
  display: block;
  cursor: pointer;
  z-index: 5;
}

.pf3-2_cont .search_inp_refe {
  padding-bottom: 16px;
}

@media screen and (min-width: 991px) {
  .search_inp_refe_list li:hover::before {
    opacity: 1;
  }
}

/*----------  Step 4  ----------*/
.part_finder_4, .part_finder_4-2 {
  overflow-y: visible;
}

.part_finder_4 .part_finder_content, .part_finder_4-2 .part_finder_content {
  padding-left: 33px;
  padding-right: 65px;
  padding-bottom: 0px;
}

.part_finder_4_top {
  width: 100%;
  padding: 25px 0 16px;
  border-bottom: 2px dotted #ed1f24;
  border-top: 2px dotted #ed1f24;
  position: relative;
}

.part_finder_4_top_prod {
  float: left;
  width: 140px;
  text-align: center;
  cursor: pointer;
}

.part_finder_4_top_prod img {
  width: 70px;
}

.part_finder_4_top_prod .img::after {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: -7px;
  -webkit-box-shadow: 0 2px 7px 0 #000;
          box-shadow: 0 2px 7px 0 #000;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.part_finder_4_top_prod .text {
  text-align: left;
  padding-left: 30px;
  position: relative;
  margin-top: 15px;
}

.part_finder_4_top_prod .title {
  font-weight: bold;
  text-transform: uppercase;
}

.part_finder_4_top_prod .change {
  color: #ed1f24;
  font-size: 12px;
  display: block;
}

.part_finder_4_top_prod svg {
  position: absolute;
  fill: #ed1f24;
  width: 10px;
  left: 5px;
  top: 5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.part_finder_4_top_det {
  float: right;
  width: calc(100% - 140px);
  padding: 0px 0px 0px 40px;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.part_finder_4_top_det svg {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  fill: #ed1f24;
  background-color: #ed1f24;
  float: left;
}

.part_finder_4_top_det svg .cls-1 {
  fill: #fff;
}

.part_finder_4_top_det .ic {
  display: inline-block;
  vertical-align: middle;
}

.part_finder_4_top_det .select_title {
  font-size: 13px;
}

.part_finder_4_top_det .desc {
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 37px);
  padding-left: 20px;
  color: #ed1f24;
  text-transform: uppercase;
  line-height: 1.38462;
}

.part_finder_4_top_det.select {
  padding: 3px 0 0 34px;
}

.part_finder_4_top_det.select svg {
  margin-top: 38px;
}

.part_finder_4_top_det .select_options {
  float: left;
  width: calc(100% - 37px);
  padding-left: 20px;
}

.part_finder_4_top_det .select_title {
  color: #ed1f24;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 11px;
}

.part_finder_4_top_det .selectboxit-container {
  margin-bottom: 0;
  font-family: sofia-pro,sans-serif;
  font-weight: bold;
}

.part_finder_4_top_det .selectboxit-container .selectboxit-enabled {
  background-color: #161616;
  border-radius: 0;
  border: 1px solid #fff;
  height: 53px;
  padding: 5px 25px;
}

.part_finder_4_top_det .selectboxit-container .selectboxit-arrow-container {
  right: 25px;
}

.part_finder_4_top_det .selectboxit-container .selectboxit-list {
  background-color: #161616;
  padding-bottom: 15px;
  border: 1px solid #fff;
  border-top: none;
  border-radius: 0;
}

.part_finder_4_top_det .selectboxit-container .selectboxit-option a {
  padding: 10px 25px;
}

.part_finder_4_results {
  overflow-y: scroll;
}

.part_finder_4_results .part_finder_content {
  padding-top: 0;
}

.part_finder_4_results_all {
  float: left;
  width: 575px;
  padding: 17px 65px 10px 33px;
}

.part_finder_part {
  float: left;
  width: 100%;
  position: relative;
}

.part_finder_part .sub_cat_heading {
  margin: -17px 0 0;
  right: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  display: none;
}

.part_finder_part .sub_cat_heading span {
  padding: 0 6px;
  background-color: #161616;
  display: inline-block;
}

.part_finder_part .sub_cat_heading.next_sub_cat {
  display: block;
}

.part_finder_part:first-child .sub_cat_heading {
  display: block;
}

.part_finder_category_wrap {
  border: 1px solid #ed1f24;
  border-radius: 5px;
  float: left;
  margin: 9px 0;
  padding: 9px 5px 7px;
  width: 100%;
}

.part_finder_category_wrap .part_finder_4_res_el {
  margin: 5px 0;
}

.part_finder_4_results_el {
  float: left;
  width: 100%;
  padding: 16px 0;
}

.part_finder_4_res_top {
  background-color: #fff;
  padding: 15px 0px;
  float: left;
  width: 100%;
  position: relative;
}

.part_finder_4_res_top::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.part_finder_4_res_top .left, .part_finder_4_res_top .right {
  float: left;
  width: 50%;
  min-height: 110px;
  text-align: center;
  position: relative;
  padding: 0 35px;
}

.part_finder_4_res_top .left {
  padding-top: 45px;
}

.part_finder_4_res_top .left::after {
  content: "";
  height: 62px;
  width: 1px;
  background-color: #e1e1e1;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.part_finder_4_res_top .right {
  cursor: pointer;
}

.part_finder_4_res_top .right img {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  max-height: 110px;
  max-width: 100%;
}

.part_finder_4_res_top .right svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.part_finder_4_res_top .right svg .st0 {
  fill: #ed1f24;
}

.part_finder_4_res_top .right.open svg {
  display: none;
}

.part_finder_4_res_top .right.open svg.crose_svg {
  stroke: #ed1f24;
  display: block;
}

.part_finder_4_res_top .logo {
  text-align: left;
  padding: 12px 0 0 35px;
}

.part_finder_4_res_top .logo img {
  max-width: 90%;
}

.part_finder_4_res_top .left_title {
  color: #000;
  text-transform: uppercase;
}

.part_finder_4_res_top .left_recomendet {
  font-family: sofia-pro,sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ed1f24;
  padding-left: 46px;
  background-image: url("../img/ngk_rec.png");
  background-position: left top;
  background-repeat: no-repeat;
  margin-top: 18px;
}

@media screen and (min-width: 991px) {
  .part_finder_4_res_top .right:hover img {
    opacity: 0.3;
  }
  .part_finder_4_res_top .right:hover svg {
    opacity: 1;
  }
}

.part_finder_4_res_bot {
  background-color: #ed1f24;
  padding: 43px 35px 30px;
  float: left;
  width: 100%;
}

.part_finder_4_res_bot table {
  float: left;
  width: 100%;
  text-transform: uppercase;
  border-collapse: collapse;
  border-style: hidden;
}

.part_finder_4_res_bot table th {
  color: #000;
  vertical-align: top;
  text-align: center;
  border: 2px solid #f25b5e;
  font-weight: 400;
  padding-bottom: 21px;
}

.part_finder_4_res_bot table td {
  font-weight: bold;
  font-size: 20px;
  vertical-align: center;
  text-align: center;
  border: 2px solid #f25b5e;
  padding: 13px 0px;
}

.part_finder_4_res_bot .oxs_col {
  margin-bottom: 40px;
}

.part_finder_4_res_bot .oxs_col th:first-child {
  text-align: left;
}

.part_finder_4_res_bot .two_col th {
  width: 50%;
}

.part_finder_4_res_bot .three_col th {
  width: 33.3%;
  border-left: none;
  border-right: none;
  text-align: left;
  padding-bottom: 6px;
  padding-right: 3px;
  vertical-align: bottom;
}

.part_finder_4_res_bot .three_col td {
  font-size: 15px;
  border-left: none;
  border-right: none;
  text-align: left;
  padding: 3px 3px 11px 0;
  vertical-align: top;
  height: 56px;
}

.part_finder_4_res_bot .three_col td span {
  font-size: 12px;
  display: block;
}

.part_finder_4_res_bot .three_col.last th:last-child, .part_finder_4_res_bot .three_col.last td:last-child {
  padding-left: 20px;
}

.part_finder_4_res_bot .mar_20 {
  margin-bottom: 20px;
}

.part_finder_4_res_bot .oxs_measure {
  color: #000;
  text-transform: uppercase;
  text-align: center;
  float: left;
  width: 100%;
  padding-top: 42px;
}

.part_finder_4_res_bot .oxs_measure span {
  padding: 20px;
  cursor: pointer;
}

.part_finder_4_res_bot .oxs_measure svg {
  width: 36px;
  vertical-align: middle;
  margin-right: 14px;
}

.part_finder_4_res_note {
  background-color: #232323;
  float: left;
  width: 100%;
  padding: 21px 35px 35px;
  color: #b5b5b5;
  font-weight: 400;
}

.part_finder_4_res_note .head {
  color: #ed1f24;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  background-image: url("../img/note.png");
  padding-bottom: 18px;
}

.part_finder_4_res_start_new {
  float: left;
  width: 100%;
  text-align: center;
  padding: 10px 0 15px;
}

.pf4_r_vmr {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px;
  margin-bottom: 10px;
  color: #7f7f7f;
}

.pf4_r_vmr span {
  position: relative;
  cursor: pointer;
  padding: 15px;
}

.pf4_r_vmr span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #ed1f24;
  border-bottom: 2px solid #ed1f24;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: -5px;
  top: 18px;
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
}

@media screen and (min-width: 991px) {
  .pf4_r_vmr span:hover::after {
    top: 22px;
  }
}

.test_class {
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 0;
  left: 0;
}

.part_finder_4_slider {
  width: 515px;
  background-color: #fff;
  position: absolute;
  right: calc(100% + 32px);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.part_finder_4_slider.open {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  pointer-events: auto;
}

body:not(.part_finder_open) .part_finder_4_slider.open {
  opacity: 0;
  pointer-events: none;
}

.part_finder_4_slider_cont {
  width: 100%;
  position: relative;
  padding-top: 30px;
  padding: 50px 20px 20px;
}

.part_finder_4_slider_count {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
  font-size: 18px;
}

.part_finder_4_slider_this {
  position: absolute;
  top: 120px;
  left: 100%;
  border-top: 20px solid transparent;
  border-left: 20px solid #fff;
  border-bottom: 20px solid transparent;
}

.part_finder_4_slider_close {
  color: #ed1f24;
  padding: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
  cursor: pointer;
}

.part_finder_4_slider_close svg {
  stroke: #ed1f24;
  width: 12px;
  display: block;
}

.part_finder_4_slider_big {
  width: 100%;
  margin: auto;
}

.part_finder_4_slider_big .big_el {
  min-height: 325px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.part_finder_4_slider_big .big_el.details .inf {
  margin: auto;
  width: 280px;
  text-transform: uppercase;
}

.part_finder_4_slider_big .big_el.details .head {
  text-align: center;
  color: #ed1f24;
  padding: 30px 0px 25px;
}

.part_finder_4_slider_big .big_el.details .head img {
  vertical-align: middle;
  display: inline;
  max-width: 46px;
  margin: 0 -5px;
}

.part_finder_4_slider_big .big_el.details .head span {
  padding-left: 10px;
  vertical-align: middle;
}

.part_finder_4_slider_big .big_el.details .el {
  border-radius: 5px;
  float: left;
  width: 100%;
  padding: 13px 10px 14px;
  line-height: 1;
}

.part_finder_4_slider_big .big_el.details .el:nth-child(2n) {
  background-color: #f0f0f0;
}

.part_finder_4_slider_big .big_el.details .el .t {
  color: #ed1f24;
  float: left;
  width: 50%;
  font-size: 11px;
  padding-top: 3px;
  text-align: right;
  padding-right: 15px;
}

.part_finder_4_slider_big .big_el.details .el .c {
  float: left;
  width: 50%;
  font-size: 18px;
  padding-left: 15px;
  color: #000;
}

.part_finder_4_slider_nav {
  width: 100%;
  margin: auto;
  position: relative;
  padding-top: 10px;
}

.part_finder_4_slider_nav .nav_el {
  height: 95px;
  width: 25%;
  margin: 0 5px;
  opacity: 0.3;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

.part_finder_4_slider_nav .nav_el.slick-active {
  opacity: 1;
}

.part_finder_4_slider_nav .nav_el.details {
  background-color: #f0f0f0;
  border-radius: 5px;
  color: #ed1f24;
  position: relative;
}

.part_finder_4_slider_nav .nav_el.details .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  width: 85px;
  max-width: 100%;
}

.part_finder_4_slider_nav .nav_el.details .i {
  font-family: times new roman,serif;
  font-size: 18px;
  font-style: italic;
  line-height: 16px;
  padding-right: 14px;
  display: inline-block;
  vertical-align: middle;
}

.part_finder_4_slider_nav .nav_el.details .all {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.2em;
  display: inline-block;
  vertical-align: middle;
}

.part_finder_4_slider_nav .slick-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: transparent;
  border: none;
}

.part_finder_4_slider_nav .slick-arrow span {
  background-image: url("../img/arrow_black.svg");
  width: 13px;
  height: 20px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.part_finder_4_slider_nav .slick-arrow.slick-prev {
  left: -40px;
}

.part_finder_4_slider_nav .slick-arrow.slick-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.part_finder_4_slider_nav .slick-arrow.slick-next {
  right: -40px;
}

.part_finder_4_slider_nav .slick-arrow.slick-next span {
  float: right;
}

.part_finder_4_res_el {
  float: left;
  width: 100%;
  padding: 14px 17px;
  background-color: #fff;
  border-radius: 7px;
  margin: 14px 0;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.part_finder_4_res_el.pdf .pf4_col_2 {
  width: 30%;
  cursor: default;
}

.part_finder_4_res_el.pdf .pf4_col_2 img {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.part_finder_4_res_el.pdf .pf4_col_2:hover img {
  opacity: 1;
}

.part_finder_4_res_el.pdf .pf4_col_3 {
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(70% - 34px);
}

.part_finder_4_res_el.pdf .pf4_col_3 .note .t {
  padding-top: 7px;
}

.pf4_col_1 {
  float: left;
  width: 39%;
}

.pf4_col_1 .rec {
  font-size: 11px;
  float: left;
  width: 100%;
  height: 33px;
}

.pf4_col_1 .rec svg {
  width: 14px;
  height: auto;
  vertical-align: middle;
}

.pf4_col_1 .rec span {
  vertical-align: middle;
  padding-left: 7px;
}

.pf4_col_1 .inf {
  float: left;
  width: 100%;
}

.pf4_col_1 .el {
  background-color: #f0f0f0;
  border-radius: 5px;
  float: left;
  width: 100%;
  margin: 4px 0;
  padding: 2px 10px 8px;
  line-height: 1;
}

.pf4_col_1 .el .t {
  color: #ed1f24;
  width: 52%;
  display: inline-block;
  font-size: 10px;
  padding-top: 7px;
  vertical-align: middle;
}

.pf4_col_1 .el .c {
  font-size: 15px;
  display: inline-block;
  padding-top: 4px;
  vertical-align: middle;
}

.pf4_col_2 {
  float: left;
  width: 29%;
  height: 110px;
  position: relative;
  cursor: pointer;
  padding: 0 10px;
}

.pf4_col_2 img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 70%;
  max-height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out 0s;
  transition: opacity 0.2s ease-in-out 0s;
}

.pf4_col_2 svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0s;
  transition: opacity 0.2s ease-in-out 0s;
  width: 24px;
}

.pf4_col_2 svg .st0 {
  fill: #ed1f24;
}

.pf4_col_2.open svg {
  display: none;
}

.pf4_col_2.open svg.crose_svg {
  stroke: #ed1f24;
  display: block;
}

@media screen and (min-width: 991px) {
  .pf4_col_2:hover img {
    opacity: 0.3;
  }
  .pf4_col_2:hover svg {
    opacity: 1;
  }
}

.pf4_col_3 {
  float: left;
  width: 32%;
  padding-bottom: 4px;
}

.pf4_col_3 .note_space {
  padding-top: 37px;
}

.pf4_col_3 .note {
  background-color: #f0f0f0;
  border-radius: 5px;
  height: 68px;
  margin-bottom: 7px;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.pf4_col_3 .note .scr {
  width: calc(100% + 30px);
  overflow-y: scroll;
  height: 100%;
}

.pf4_col_3 .note .cont {
  width: 142px;
  padding: 11px 13px 8px;
}

.pf4_col_3 .note .t {
  font-size: 11px;
  line-height: 1.1;
  padding-bottom: 4px;
}

.pf4_col_3 .note .c {
  font-size: 13px;
  line-height: 1.2;
  color: #ed1f24;
  font-weight: 600;
}

.pf4_col_3 .det {
  background-color: #232323;
  border-radius: 5px;
  height: 31px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pf4_col_3 .det .text {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pf4_col_3 .det .text span {
  color: #ed1f24;
  font-family: times new roman,serif;
  font-size: 18px;
  font-style: italic;
  line-height: 16px;
  text-transform: lowercase;
  padding-right: 14px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pf4_col_3 .det .text i {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pf4_col_3 .det.det_pdf {
  margin-top: 5px;
}

.pf4_col_3 .det.det_pdf .text span {
  padding-right: 5px;
  font-size: 14px;
}

@media screen and (min-width: 991px) {
  .pf4_col_3 .det:hover {
    background-color: #ed1f24;
  }
  .pf4_col_3 .det:hover .text span {
    color: #000;
  }
}

.pf4_col_4 {
  float: left;
  width: 100%;
  margin-top: 4px;
}

.pf4_col_4 .cont {
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 5px 10px 8px;
}

.pf4_col_4 .t {
  float: left;
  padding-right: 10px;
  color: #ed1f24;
  font-size: 10px;
  padding-top: 4px;
}

.pf4_col_cross {
  float: left;
  width: 100%;
  text-transform: uppercase;
  padding: 15px 17px 20px;
}

.pf4_col_cross .cross_col {
  float: left;
  width: 50%;
}

.pf4_col_cross .red_text {
  color: #ed1f24;
}

.pf4_col_cross .prod {
  font-weight: 300;
  font-size: 16px;
  padding: 10px 0px 2px;
}

.pf4_col_cross .part_nr {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}

.pf4_col_cross .part_nr svg {
  fill: #ed1f24;
  left: -25px;
  position: absolute;
  top: 7px;
  width: 10px;
}

.part_finder_4_alternates {
  float: left;
  width: 100%;
  position: relative;
}

.part_finder_4_alternates .t2 {
  display: none;
}

.part_finder_4_alternates .head {
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  left: 0;
  right: 0;
  top: -10px;
  position: absolute;
  cursor: pointer;
  display: block;
  padding: 0 10px;
}

.part_finder_4_alternates .head .head_all {
  background-color: #161616;
  padding: 0 10px;
}

.part_finder_4_alternates .head svg {
  fill: #ed1f24;
  margin-left: 10px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  vertical-align: middle;
  width: 7px;
}

.part_finder_4_alternates .all_cont {
  float: left;
  width: 100%;
  display: none;
  border-radius: 5px;
  border: 1px solid #ed1f24;
  padding: 9px 5px 7px;
}

.part_finder_4_alternates .part_finder_4_res_el {
  margin: 5px 0;
}

.part_finder_4_alternates.open .t1 {
  display: none;
}

.part_finder_4_alternates.open .t2 {
  display: inline;
}

.part_finder_4_alternates.open .head svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.part_finder_4_no_res {
  float: left;
  width: 100%;
  text-align: center;
  color: #ed1f24;
  text-transform: uppercase;
  padding: 30px 0;
}

.pf4-2_top {
  text-transform: uppercase;
  color: #fff;
  margin-top: 25px;
  padding: 17px 18px 15px;
  display: none;
}

.pf4-2_top .t {
  color: #ed1f24;
  float: left;
  padding-top: 3px;
}

.pf4-2_top .v {
  float: right;
  font-size: 16px;
  font-weight: 600;
}

.pf4-2_top .s {
  font-size: 16px;
  font-weight: 600;
}

.pf4-2_top .c {
  color: #ed1f24;
  padding-top: 20px;
}

.pf4-2_top .find {
  display: none;
}

.pf4-2_top .sorry {
  text-align: center;
  padding: 12px 0px 16px;
}

.pf4-2_top.not_found {
  display: block;
}

/*=====  End of Part finder  ======*/
/*============================
=            Home            =
============================*/
.home_page {
  background-color: #161616;
}

.hp_banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 800px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hp_banner {
    height: 54vw;
  }
}

.hp_banner::after {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #161616;
  background-image: -webkit-gradient(linear,left bottom, left top,from(#161616), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top,#161616, rgba(22, 22, 22, 0));
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}

.hp_banner video {
  width: 100%;
  opacity: 0.5;
}

.hp_video_bg {
  background-color: #161616;
}

.hp_banner_text {
  position: absolute;
  top: 235px;
  width: 100%;
  z-index: 5;
}

.hp_banner_text svg {
  width: 100%;
}

.hp_banner_text .all {
  position: relative;
  width: 100%;
}

.hp_banner_text .all::before {
  content: "";
  display: block;
  height: 1px;
  width: 27%;
  left: 0;
  top: 13px;
  position: absolute;
  background-image: url("../img/hb_dots.png");
  background-repeat: repeat-x;
  -webkit-animation: 21s linear 0s normal forwards 1 b_text1_move_l;
  animation: 21s linear 0s normal forwards 1 b_text1_move_l;
}

.hp_banner_text .all::after {
  content: "";
  display: block;
  height: 1px;
  width: calc(70% - 280px);
  right: 0;
  bottom: 29px;
  position: absolute;
  background-image: url("../img/hb_dots.png");
  background-repeat: repeat-x;
  background-position: right;
  -webkit-animation: 18s linear 0s normal forwards 1 b_text2_move_l;
  animation: 18s linear 0s normal forwards 1 b_text2_move_l;
}

.hp_banner_text .text1 {
  width: 290px;
  padding-bottom: 22px;
  position: relative;
  left: 27%;
  -webkit-animation: 21s linear 0s normal forwards 1 b_text1_move;
  animation: 21s linear 0s normal forwards 1 b_text1_move;
}

.hp_banner_text .text2 {
  left: 30%;
  width: 280px;
  position: relative;
  -webkit-animation: 18s linear 0s normal forwards 1 b_text2_move;
  animation: 18s linear 0s normal forwards 1 b_text2_move;
}

.hp_banner_text.move .all::before {
  width: 57%;
}

.hp_banner_text.move .all::after {
  width: calc(40% - 280px);
}

.hp_banner_text.move .text1 {
  left: 57%;
}

.hp_banner_text.move .text2 {
  left: 60%;
}

@-webkit-keyframes b_text1_move {
  0% {
    left: 27%;
  }
  100% {
    left: 57%;
  }
}

@keyframes b_text1_move {
  0% {
    left: 27%;
  }
  100% {
    left: 57%;
  }
}

@-webkit-keyframes b_text1_move_l {
  0% {
    width: 27%;
  }
  100% {
    width: 57%;
  }
}

@keyframes b_text1_move_l {
  0% {
    width: 27%;
  }
  100% {
    width: 57%;
  }
}

@-webkit-keyframes b_text2_move {
  0% {
    left: 30%;
  }
  100% {
    left: 60%;
  }
}

@keyframes b_text2_move {
  0% {
    left: 30%;
  }
  100% {
    left: 60%;
  }
}

@-webkit-keyframes b_text2_move_l {
  0% {
    width: calc(70% - 280px);
  }
  100% {
    width: calc(40% - 280px);
  }
}

@keyframes b_text2_move_l {
  0% {
    width: calc(70% - 280px);
  }
  100% {
    width: calc(40% - 280px);
  }
}

/*----------  Home box  ----------*/
.hp_gp_wrap {
  position: relative;
  z-index: 2;
}

.hp_gp_container {
  width: 83.5%;
}

.hp_gp {
  padding: 0 16px;
}

.hp_gp_row {
  margin: 0 -16px;
}

.hp_gp_cont {
  width: 100%;
  float: left;
  background-color: #161616;
}

.hp_gp_top {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 14px 32px 18px;
  text-transform: uppercase;
  position: relative;
  min-height: 95px;
}

.hp_gp_top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}

.hp_gp_top .title {
  color: #ed1f24;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 14px;
}

.hp_gp_top .sub {
  font-weight: 600;
  color: #7f7f7f;
  font-size: 12px;
}

.hp_gp_top .sub a {
  color: #7f7f7f;
  padding: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 0 -5px;
  white-space: nowrap;
}

.hp_gp_top .sub span {
  display: inline-block;
  padding-right: 4px;
  position: relative;
}

.hp_gp_top .sub span::after {
  content: '-';
  display: block;
  float: right;
  margin-top: -2px;
  padding-left: 6px;
}

.hp_gp_top .sub span:last-child::after {
  display: none;
}

@media screen and (min-width: 991px) {
  .hp_gp_top .sub a:hover {
    color: #ed1f24;
  }
}

.hp_gp_img {
  float: left;
  width: 100%;
  height: 295px;
  overflow: hidden;
}

.hp_gp_img .bg {
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  opacity: 0.3;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media screen and (min-width: 991px) {
  .hp_gp_cont:hover .hp_gp_img .bg {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/*----------  Home Slider  ----------*/
.hp_slider {
  position: relative;
  margin-top: -100px;
  margin-bottom: -40px;
}

.hp_slider_all {
  position: relative;
  z-index: 3;
  padding: 110px 11.5% 0;
  min-height: 600px;
}

.hp_slider_all .slick-list {
  overflow: visible;
}

.hp_slider_all .slick-arrow {
  position: absolute;
  top: 10%;
  width: 40px;
  height: 200px;
  background-color: transparent;
  border: none;
  z-index: 10;
}

.hp_slider_all .slick-arrow span {
  background-image: url("../img/arrow.svg");
  display: inline-block;
  width: 14px;
  height: 21px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
}

.hp_slider_all .slick-prev {
  left: 0%;
}

.hp_slider_all .slick-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 0px;
}

.hp_slider_all .slick-next {
  left: calc(42% - 40px);
}

.hp_slider_all .slick-next span {
  left: 0px;
}

@media screen and (min-width: 991px) {
  .hp_slider_all .slick-prev:hover span {
    right: 10px;
  }
  .hp_slider_all .slick-next:hover span {
    left: 10px;
  }
}

.hp_slider_dots {
  left: 0;
  position: absolute;
  text-align: center;
  opacity: 0;
  width: 100%;
  bottom: 20px;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hp_slider_dots.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.hp_slider_dots .slick-dots {
  padding-left: 0;
  list-style: none;
  width: 100%;
  margin-bottom: 0;
}

.hp_slider_dots .slick-dots li {
  display: inline-block;
  padding: 0 7px;
  vertical-align: middle;
}

.hp_slider_dots .slick-dots button {
  width: 14px;
  height: 14px;
  color: transparent;
  padding: 0;
  border: 2px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.hp_slider_dots .slick-dots .slick-active button {
  border-color: #ed1f24;
  background-color: #ed1f24;
  -webkit-transform: translateY(-7px);
  transform: translateY(-7px);
}

.hp_s_all {
  margin-top: 50px;
}

.hp_slider_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 600px;
  overflow: hidden;
}

.hp_slider_bg .bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 100%;
  height: 120%;
  position: relative;
}

.hp_slider_el {
  float: left;
  width: 100%;
}

.hp_slider_el.sa_left .hp_slider_text, .hp_slider_el.sa_left .hp_slider_img {
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

.hp_slider_el.sa_right .hp_slider_text, .hp_slider_el.sa_right .hp_slider_img {
  opacity: 0;
  -webkit-transform: translateX(150px);
  transform: translateX(150px);
}

.hp_slider_el.go_anim .hp_slider_text, .hp_slider_el.go_anim .hp_slider_img {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.hp_slider_text {
  width: 42%;
  float: left;
  padding: 30px 5% 0;
}

.hp_slider_text .title {
  text-transform: uppercase;
  color: #ed1f24;
  font-weight: bold;
  font-size: 22px;
  padding-bottom: 32px;
}

.hp_slider_text .text {
  color: #b5b5b5;
}

.hp_slider_text .text p {
  margin-bottom: 20px;
}

.hp_slider_text .text_1 {
  padding-top: 23px;
}

.hp_slider_text .text_1 svg {
  width: 6px;
  fill: #ed1f24;
  vertical-align: middle;
  margin: 0px 21px 0px 0px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.hp_slider_text .text_1 a {
  color: #fff;
  font-size: 14px;
  padding: 7px;
  margin: 0 -7px;
}

@media screen and (min-width: 991px) {
  .hp_slider_text .text_1 a:hover svg {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.hp_slider_img {
  width: 58%;
  float: left;
  height: 400px;
}

.hp_slider_img .paralax {
  width: 100%;
  height: 100%;
}

.hp_slider_img .img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

/*----------  Home article  ----------*/
.hp_white_block {
  padding: 57px 65px 70px;
  background-color: #fff;
  margin-bottom: 19px;
}

.hp_gallery {
  float: left;
  width: 69%;
}

.hp_gallery_top {
  padding-bottom: 25px;
}

.hp_gallery_top span.ti {
  text-transform: uppercase;
  color: #ed1f24;
  font-weight: bold;
  font-size: 22px;
}

.hp_gallery_top span.ti a {
  color: #ed1f24;
}

.hp_gallery_top a.view {
  color: #000;
  font-size: 14px;
  float: right;
  padding: 12px 10px 10px;
  margin-right: -10px;
  display: block;
}

.hp_gallery_top a.view svg {
  width: 7px;
  margin-right: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.hp_gallery_top a.view svg .cls-1 {
  fill: #ed1f24;
}

@media screen and (min-width: 991px) {
  .hp_gallery_top a.view:hover svg {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
}

.hp_gallery_cont {
  float: left;
  width: 100%;
}

.hp_gallery_cont .element {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hp_gallery_big .slick-slide {
  background-color: #000;
}

.hp_gallery_big .element {
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 573px;
}

@media screen and (min-width: 991px) {
  .hp_gallery_big .slick-slide .element:hover {
    opacity: 0.8;
  }
}

.hp_gallery_small {
  padding-top: 13px;
}

.hp_gallery_small .element {
  width: 260px;
  height: 170px;
  opacity: 0.4;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.hp_gallery_small .img {
  background-color: #000;
  margin: 0 6px;
}

.hp_gallery_small .slick-current .element {
  opacity: 1;
}

.hp_gallery_small .slick-arrow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  background-color: transparent;
  border: none;
  text-align: center;
  z-index: 6;
  pointer-events: none;
}

.hp_gallery_small .slick-arrow span {
  background-image: url("../img/arrow_white.svg");
  width: 11px;
  height: 17px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}

.hp_gallery_small .slick-arrow.slick-prev {
  left: 0px;
}

.hp_gallery_small .slick-arrow.slick-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.hp_gallery_small .slick-arrow.slick-next {
  right: 0px;
}

@media screen and (min-width: 991px) {
  .hp_gallery_small .img:hover .element {
    opacity: 1;
  }
  a[data-gallery="multiimages"]:hover img {
    opacity: 0.8;
  }
}

a[data-gallery="multiimages"] {
  background-color: #000;
}

a[data-gallery="multiimages"] img {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.ekko-lightbox {
  height: 100vh;
}

.ekko-lightbox .modal-dialog {
  margin: 0px auto;
  max-height: auto !important;
  max-width: 80vw !important;
  width: 1060px !important;
}

.ekko-lightbox.modal.in .modal-dialog {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox .ekko-lightbox-container {
  text-align: center;
}

.ekko-lightbox .ekko-lightbox-container img {
  display: inline;
}

.ekko-lightbox .modal-header {
  padding: 0;
  color: #fff;
  border: none;
  float: left;
  width: 100%;
  padding-bottom: 21px;
}

.ekko-lightbox .modal-header .close {
  display: none;
}

.ekko-lightbox .modal-title {
  float: left;
  color: #ed1f24;
}

.ekko-lightbox .modal-footer {
  border-top: none;
  color: #fff;
  padding: 0 0 26px;
  text-align: left;
  font-size: 16px;
}

.ekko-lightbox .modal-title, .ekko-lightbox .modal_nr {
  font-size: 16px;
  font-weight: 600;
}

.ekko-lightbox .modal_nr {
  float: right;
}

.ekko-lightbox .modal-content {
  background-color: transparent;
  border: none;
  border: radius;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  max-width: 80vw;
  margin: auto;
}

.ekko-lightbox .modal_close {
  background-image: url("../img/close_red.svg");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  height: 80px;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 80px;
}

.ekko-lightbox .ekko-lightbox-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon {
  position: absolute;
  height: 100%;
  width: 100px;
  top: 0;
  background-image: url("../img/arrow_white.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
}

.ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon::before {
  display: none;
}

.ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-left {
  left: -100px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-right {
  right: -100px;
}

.modal-backdrop.in {
  opacity: 0.8;
}

.hp_articles {
  float: left;
  width: 31%;
  padding-left: 4.4%;
}

.hp_articles_cont .apo_col {
  padding: 0;
}

.hp_articles_cont .apo_col:first-child {
  margin-bottom: 25px;
}

.hp_articles_cont .apo_cont {
  margin-bottom: 38px;
  height: 40px;
  overflow: hidden;
  width: 100%;
}

.hp_articles_cont .apo_name {
  color: #fff;
  width: 100%;
}

.hp_articles_cont .apo_name .arrow svg .cls-1 {
  fill: #ed1f24;
}

.hp_articles_cont .apo_name .dots_d {
  display: inline;
}

.apo_bottom {
  background-color: #161616;
  float: left;
  width: 100%;
  padding: 10px 8% 0px;
}

/*=====  End of Home  ======*/
/*=====================================
=            Page top menu            =
=====================================*/
.pt_menu_bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-position: center top;
  position: fixed;
  top: 0;
  left: 32px;
  width: calc(100% - 64px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.pt_menu_bg::after {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #161616;
  background-image: -webkit-gradient(linear,left bottom, left top,from(#161616), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top,#161616, rgba(22, 22, 22, 0));
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
}

.pt_menu_bg.showe_el {
  opacity: 0.2;
}

.pt_menu_content {
  color: #fff;
  position: relative;
  z-index: 10;
}

.pt_menu_title {
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 68px 0px 70px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.pt_menu_title.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.pt_menu_sub_wrap {
  position: relative;
  z-index: 9;
}

.new_fix_menu {
  position: relative;
  z-index: 99;
}

.pt_menu_sub {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  background-color: #161616;
  font-size: 14px;
  text-align: center;
  padding: 49px 8% 42px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

.pt_menu_sub.showe_el {
  -webkit-transform: translateX(0vw);
  transform: translateX(0vw);
}

.pt_menu_sub.fixed_menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.pt_menu_sub.fixed_menu.active {
  position: fixed;
  top: 70px;
  left: 32px;
  width: calc(100% - 64px);
  -webkit-transform: translateY(0px) translate3d(0, 0, 0);
  transform: translateY(0px) translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.pt_menu_sub.fixed_menu.active.hide1 {
  -webkit-transform: translateY(calc(-100% - 30px)) translate3d(0, 0, 0);
  transform: translateY(calc(-100% - 30px)) translate3d(0, 0, 0);
}

.pt_menu_sub::after {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #161616;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pt_menu_sub li {
  display: inline-block;
  position: relative;
  margin: 3px 5px;
  opacity: 0;
  width: 160px;
  height: 46px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.pt_menu_sub li.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.pt_menu_sub li span {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
}

.pt_menu_sub li a {
  color: #fff;
  display: block;
  border: 1px solid #fff;
  height: 46px;
  width: 160px;
  position: absolute;
}

.pt_menu_sub li .el_oveflow {
  overflow: hidden;
  position: absolute;
  width: 160px;
  height: 46px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.pt_menu_sub li.in_left .dh_overlay {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.pt_menu_sub li.in_left .el_oveflow {
  width: 0;
  right: 0;
}

.pt_menu_sub li.in_left .el_oveflow a {
  right: 0;
}

.pt_menu_sub li.in_right .dh_overlay {
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.pt_menu_sub li.in_right .dh_overlay a {
  right: 0;
}

.pt_menu_sub li.in_right .el_oveflow {
  width: 0;
  left: 0;
}

.pt_menu_sub li.in_top .dh_overlay {
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.in_top .el_oveflow {
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.in_top .el_oveflow a {
  bottom: 0;
}

.pt_menu_sub li.in_bot .dh_overlay {
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.in_bot .dh_overlay a {
  bottom: 0;
}

.pt_menu_sub li.in_bot .el_oveflow {
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.out_left .dh_overlay {
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
}

.pt_menu_sub li.out_left .el_oveflow {
  width: 100%;
  right: 0;
}

.pt_menu_sub li.out_left .el_oveflow a {
  right: 0;
}

.pt_menu_sub li.out_right .dh_overlay {
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
}

.pt_menu_sub li.out_right .dh_overlay a {
  right: 0;
}

.pt_menu_sub li.out_right .el_oveflow {
  width: 100%;
  left: 0;
}

.pt_menu_sub li.out_top .dh_overlay {
  right: 0;
  top: 0;
  height: 0%;
  width: 100%;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.out_top .el_oveflow {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.out_top .el_oveflow a {
  bottom: 0;
}

.pt_menu_sub li.out_bot .dh_overlay {
  right: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub li.out_bot .dh_overlay a {
  bottom: 0;
}

.pt_menu_sub li.out_bot .el_oveflow {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.pt_menu_sub .dh_overlay {
  position: absolute;
  width: 0%;
  height: 0%;
  overflow: hidden;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.pt_menu_sub .dh_overlay a {
  border: 2px solid #ed1f24;
  color: #ed1f24;
}

.pt_menu_sub_title {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  padding: 101px 0px 107px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.pt_menu_sub_title .sub {
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  padding-top: 12px;
}

.pt_menu_sub_title.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

/*=====  End of Page top menu  ======*/
/*====================================
=            History page            =
====================================*/
.hist_content {
  padding: 57px 5.7% 100px;
}

.page_content {
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.page_content.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.hist_video {
  text-align: center;
  position: relative;
}

.hist_video .video_wrap {
  background-color: #000;
  display: inline-block;
  margin-bottom: 39px;
}

.hist_video .video_wrap iframe {
  display: block;
  max-width: 100%;
  opacity: 0.4;
}

.hist_video.video_play .video_wrap iframe {
  opacity: 1;
}

.hist_video.video_play .hist_video_el {
  display: none;
}

.hist_video_el {
  position: absolute;
  top: 0;
  height: calc(100% - 40px);
  text-align: center;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  pointer-events: none;
}

.hist_video_el .text {
  padding-top: 120px;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  pointer-events: none;
}

.hist_video_el .play {
  bottom: 0;
  height: 67px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 95px;
  cursor: pointer;
}

.hist_video_el .play svg {
  width: 100%;
}

.hist_video_el .play svg .cls-1, .hist_video_el .play svg .cls-2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 991px) {
  .video_wrap:hover + .hist_video_el .play svg .cls-1 {
    fill: #fff;
  }
  .video_wrap:hover + .hist_video_el .play svg .cls-2 {
    fill: #ed1c24;
  }
}

.history_line {
  margin: 0 -33px;
  position: relative;
}

.history_line::before {
  content: "";
  width: 2px;
  height: calc(100% - 37px);
  background-color: #d7d7d7;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}

.grid-sizer {
  width: 50%;
}

.history_event {
  width: 50%;
  padding: 0 33px 37px;
  float: left;
}

.history_event .date {
  color: #ed1f24;
  font-weight: 600;
  font-size: 26px;
  padding-bottom: 15px;
}

.history_event .text {
  color: #7f7f7f;
  font-size: 16px;
  line-height: 1.5;
}

.history_event .cont {
  background-color: #f0f0f0;
  float: left;
  width: 100%;
  padding: 32px 13.5% 22px;
  position: relative;
  text-align: right;
}

.history_event .cont::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #f0f0f0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.history_event.right .cont {
  text-align: left;
}

.history_event.right .cont::after {
  right: auto;
  left: -12px;
}

.history_event a {
  float: left;
  width: 100%;
  display: block;
}

.history_event img {
  width: 100%;
}

.history_event:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.history_event:nth-child(2) {
  padding-top: 105px;
}

/*=====  End of History page  ======*/
/*===============================
=            Gallery            =
===============================*/
.gallery_content {
  padding: 32px 35px 50px;
}

.gallery_select {
  float: left;
  width: 100%;
  position: relative;
  z-index: 20;
}

.gallery_select .selectboxit-container {
  margin-bottom: 10px;
  width: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gallery_select .selectboxit-container .selectboxit-enabled {
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  width: auto !important;
  height: 49px;
  max-width: 100%;
  padding: 5px 55px 5px 22px;
  border: 2px solid #d7d7d7;
  color: #8a8a8a;
}

.gallery_select .selectboxit-container .selectboxit-enabled .selectboxit-text {
  display: block;
}

.gallery_select .selectboxit-container .selectboxit-arrow-container {
  right: 22px;
}

.gallery_select .selectboxit-container .selectboxit-list {
  background-color: #fff;
  border-radius: 0;
  border: 2px solid #d7d7d7;
  border-top: none;
  padding: 10px 0px 5px;
}

.gallery_select .selectboxit-container .selectboxit-option a {
  color: #8a8a8a;
  padding: 10px 22px;
}

.gallery_images {
  margin: 0 -17px;
}

.gallery_img {
  float: left;
  position: relative;
  width: 600px;
  padding: 17px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.gallery_img.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.gallery_img a {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  background-color: #161616;
}

.gallery_img .element {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.gallery_img:nth-child(1), .gallery_img:nth-child(2), .gallery_img:nth-child(20n+3) {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.gallery_img:nth-child(20n+1) {
  width: 48%;
}

.gallery_img:nth-child(20n+1) .element {
  height: 413px;
}

.gallery_img:nth-child(20n+2) {
  width: 23%;
}

.gallery_img:nth-child(20n+2) .element {
  height: 280px;
}

.gallery_img:nth-child(20n+3) {
  width: 29%;
  float: right;
}

.gallery_img:nth-child(20n+3) .element {
  height: 500px;
}

.gallery_img:nth-child(20n+4) {
  width: 23%;
  margin-left: 48%;
  margin-top: -133px;
}

.gallery_img:nth-child(20n+4) .element {
  height: 186px;
}

.gallery_img:nth-child(20n+5) {
  width: 24%;
  margin-top: -88px;
}

.gallery_img:nth-child(20n+5) .element {
  height: 380px;
}

.gallery_img:nth-child(20n+6) {
  width: 24%;
  margin-top: -88px;
}

.gallery_img:nth-child(20n+6) .element {
  height: 380px;
}

.gallery_img:nth-child(20n+7) {
  width: 52%;
  float: right;
}

.gallery_img:nth-child(20n+7) .element {
  height: 430px;
}

.gallery_img:nth-child(20n+8) {
  width: 48%;
}

.gallery_img:nth-child(20n+8) .element {
  height: 405px;
}

.gallery_img:nth-child(20n+9) {
  width: 26%;
}

.gallery_img:nth-child(20n+9) .element {
  height: 215px;
}

.gallery_img:nth-child(20n+10) {
  width: 26%;
}

.gallery_img:nth-child(20n+10) .element {
  height: 215px;
}

.gallery_img:nth-child(20n+11) {
  width: 52%;
  float: right;
}

.gallery_img:nth-child(20n+11) .element {
  height: 435px;
}

.gallery_img:nth-child(20n+12) {
  width: 24%;
}

.gallery_img:nth-child(20n+12) .element {
  height: 200px;
}

.gallery_img:nth-child(20n+13) {
  width: 24%;
}

.gallery_img:nth-child(20n+13) .element {
  height: 200px;
}

.gallery_img:nth-child(20n+14) {
  width: 48%;
}

.gallery_img:nth-child(20n+14) .element {
  height: 415px;
}

.gallery_img:nth-child(20n+15) {
  width: 26%;
  float: right;
}

.gallery_img:nth-child(20n+15) .element {
  height: 300px;
}

.gallery_img:nth-child(20n+16) {
  width: 26%;
  float: right;
}

.gallery_img:nth-child(20n+16) .element {
  height: 300px;
}

.gallery_img:nth-child(20n+17) {
  width: 24%;
}

.gallery_img:nth-child(20n+17) .element {
  height: 200px;
}

.gallery_img:nth-child(20n+18) {
  width: 24%;
}

.gallery_img:nth-child(20n+18) .element {
  height: 200px;
}

.gallery_img:nth-child(20n+19) {
  width: 52%;
  float: right;
}

.gallery_img:nth-child(20n+19) .element {
  height: 440px;
}

.gallery_img:nth-child(20n+20) {
  width: 48%;
}

.gallery_img:nth-child(20n+20) .element {
  height: 274px;
}

@media screen and (min-width: 991px) {
  .gallery_img a:hover .element {
    opacity: 0.3;
  }
}

.gallery_button {
  text-align: center;
  padding: 37px 0px 10px;
}

.gallery_button .slanting_button {
  display: inline-block;
  margin: 30px 0 20px;
}

.gallery_button .slanting_button .bg {
  -webkit-box-shadow: 1px 1px 4px 0 #000;
          box-shadow: 1px 1px 4px 0 #000;
}

.gallery_button .load_icon {
  display: inline-block;
}

.gallery_button .load_icon svg rect {
  fill: #ed1f24;
}

/*=====  End of Gallery  ======*/
/*====================================
=            Product Page            =
====================================*/
.pp_boxes_sec {
  margin-top: -18px;
}

.pp_box {
  position: relative;
  z-index: 10;
  padding-top: 18px;
  padding-bottom: 18px;
}

.product_page .container {
  width: 84.5%;
  max-width: 1400px;
}

.pp_box_content {
  float: left;
  width: 100%;
  font-size: 0;
}

.pp_box_content .img {
  display: inline-block;
  vertical-align: middle;
  width: 50% img;
  width-max-width: 100%;
}

.pp_box_content .text {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  font-size: 13px;
}

.pp_box_content .text h1, .pp_box_content .text h2, .pp_box_content .text h3, .pp_box_content .text h4, .pp_box_content .text h5, .pp_box_content .text h6 {
  text-transform: uppercase;
  color: #ed1f24;
  font-weight: 600;
}

.pp_box_content .text h1 {
  font-size: 26px;
  margin: 38px 0;
}

.pp_box_content .text h2 {
  font-size: 22px;
  margin: 38px 0;
}

.pp_box_content .text h3 {
  font-size: 18px;
  margin: 25px 0;
}

.pp_box_content .text h4 {
  font-size: 16px;
  margin: 20px 0;
}

.pp_box_content .text ul, .pp_box_content .text ol, .pp_box_content .text p {
  margin-bottom: 20px;
}

.pp_box_content.right {
  direction: rtl;
}

.pp_box_content.right .text {
  direction: ltr;
}

/*----------  Summary box  ----------*/
.pp_box1_content {
  background-color: #fff;
  padding: 45px 6%;
}

.pp_box1_content .img {
  width: 47%;
  text-align: center;
}

.pp_box1_content .img img {
  max-width: 100%;
}

.pp_box1_content .text {
  width: 53%;
  padding-left: 7%;
  padding-top: 10px;
  padding-bottom: 30px;
  color: #7f7f7f;
}

.pp_box1_content .text img {
  max-width: 100%;
  height: auto;
}

.pp_box1_content.right .text {
  padding-left: 0;
  padding-right: 7%;
}

/*----------  Background box  ----------*/
.pp_box2 {
  margin: -18px 0;
  position: relative;
  overflow: hidden;
}

.pp_box2 .container {
  width: 68%;
}

.pp_box2_content {
  position: relative;
  z-index: 5;
  padding: 10px 0;
}

.pp_box2_content .img {
  width: 37%;
  text-align: center;
  position: relative;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.pp_box2_content .img.ve_bot {
  vertical-align: bottom;
}

.pp_box2_content .img img {
  max-width: 100%;
}

.pp_box2_content .text {
  padding-bottom: 40px;
  width: 63%;
  color: #fff;
  padding-left: 9%;
}

.pp_box2_content .text h1, .pp_box2_content .text h2, .pp_box2_content .text h3, .pp_box2_content .text h4, .pp_box2_content .text h5, .pp_box2_content .text h6 {
  width: 100%;
}

.pp_box2_content .text img {
  max-width: 100%;
  height: auto;
}

.pp_box2_content .text .only_text {
  width: 74%;
}

.pp_box2_content.right .text {
  padding-left: 0;
  padding-right: 9%;
}

.pp_box2_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 150px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*----------  Multi box  ----------*/
.pp_box3 .row {
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
}

.pp_box3_control {
  float: left;
  width: 205px;
  background-color: #212121;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 16px 0;
}

.pp_box3_control::after {
  content: "";
  width: 100%;
  top: 99%;
  left: 0;
  position: absolute;
  height: 999px;
  background-color: #212121;
}

.pp_box3_control > li {
  width: 100%;
  float: left;
}

.pp_box3_control > li > a {
  float: left;
  width: 100%;
  color: #fff;
  padding: 25px 34px;
}

.pp_box3_control > li > a:hover, .pp_box3_control > li > a:focus {
  background-color: transparent;
}

.pp_box3_control .text {
  position: relative;
  display: block;
}

.pp_box3_control .sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  margin-top: -5px;
}

.pp_box3_control .active a {
  color: #ed1f24;
  position: relative;
}

.pp_box3_control .active a::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #212121;
  position: absolute;
  right: -12px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 5;
}

.pp_box3_content {
  float: left;
  width: calc(100% - 205px);
  background-color: #fff;
}

.pp_box3_el {
  float: left;
  width: 100%;
}

.pp_box3_el .img {
  display: table-cell;
  vertical-align: top;
  width: 61%;
  text-align: center;
  padding: 23px 2.3% 0;
}

.pp_box3_el .img img {
  max-width: 100%;
}

.pp_box3_el .img_text {
  text-align: left;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 36px;
}

.pp_box3_el .img_text .title {
  color: #ed1f24;
  font-size: 22px;
}

.pp_box3_el .content_text {
  display: table-cell;
  vertical-align: top;
  width: 39%;
  background-color: #e9e9e9;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 3.7% 20px;
}

.pp_box3_el .content_text img {
  max-width: 100%;
  height: auto;
}

.pp_box3_el .content_text h1, .pp_box3_el .content_text h2 {
  font-weight: 600;
  margin: 20px 0px 33px;
}

.pp_box3_el .content_text h1 {
  font-size: 26px;
}

.pp_box3_el .content_text h2 {
  font-size: 22px;
}

.pp_box3_el .content_text h3, .pp_box3_el .content_text h4, .pp_box3_el .content_text h5, .pp_box3_el .content_text h6 {
  text-transform: uppercase;
  color: #ed1f24;
  font-weight: 600;
  margin: 33px 0px 6px;
}

.pp_box3_el .content_text h3 {
  font-size: 18px;
}

.pp_box3_el .content_text h4 {
  font-size: 14px;
}

.pp_box3_el .content_text h5 {
  font-size: 11px;
}

.pp_box3_el .content_text h6 {
  font-size: 10px;
}

.pp_box3_el .content_text blockquote {
  border-left: 0 none;
  font-size: 10px;
  margin: 30px 0 20px;
  padding: 0;
  color: #8f8f8f;
  font-weight: 400;
}

/*----------  General box  ----------*/
.pp_box4_content {
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
  background-color: #fff;
  padding: 75px 7%;
  color: #7f7f7f;
}

.pp_box4_content h1, .pp_box4_content h2 {
  text-transform: uppercase;
  color: #ed1f24;
  font-weight: 600;
}

.pp_box4_content h1 {
  font-size: 26px;
  margin: 38px 0;
}

.pp_box4_content h2 {
  font-size: 22px;
  margin: 38px 0;
}

.pp_box4_content h3, .pp_box4_content h4, .pp_box4_content h5, .pp_box4_content h6 {
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}

.pp_box4_content h3 {
  font-size: 18px;
  margin: 25px 0;
}

.pp_box4_content h4 {
  font-size: 16px;
  margin: 25px 0;
}

.pp_box4_content ul, .pp_box4_content ol, .pp_box4_content p {
  margin-bottom: 20px;
}

.pp_box4_content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0 25px;
}

/*----------  Gallery 360  ----------*/
.pp_box5_cont {
  max-width: 85%;
  display: table;
  margin: auto;
}

.threesixty {
  position: relative;
  margin: 0 auto;
  height: auto !important;
  width: 100% !important;
}

.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 780px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
}

.threesixty .threesixty_images::after {
  content: '';
  display: block;
  padding-top: 100%;
}

.threesixty .threesixty_images img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.threesixty .threesixty_images img.previous-image {
  visibility: hidden;
  /*
			       Do not put here any other styles.
			       It causes massive recalc / repaints and image flickering,
			       especially on Firefox.
			       */
}

.threesixty .threesixty_images img.current-image {
  visibility: visible;
  /*
			       Do not put here any other styles.
			       It causes massive recalc / repaints and image flickering,
			       especially on Firefox.
			       */
}

.threesixty .spinner {
  display: block;
  margin: 0 auto;
  margin: 0 !important;
  padding: 0;
  position: relative;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  width: 780px;
  max-width: 100%;
}

.threesixty .spinner::after {
  content: '';
  display: block;
  padding-top: 100%;
}

.threesixty .spinner img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.5;
}

.threesixty .spinner span {
  font-family: Arial, "MS Trebuchet", sans-serif;
  font-size: 12px;
  font-weight: bolder;
  color: #FFF;
  text-align: center;
  line-height: 30px;
  display: block;
  width: 60px;
  height: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.threesixty .custom_amimation {
  width: 240px;
  height: 240px;
  background-color: #000;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  color: #ed1f24;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 12;
  padding-top: 58px;
  opacity: 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.threesixty .custom_amimation .title {
  padding-bottom: 13px;
}

.threesixty .custom_amimation svg {
  fill: #fff;
  max-width: 100%;
  height: auto;
}

.threesixty .custom_amimation .ngk360 {
  width: 90px;
}

.threesixty .custom_amimation .ngk_hand {
  width: 35px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: 0 auto;
}

.threesixty .custom_amimation.start .ngk_hand {
  -webkit-animation-name: waving;
  animation-name: waving;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.threesixty .nav_bar {
  display: none;
}

.threesixty .custo_nav {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: none;
}

.threesixty .custo_nav a {
  display: block;
  width: 32px;
  height: 32px;
  float: left;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  text-indent: -99999px;
  background-position: center;
  background-size: 17px 26px;
  position: absolute;
  width: 75px;
  height: 150px;
  top: calc(50% - 75px);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.threesixty .custo_nav a.custom_prev {
  left: -75px;
  -webkit-transform: scale(1) rotate(180deg);
  transform: scale(1) rotate(180deg);
}

.threesixty .custo_nav a.custom_prev.click {
  -webkit-transform: scale(0.8) rotate(180deg);
  transform: scale(0.8) rotate(180deg);
}

.threesixty .custo_nav a.custom_next {
  right: -75px;
}

.threesixty .custo_nav a.custom_next.click {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.threesixty:-webkit-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

.threesixty:-moz-full-screen {
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}

@-webkit-keyframes waving {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  16.6% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
  50% {
    -webkit-transform: translateX(-35px);
    transform: translateX(-35px);
  }
  83.2% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes waving {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  16.6% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
  50% {
    -webkit-transform: translateX(-35px);
    transform: translateX(-35px);
  }
  83.2% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

/*=====  End of Product Page  ======*/
/*==================================================
=            profuct page boxes spacing            =
==================================================*/
/*=====  End of profuct page boxes spacing  ======*/
/*=================================
=            Worldwide            =
=================================*/
.ww_content {
  background-color: transparent;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.ww_content svg {
  width: 100%;
  fill: #fff;
}

.ww_content svg .active {
  fill: #ed1f24;
}

.ww_content svg .continent {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ww_content svg path {
  cursor: pointer;
  stroke: transparent;
  stroke-width: 2;
}

@media screen and (min-width: 991px) {
  .ww_content svg .continent:hover {
    fill: #ed1f24;
  }
}

.ww_offices {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding: 64px 5.5% 85px;
  margin-top: 61px;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
}

.ww_offices_el {
  display: none;
}

.ww_offices_el.active {
  display: block;
}

.ww_offices_el .title {
  color: #ed1f24;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 10px;
}

.ww_offices_all {
  margin: 0 -17px;
  padding-top: 11px;
}

.ww_offices_single {
  width: 33.3%;
  float: left;
  padding: 17px;
}

.ww_offices_single .single_title {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  padding-bottom: 20px;
}

.ww_offices_single .img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 245px;
}

.ww_offices_single .link {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.54);
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.ww_offices_single .link span {
  display: block;
  position: relative;
  top: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.ww_offices_single .link svg {
  width: 19px;
  fill: #fff;
  margin-bottom: 3px;
}

@media screen and (min-width: 991px) {
  .ww_offices_single .link:hover {
    opacity: 1;
  }
  .ww_offices_single .link:hover span {
    top: 50%;
  }
}

.ww_content {
  position: relative;
}

.ww_content .cont {
  position: absolute;
}

.ww_content .cont .el {
  position: relative;
  width: 100%;
}

.ww_content .cont img {
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ww_content .cont .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.ww_content .cont.active .hover {
  opacity: 1;
}

.ww_content .cont.active .w {
  opacity: 0;
}

.ww_content .au {
  bottom: 0;
  right: 0;
  width: 21.4%;
}

.ww_content .af {
  bottom: 0;
  right: 38.1%;
  width: 19%;
}

.ww_content .na {
  left: 0;
  top: 0;
  width: 44%;
}

.ww_content .sa {
  bottom: 0;
  left: 25%;
  width: 13.7%;
}

.ww_content .eu1 {
  right: 32.1%;
  top: 0;
  width: 26.25%;
}

.ww_content .eu2 {
  right: 23.8%;
  top: 0;
  width: 3.6%;
}

.ww_content .as1 {
  right: 0%;
  top: 0;
  width: 32.1%;
}

.ww_content .as2 {
  right: 32.15%;
  top: 36%;
  width: 13.1%;
}

.ww_content .as3 {
  left: 0;
  top: 49%;
  width: 3.55%;
}

/*=====  End of Worldwide  ======*/
/*================================
=            FAQ Page            =
================================*/
.faq_page .container {
  width: 685px;
  max-width: 100%;
}

.faq_page .pt_menu_sub_title {
  display: none;
}

.faq_page_search {
  padding: 62px 67px 86px;
  position: relative;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.faq_page_search.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.faq_page_search .all {
  position: relative;
}

.faq_page_search input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 25px;
  height: 50px;
  padding: 1px 20px 1px 1px;
}

.faq_page_search input::-webkit-input-placeholder {
  color: #fff;
}

.faq_page_search input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.faq_page_search input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.faq_page_search input:-ms-input-placeholder {
  color: #fff;
}

.faq_page_search svg {
  position: absolute;
  right: 2px;
  top: 16px;
  width: 16px;
}

.faq_page_search svg .st0 {
  fill: #fff;
}

.faq_cont {
  margin-bottom: 55px;
  padding: 39px 67px 45px;
}

.faq_cont .panel {
  background-color: transparent;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  margin-bottom: 0;
}

.faq_head {
  font-size: 22px;
}

.faq_head a {
  color: #000;
  display: block;
  position: relative;
}

.faq_head a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #7f7f7f;
  position: absolute;
  top: 4px;
  bottom: 0;
  margin: auto;
  left: 0;
  z-index: 1;
}

.faq_head a[aria-expanded="true"] {
  color: #ed1f24;
  font-weight: 600;
}

.faq_head a[aria-expanded="true"]::before {
  background-color: #000;
}

.faq_head a[aria-expanded="true"] .minus {
  display: none;
}

.faq_head .text {
  background-color: #fff;
  position: relative;
  z-index: 3;
  padding-right: 30px;
  display: inline-block;
}

.faq_head .icon {
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0;
  height: 100%;
  padding-left: 18px;
  z-index: 3;
  background-color: #fff;
}

.faq_head .icon svg {
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.faq_category_name {
  font-size: 22px;
}

.faq_category_name a {
  padding: 15px 0;
}

.faq_quest_name {
  font-size: 16px;
}

.faq_quest_name a {
  padding: 8px 0;
  font-weight: 600;
}

.faq_quest_name a::before {
  background-color: #d7d7d7;
}

.faq_quest_name a[aria-expanded="true"] {
  color: #000;
}

.faq_quest_name a[aria-expanded="true"]::before {
  background-color: #d7d7d7;
}

.faq_quest_name .text {
  padding-left: 34px;
}

.faq_quest_name .text::before {
  content: "";
  width: 13px;
  height: 2px;
  background-color: #ed1f24;
  position: absolute;
  top: 4px;
  bottom: 0;
  margin: auto;
  left: 0;
  z-index: 5;
}

.faq_cat_cont {
  margin-bottom: 16px;
  position: relative;
}

.faq_cat_cont::before {
  content: "";
  width: 2px;
  height: calc(100% - 11px);
  background-color: #ed1f24;
  position: absolute;
  left: 0;
  top: -7px;
  z-index: 6;
}

.faq_cat_cont .panel:last-child .panel-collapse {
  position: relative;
  background-color: #fff;
  z-index: 15;
}

.faq_cat_cont .panel:last-child .panel-collapse::before {
  content: "";
  width: 4px;
  height: 40px;
  z-index: 15;
  position: absolute;
  left: 0;
  top: -17px;
  background-color: #fff;
}

.faq_quest_body {
  position: relative;
  padding: 15px 15px 0px 34px;
  color: #7f7f7f;
}

.faq_quest_body ul {
  padding-left: 15px;
}

.faq_search_result {
  display: none;
}

/*=====  End of FAQ Page  ======*/
/*=======================================
=            Events calendar            =
=======================================*/
.ec_page .pt_menu_sub_title {
  padding: 45px 0px 32px;
}

.ec_list {
  padding: 65px 5%;
  float: left;
  width: 100%;
  display: none;
}

.ec_list.active {
  display: block;
}

.single_event {
  float: left;
  width: 100%;
  padding-bottom: 68px;
}

.single_event_top {
  float: left;
  width: 100%;
  height: 155px;
  background-color: #f0f0f0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.single_event_date {
  width: 170px;
  background-color: #ed1f24;
  color: #fff;
  text-align: center;
  float: left;
  height: 100%;
  border-radius: 12px;
  padding-top: 31px;
  position: relative;
}

.single_event_date::after {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #ed1f24;
  position: absolute;
  right: -13px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}

.single_event_date .day {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 5px;
  position: relative;
  z-index: 5;
}

.single_event_date .month {
  font-weight: 900;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}

.single_event_date .month div {
  float: left;
  width: 50%;
}

.single_event_cont {
  float: left;
  width: calc(50% - 170px);
  height: 100%;
  padding: 0px 4% 0px 6%;
}

.single_event_cont .all {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: uppercase;
  font-weight: bold;
}

.single_event_cont .title {
  color: #000;
  font-size: 30px;
  line-height: 1.2;
}

.single_event_cont .date {
  color: #ed1f24;
  font-size: 12px;
}

.single_event_map_info {
  float: left;
  width: calc(50% - 137px);
  height: 100%;
  background-color: #fff;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
  padding: 0px 4% 0px 6%;
}

.single_event_map_info .all {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single_event_map_info svg {
  width: 13px;
  fill: #000;
  margin-right: 10px;
}

.single_event_map_info .title {
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  font-variant: bold;
  line-height: 1.2;
  padding-bottom: 3px;
}

.single_event_map_info .address {
  padding-left: 28px;
  color: #7f7f7f;
  font-weight: 600;
}

.single_event_map_info .link {
  padding-left: 28px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding-top: 5px;
}

.single_event_map_info .link a {
  color: #ed1f24;
}

.single_event_map_info .link span {
  padding-right: 18px;
  position: relative;
}

.single_event_map_info .link span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.single_event_map_add_calendar {
  float: left;
  width: 137px;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
}

.single_event_map_add_calendar .all {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single_event_map_add_calendar .all span {
  display: block;
  width: 100%;
  padding: 10px 20px 0;
}

.single_event_map_add_calendar a {
  display: block;
  height: 100%;
  width: 100%;
  color: #000;
}

.single_event_map_add_calendar svg {
  fill: #ed1f24;
  width: 24px;
}

.single_event_bot {
  float: left;
  width: 100%;
  position: relative;
}

.single_event_bot .all {
  width: calc(100% - 307px);
  float: left;
  margin-left: 170px;
  background-color: #f0f0f0;
  overflow: hidden;
  height: 0;
}

.single_event_bot .cont, .single_event_bot .map_box {
  float: left;
}

.single_event_bot .cont {
  color: #7f7f7f;
  width: calc(50% - 17px);
  padding: 18px 6% 45px;
}

.single_event_bot .map_box {
  width: calc(50% + 17px);
}

.single_event_bot .map {
  min-height: 270px;
}

.single_event_bot.open .all {
  height: 100%;
}

.single_event_more {
  position: absolute;
  right: 50%;
  bottom: -35px;
  width: 120px;
  height: 35px;
  background-color: #f0f0f0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-top: 5px;
  cursor: pointer;
}

.single_event_more .t1::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 4px;
}

.single_event_more .t2 {
  display: none;
}

.single_event_more .t2::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 7px;
}

.single_event_more span {
  padding-right: 18px;
  position: relative;
}

.single_event_more span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #ed1f24;
  border-bottom: 2px solid #ed1f24;
  position: absolute;
  right: 0;
}

.single_event_more.open .t2 {
  display: inline;
}

.single_event_more.open .t1 {
  display: none;
}

.ec_nav {
  position: relative;
  z-index: 10;
  list-style: none;
  padding-left: 0;
  padding-bottom: 33px;
  margin: 0;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.ec_nav.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.ec_nav svg {
  width: 24px;
  fill: #fff;
}

.ec_nav svg .plus {
  display: none;
}

.ec_nav li {
  display: inline-block;
  vertical-align: middle;
}

.ec_nav a {
  padding: 7px;
  display: block;
}

.ec_nav span {
  display: block;
  width: 24px;
  height: 4px;
  background-color: #fff;
  position: relative;
  margin-top: 8px;
}

.ec_nav span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -7px;
  background-color: #fff;
}

.ec_nav span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 7px;
  background-color: #fff;
}

.ec_nav .list a {
  height: 36px;
}

.ec_nav .active svg {
  fill: #ed1f24;
}

.ec_nav .active span {
  background-color: #ed1f24;
}

.ec_nav .active span::before {
  background-color: #ed1f24;
}

.ec_nav .active span::after {
  background-color: #ed1f24;
}

.ec_single {
  float: left;
  width: 100%;
  display: none;
}

.ec_single.active {
  display: block;
}

.ec_datapicker {
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}

.ec_data {
  width: 963px;
  max-width: 100%;
  background-color: #fff;
  margin: auto;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
}

.ec_data .ui-datepicker {
  padding: 29px 35px 23px;
}

.ec_data .ui-datepicker-header {
  position: relative;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 14px;
  margin-bottom: 29px;
}

.ec_data .ui-datepicker-header .ui-corner-all {
  color: #ed1f24;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  float: left;
  cursor: pointer;
  position: relative;
  z-index: 10;
  padding: 5px 20px 5px 0px;
}

.ec_data .ui-datepicker-header .ui-corner-all span {
  position: relative;
  padding-left: 18px;
}

.ec_data .ui-datepicker-header .ui-corner-all span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 9px;
}

.ec_data .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
  float: right;
  padding: 5px 0px 5px 20px;
}

.ec_data .ui-datepicker-header .ui-corner-all.ui-datepicker-next span {
  position: relative;
  padding-left: 0px;
  padding-right: 18px;
}

.ec_data .ui-datepicker-header .ui-corner-all.ui-datepicker-next span::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: auto;
  right: 0;
}

.ec_data .ui-datepicker-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.ec_data .ui-datepicker-calendar {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  border-spacing: 9px;
  border-collapse: separate;
}

.ec_data .ui-datepicker-calendar a {
  color: #000;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 25px;
  height: 83px;
  position: relative;
  border-radius: 12px;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ec_data .ui-datepicker-calendar a::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #ed1f24;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  background-color: transparent;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ec_data .ui-datepicker-calendar a.d_active {
  color: #fff;
}

.ec_data .ui-datepicker-calendar a.d_active::before {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  opacity: 1;
  background-color: #ed1f24;
}

.ec_data .ui-datepicker-calendar thead {
  display: none;
}

.ec_data .ui-datepicker-calendar td {
  border-radius: 12px;
}

.ec_data .ui-datepicker-calendar td.have_event a::before {
  opacity: 1;
}

.ec_single_all {
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
  background-color: #fff;
  float: left;
  width: 100%;
  padding: 65px 5%;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.ec_single_all.have_elements {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.ec_single_all .single_event {
  display: none;
}

.ec_single_all .single_event.show_el {
  display: block;
}

/*=====  End of Events calendar  ======*/
/*====================================
=            Sponsorsheps            =
====================================*/
.sponsorships_page .pt_menu_sub_title {
  display: none;
}

.sp_content {
  position: relative;
  z-index: 10;
  float: left;
  width: 100%;
}

.sp_cat_head {
  color: #fff;
  padding: 81px 22% 100px;
  float: left;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.sp_cat_head.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.sp_cat_head .left {
  width: 43%;
  float: left;
}

.sp_cat_head .left .inter {
  display: none;
}

.sp_cat_head .left span {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 15px;
}

.sp_cat_head .left a {
  color: #ed1f24;
  position: relative;
  padding: 10px 15px;
  margin-left: -15px;
}

.sp_cat_head .left a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 19px;
}

.sp_cat_head .title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  padding: 7px 10px 11px 0px;
}

.sp_cat_head .right {
  width: 57%;
  float: left;
  color: #d2d2d2;
}

.sp_cat_head_38 {
  padding-left: 20%;
  padding-right: 20%;
}

.sp_cat_head_38 .right {
  padding-left: 43px;
}

.sp_cat_head_38 .left .inter {
  display: inline;
}

.sp_cat_body {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 14px 7% 55px;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
  position: relative;
  margin-top: 16px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.sp_cat_body.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.sp_cat_body_top {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.sp_cat_body_top .el1 {
  width: calc(50% - 16px);
  background-color: #fff;
  position: relative;
  float: left;
  height: 100%;
}

.sp_cat_body_top .el1::before {
  border-left: 16px solid #fff;
  border-top: 16px solid transparent;
  content: "";
  left: 100%;
  position: absolute;
  top: 0px;
}

.sp_cat_body_top .el2 {
  width: calc(50% - 16px);
  background-color: #fff;
  position: relative;
  float: right;
  height: 100%;
}

.sp_cat_body_top .el2::before {
  border-right: 16px solid #fff;
  border-top: 16px solid transparent;
  content: "";
  right: 100%;
  position: absolute;
  top: 0px;
}

.sp_cat_single {
  padding: 20px 0;
}

.sp_cat_single_title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 0px;
  color: #ed1f24;
}

.sp_cat_single_cont {
  text-align: center;
  font-size: 0;
}

.sp_sponsor_single {
  width: 240px;
  max-width: calc(25% - 26px);
  margin: 13px;
  display: inline-block;
  padding: 13px 16px;
  border: 1px solid #ccc;
  vertical-align: top;
  position: relative;
}

.sp_sponsor_single .logo {
  width: 100%;
  height: 130px;
  position: relative;
}

.sp_sponsor_single img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sp_sponsor_single .title {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  color: #161616;
  height: 60px;
  position: relative;
}

.sp_sponsor_single .title span {
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sp_sponsor_single a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #ed1f24;
  font-weight: 500;
  height: 100%;
  font-size: 15px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px;
}

.sp_sponsor_single a span {
  position: relative;
  text-transform: uppercase;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 991px) {
  .sp_sponsor_single:hover a {
    opacity: 1;
  }
}

/*=====  End of Sponsorsheps  ======*/
/*====================================
=            All articles            =
====================================*/
.category .pt_menu_sub_title {
  display: none;
}

.cat_slider {
  position: relative;
  z-index: 10;
  margin: 60px 0 50px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.cat_slider.showe_el {
  opacity: 1;
  -webkit-transform: translateY(0vw);
  transform: translateY(0vw);
}

.cat_slider .slick-arrow {
  position: absolute;
  top: 0;
  margin: auto;
  height: 100%;
  width: calc(50% - 380px);
  background-color: transparent;
  z-index: 15;
  border: none;
  pointer-events: none;
}

.cat_slider .slick-arrow span {
  display: block;
  width: 13px;
  height: 20px;
  background-image: url("../img/arrow_white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 170px;
}

.cat_slider .slick-next {
  right: 0;
}

.cat_slider .slick-next span {
  left: 35px;
}

.cat_slider .slick-prev {
  left: 0;
}

.cat_slider .slick-prev span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 35px;
}

.apo_col.cat_slider_el {
  max-width: 755px;
  width: 54vw;
  min-width: 680px;
  padding: 0;
  margin: 0 10px;
  background-color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.apo_col.cat_slider_el .apo_image {
  height: 425px;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.apo_col.cat_slider_el:hover .apo_image .link {
  opacity: 0;
}

.apo_col.cat_slider_el.slick-active .apo_image {
  opacity: 1;
  pointer-events: auto;
}

.apo_col.cat_slider_el .apo_name {
  font-size: 20px;
  color: #fff;
  width: calc(100% - 90px);
}

.apo_col.cat_slider_el .apo_name .text {
  height: auto;
  max-width: calc(100% - 50px);
  height: 30px;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apo_col.cat_slider_el .apo_name .arrow {
  padding-top: 2px;
}

.apo_col.cat_slider_el .apo_name .arrow svg {
  width: 10px;
}

.apo_col.cat_slider_el .apo_date {
  float: right;
  margin: 7px 0;
  width: 90px;
}

.apo_col.cat_slider_el .apo_cont {
  margin-bottom: 0;
}

@media screen and (min-width: 991px) {
  .apo_col.cat_slider_el:hover .apo_image {
    opacity: 1;
  }
}

.cat_slider_el_cont {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px 34px 0px;
  min-height: 130px;
  background-color: rgba(22, 22, 22, 0.7);
}

.cat_container {
  max-width: 980px;
}

.category_cont {
  position: relative;
  z-index: 10;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 8px 4px #000;
          box-shadow: 2px 2px 8px 4px #000;
  padding: 75px 7% 65px;
}

.category_cont .apo_col:nth-child(2n+1) {
  clear: left;
}

.cat_bot {
  text-align: center;
}

.cat_bot .load_icon svg rect {
  fill: #ed1f24;
}

.cat_button {
  font-weight: bold;
  text-transform: uppercase;
  color: #7f7f7f;
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 12px 0 5px;
}

.cat_button::before {
  content: "";
  width: calc(50% - 2px);
  top: 100%;
  left: 0;
  position: absolute;
  height: 11px;
  background-color: #7f7f7f;
}

.cat_button::after {
  content: "";
  width: calc(50% - 2px);
  top: 100%;
  right: 0;
  position: absolute;
  height: 11px;
  background-color: #7f7f7f;
}

.cat_button span {
  position: relative;
  display: block;
}

.cat_button span::before {
  content: "";
  width: calc(50% - 2px);
  top: 5px;
  left: 0;
  position: absolute;
  height: 11px;
  background-color: #7f7f7f;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cat_button span::after {
  content: "";
  width: calc(50% - 2px);
  top: 5px;
  right: 0;
  position: absolute;
  height: 11px;
  background-color: #7f7f7f;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
}

/*===============================
=            loading            =
===============================*/
.finder-select {
  float: left;
  width: 100%;
}

.blob {
  width: 2rem;
  height: 2rem;
  background: #E5E5E5;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 1rem);
  top: calc(50% - 1rem);
  -webkit-box-shadow: 0 0 1rem rgba(255, 255, 255, 0.15);
          box-shadow: 0 0 1rem rgba(255, 255, 255, 0.15);
}

.blob-2 {
  -webkit-animation: animate-to-2 1.5s infinite;
          animation: animate-to-2 1.5s infinite;
}

.blob-3 {
  -webkit-animation: animate-to-3 1.5s infinite;
          animation: animate-to-3 1.5s infinite;
}

.blob-1 {
  -webkit-animation: animate-to-1 1.5s infinite;
          animation: animate-to-1 1.5s infinite;
}

.blob-4 {
  -webkit-animation: animate-to-4 1.5s infinite;
          animation: animate-to-4 1.5s infinite;
}

.blob-0 {
  -webkit-animation: animate-to-0 1.5s infinite;
          animation: animate-to-0 1.5s infinite;
}

.blob-5 {
  -webkit-animation: animate-to-5 1.5s infinite;
          animation: animate-to-5 1.5s infinite;
}

@-webkit-keyframes animate-to-2 {
  25%,
  75% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-2 {
  25%,
  75% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@-webkit-keyframes animate-to-3 {
  25%,
  75% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-3 {
  25%,
  75% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@-webkit-keyframes animate-to-1 {
  25% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  50%,
  75% {
    -webkit-transform: translateX(-4.5rem) scale(0.6);
            transform: translateX(-4.5rem) scale(0.6);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-1 {
  25% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  50%,
  75% {
    -webkit-transform: translateX(-4.5rem) scale(0.6);
            transform: translateX(-4.5rem) scale(0.6);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@-webkit-keyframes animate-to-4 {
  25% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  50%,
  75% {
    -webkit-transform: translateX(4.5rem) scale(0.6);
            transform: translateX(4.5rem) scale(0.6);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-4 {
  25% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  50%,
  75% {
    -webkit-transform: translateX(4.5rem) scale(0.6);
            transform: translateX(4.5rem) scale(0.6);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@-webkit-keyframes animate-to-0 {
  25% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  50% {
    -webkit-transform: translateX(-4.5rem) scale(0.6);
            transform: translateX(-4.5rem) scale(0.6);
  }
  75% {
    -webkit-transform: translateX(-7.5rem) scale(0.5);
            transform: translateX(-7.5rem) scale(0.5);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-0 {
  25% {
    -webkit-transform: translateX(-1.5rem) scale(0.75);
            transform: translateX(-1.5rem) scale(0.75);
  }
  50% {
    -webkit-transform: translateX(-4.5rem) scale(0.6);
            transform: translateX(-4.5rem) scale(0.6);
  }
  75% {
    -webkit-transform: translateX(-7.5rem) scale(0.5);
            transform: translateX(-7.5rem) scale(0.5);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@-webkit-keyframes animate-to-5 {
  25% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  50% {
    -webkit-transform: translateX(4.5rem) scale(0.6);
            transform: translateX(4.5rem) scale(0.6);
  }
  75% {
    -webkit-transform: translateX(7.5rem) scale(0.5);
            transform: translateX(7.5rem) scale(0.5);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

@keyframes animate-to-5 {
  25% {
    -webkit-transform: translateX(1.5rem) scale(0.75);
            transform: translateX(1.5rem) scale(0.75);
  }
  50% {
    -webkit-transform: translateX(4.5rem) scale(0.6);
            transform: translateX(4.5rem) scale(0.6);
  }
  75% {
    -webkit-transform: translateX(7.5rem) scale(0.5);
            transform: translateX(7.5rem) scale(0.5);
  }
  95% {
    -webkit-transform: translateX(0rem) scale(1);
            transform: translateX(0rem) scale(1);
  }
}

#ngk_custom_loader_anim, .ngk_custom_loader_anim {
  display: none;
  position: relative;
  float: left;
  width: 100%;
}

#ngk_custom_loader_anim.loading, .ngk_custom_loader_anim.loading {
  display: block;
}

#ngk_custom_loader_anim svg, .ngk_custom_loader_anim svg {
  height: 50px;
}

/*=====  End of loading  ======*/
@media screen and (min-width: 991px) {
  .cat_button:hover span::before {
    top: 20px;
    opacity: 1;
  }
  .cat_button:hover span::after {
    top: 20px;
    opacity: 1;
  }
}

/*=====  End of All articles  ======*/
/*===================================
=            Single page            =
===================================*/
.single_page h1.title {
  color: #fff;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0;
  font-weight: bold;
}

.single_page .spage_content {
  background-color: #fff;
  width: 1060px;
  margin: 0 auto 30px;
  padding: 40px;
  max-width: 100%;
}

.single_page .spage_content #autoinfo-container iframe {
  height: 850px;
}

.single_page .spage_content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  position: relative;
}

.single_page .spage_content .wp-block-embed.is-type-video .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.single_page .spage_content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  .single_page .container {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .single_page h1.title {
    margin-bottom: 40px;
  }
  .single_page .spage_content {
    padding: 0;
  }
}

/*=====  End of Single page  ======*/
/*=============================
=            Majka            =
=============================*/
/*=====  End of Majka  ======*/
@media screen and (max-width: 1600px) {
  .discover_menu_l {
    height: 555px;
    left: calc(-415px - 50px);
    padding: 54px 50px 51px 55px;
    width: 413px;
  }
  .discover_menu_r {
    height: 555px;
    right: calc(-100% + 350px);
    width: calc(100% - 413px);
  }
  .discover_menu_box ul a {
    padding: 4px 0;
  }
  .product_menu_l {
    width: 52.5%;
    left: calc(-55% - 50px);
  }
  .product_menu_list {
    padding-left: 7%;
  }
  .product_menu_el .element {
    padding-left: 18%;
    padding-right: 18%;
  }
  .product_menu_r {
    margin-right: 0;
    width: 44%;
    padding-right: 20px;
  }
  .footer_menu ul a {
    padding: 9px 0;
  }
  .footer_menu ul {
    font-size: 11.5px;
    line-height: 13px;
  }
  /*============================
	=            Home            =
	============================*/
  .hp_banner_text {
    top: 252px;
  }
  .hp_gp_container {
    width: 90%;
  }
  .hp_gp {
    padding: 0 14px;
  }
  .hp_gp_row {
    margin: 0 -14px;
  }
  .hp_gp_img {
    height: 270px;
  }
  .hp_slider_all {
    padding: 110px 0 0;
  }
  .hp_slider_text {
    float: left;
    padding: 30px 5.3% 0;
    width: 44%;
  }
  .hp_slider_img {
    width: 56%;
  }
  .hp_white_block {
    padding: 39px 2.5% 52px;
  }
  .hp_gallery {
    width: 67%;
  }
  .hp_articles {
    padding-left: 3%;
    width: 33%;
  }
  /*=====  End of Home  ======*/
  .single_event_cont {
    padding: 0 3% 0 4%;
  }
  .single_event_cont .title {
    font-size: 25px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 1400px) {
  .product_menu_el .img::after {
    bottom: -40px;
  }
}

@media screen and (max-width: 991px) {
  a[data-gallery="multiimages"] {
    background-color: transparent;
  }
  .click_size {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .click_size.resize {
    -webkit-transform: scale(0.85) !important;
    transform: scale(0.85) !important;
  }
  .wrapper_content {
    padding: 0 24px;
  }
  main {
    margin-top: 80px;
  }
  .header {
    font-size: 12px;
    padding: 0 24px;
  }
  .header > .row {
    height: 80px;
    padding-top: 16px;
  }
  .product_menu_l {
    display: block;
    width: 100%;
    float: left;
    left: 0;
    top: -100vh;
    overflow: hidden;
  }
  .header_disc_but {
    min-width: 100px;
    padding-right: 40px;
  }
  .header_prod_but {
    padding-right: 40px;
  }
  .header_prod_but::after {
    width: 12px;
    height: 12px;
  }
  .web_logo {
    width: 140px;
  }
  .header_menu {
    top: 100%;
    overflow: auto;
    padding-top: 0;
  }
  .header_menu.open .header_menu_left {
    top: 0;
  }
  .header_menu.open .menu_box_anim {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .menu_box_anim {
    -webkit-transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.6s;
    transition: all 0.5s cubic-bezier(0.29, 0.78, 0.4, 1.01) 0.6s;
    opacity: 0;
    -webkit-transform: translateY(-170px);
    transform: translateY(-170px);
  }
  .discover_menu_l {
    height: auto;
    left: 0;
    width: 100%;
    top: -100vh;
    padding: 76px 44px 41px 55px;
  }
  .discover_menu_box {
    float: none;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 62px;
  }
  .discover_menu_box.bot {
    border-top: none;
    padding-top: 0;
    padding-bottom: 62px;
  }
  .discover_menu_box.art {
    padding-bottom: 62px;
  }
  .discover_menu_box ul {
    font-size: 16px;
    font-weight: 600;
  }
  .product_menu_list {
    display: block;
    float: left;
    width: 100%;
    font-size: 16px;
    padding: 16px 10px 42px 55px;
  }
  .product_menu_list .active::after {
    display: none;
  }
  .product_menu_list .min_img {
    width: 50px;
    height: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .product_menu_list .title {
    padding-left: 84px;
    max-width: 280px;
  }
  .product_menu_list .element {
    cursor: pointer;
    float: left;
    height: 98px;
    padding: 15px 0;
    width: 50%;
  }
  .product_menu_list .element.accessories .title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #ed1f24;
    border-bottom: 3px solid #ed1f24;
    position: absolute;
    right: -25px;
    top: 7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .product_menu_r {
    float: left;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #161616;
  }
  .product_menu_acc_mobil {
    position: absolute;
    left: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: #161616;
  }
  .product_menu_acc_mobil.open {
    left: 0;
  }
  .product_menu_acc_mobil .top {
    width: 100%;
    background-color: #212121;
    height: 60px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    position: relative;
  }
  .product_menu_acc_mobil .top::after {
    content: "";
    width: 24px;
    height: 24px;
    background-color: #212121;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .product_menu_acc_mobil .top .t {
    color: #ed1f24;
    font-size: 20px;
    display: inline-block;
    padding-top: 14px;
  }
  .product_menu_acc_mobil .top .back {
    position: absolute;
    width: 150px;
    left: 0;
    top: 0;
    bottom: 0;
    color: #fff;
    font-size: 12px;
    padding-top: 20px;
    cursor: pointer;
  }
  .product_menu_acc_mobil .top .back span {
    position: relative;
    vertical-align: middle;
    padding-left: 10px;
  }
  .product_menu_acc_mobil .top .back svg {
    width: 8px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    vertical-align: middle;
    fill: #ed1f24;
  }
  .product_menu_acc_mobil ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 40px;
  }
  .product_menu_acc_mobil ul li {
    float: left;
    width: 100%;
  }
  .product_menu_acc_mobil ul .all {
    width: 210px;
    text-align: left;
    display: inline-block;
    height: 70px;
  }
  .product_menu_acc_mobil ul .all span {
    position: relative;
    display: block;
    float: left;
    width: calc(100% - 50px);
    padding-left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .product_menu_acc_mobil ul .min_img {
    float: left;
    width: 50px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .product_menu_acc_mobil ul .min_img::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -7px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 8px 1px #000;
    box-shadow: 0 0 8px 1px #000;
  }
  .product_menu_acc_mobil ul .min_img img {
    max-width: 100%;
  }
  .product_menu_acc_mobil ul a {
    color: #fff;
    display: block;
    text-align: center;
  }
  .part_finder_open .wrapper_content {
    left: -508px;
  }
  .part_finder_open .pt_menu_bg {
    left: -486px;
  }
  .part_finder_open .header {
    left: -508px;
  }
  .part_finder {
    right: -530px;
    width: 530px;
  }
  .part_finder_content {
    padding: 74px 65px 50px 57px;
    width: 510px;
  }
  .part_finder_1_list {
    padding: 35px 20px 0px;
  }
  .part_finder_1_list .active::before {
    top: 0;
  }
  .part_finder_2 .part_finder_content {
    padding: 90px 50px 50px 45px;
  }
  .part_finder_2_icon {
    padding-top: 15px;
  }
  .part_finder_2_el {
    padding-bottom: 30px;
  }
  .part_finder_2_el .title {
    padding-top: 10px;
  }
  .part_finder_2_el:active svg {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.85) !important;
    transform: scale(0.85) !important;
  }
  .part_finder_3 .part_finder_content, .part_finder_3-2 .part_finder_content {
    padding: 89px 92px 55px 68px;
    min-height: 100vh;
  }
  .part_finder_all .selectboxit-container {
    margin-bottom: 26px;
  }
  .part_finder_3_select {
    padding-top: 35px;
  }
  .part_finder_4_top {
    padding: 15px 0px 20px;
  }
  .part_finder_4_top_det {
    padding: 0px 0 0 30px;
  }
  .part_finder_4_results_all {
    width: 510px;
    padding: 0 30px 0 0;
  }
  .part_finder_4 .part_finder_content {
    padding: 91px 30px 10px 0px;
  }
  .part_finder_4 .part_finder_title {
    padding-bottom: 25px;
  }
  .part_finder_4_results .part_finder_content {
    padding-top: 0;
  }
  .part_finder_4_res_top .right svg {
    bottom: auto;
    left: auto;
    opacity: 1;
    right: 22px;
    top: 5px;
    width: 15px;
  }
  .part_finder_4_res_start_new {
    padding: 10px 30px 15px 0px;
  }
  .part_finder_4_slider {
    background-color: #fff;
    right: calc(50vw - 50% + 25px);
    top: 50% !important;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .part_finder_4_slider.open {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .part_finder_4_slider_this {
    display: none;
  }
  .part_finder_4_slider_cont {
    z-index: 5;
    background-color: #fff;
  }
  .pf_slider_over {
    background: rgba(22, 22, 22, 0.7);
    height: 200vh;
    left: -80vw;
    position: absolute;
    top: -80vh;
    width: 200vw;
    z-index: 1;
  }
  /*============================
	=            Home            =
	============================*/
  .hp_banner {
    height: 500px;
  }
  .hp_banner::after {
    content: "";
    width: 100%;
    height: 300px;
    background-color: #161616;
    background-image: -webkit-gradient(linear,left bottom, left top,from(#161616), color-stop(10%, #161616), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top,#161616 0%, #161616 10%, rgba(22, 22, 22, 0) 100%);
    background-color: transparent;
  }
  .hp_banner_text {
    top: 141px;
  }
  .hp_banner_text .all::before {
    width: 5%;
    -webkit-animation: 11s linear 0s normal forwards 1 b_text1_move_l;
    animation: 11s linear 0s normal forwards 1 b_text1_move_l;
  }
  .hp_banner_text .all::after {
    width: calc(93% - 280px);
    -webkit-animation: 9s linear 0s normal forwards 1 b_text2_move_l;
    animation: 9s linear 0s normal forwards 1 b_text2_move_l;
  }
  .hp_banner_text .text1 {
    left: 5%;
    -webkit-animation: 11s linear 0s normal forwards 1 b_text1_move;
    animation: 11s linear 0s normal forwards 1 b_text1_move;
  }
  .hp_banner_text .text2 {
    left: 7%;
    -webkit-animation: 9s linear 0s normal forwards 1 b_text2_move;
    animation: 9s linear 0s normal forwards 1 b_text2_move;
  }
  @-webkit-keyframes b_text1_move {
    0% {
      left: 5%;
    }
    100% {
      left: calc(50% - 145px);
    }
  }
  @keyframes b_text1_move {
    0% {
      left: 5%;
    }
    100% {
      left: calc(50% - 145px);
    }
  }
  @-webkit-keyframes b_text1_move_l {
    0% {
      width: 5%;
    }
    100% {
      width: calc(50% - 145px);
    }
  }
  @keyframes b_text1_move_l {
    0% {
      width: 5%;
    }
    100% {
      width: calc(50% - 145px);
    }
  }
  @-webkit-keyframes b_text2_move {
    0% {
      left: 7%;
    }
    100% {
      left: calc(50% - 120px);
    }
  }
  @keyframes b_text2_move {
    0% {
      left: 7%;
    }
    100% {
      left: calc(50% - 120px);
    }
  }
  @-webkit-keyframes b_text2_move_l {
    0% {
      width: calc(93% - 280px);
    }
    100% {
      width: calc(50% - 160px);
    }
  }
  @keyframes b_text2_move_l {
    0% {
      width: calc(93% - 280px);
    }
    100% {
      width: calc(50% - 160px);
    }
  }
  .hp_gp_row {
    margin: 0;
  }
  .hp_gp_container.container {
    width: 100%;
  }
  .hp_gp_cont .hp_gp_img .bg {
    opacity: 1;
  }
  .hp_gp {
    padding: 0;
    margin: 0;
  }
  .hp_gp_top .sub span:first-word {
    color: red;
  }
  .hp_slider {
    margin: 0;
  }
  .hp_slider_container.container {
    width: 100%;
  }
  .hp_slider {
    margin: 0 -24px;
  }
  .hp_s_all {
    margin-top: 0;
  }
  .hp_slider_all {
    padding-top: 0px;
  }
  .hp_slider_all .slick-arrow {
    width: 60px;
    height: 100%;
    top: 0;
  }
  .hp_slider_all .slick-next {
    left: auto;
    right: 0;
  }
  .hp_slider_bg::before {
    content: "";
    width: 100%;
    height: 200px;
    background-color: #161616;
    background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #161616), color-stop(20%, #161616), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to bottom,#161616 0, #161616 20%, rgba(22, 22, 22, 0) 100%);
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .hp_slider_bg::after {
    content: "";
    width: 100%;
    height: 200px;
    background-color: #161616;
    background-image: -webkit-gradient(linear,left bottom, left top,color-stop(0, #161616), color-stop(20%, #161616), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top,#161616 0, #161616 20%, rgba(22, 22, 22, 0) 100%);
    background-color: transparent;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
  }
  .hp_slider_bg .bg {
    background-size: auto 100%;
    background-position: 80% center;
  }
  .hp_slider_bg .bg::after {
    content: "";
    width: 70%;
    height: 100%;
    background-color: #161616;
    background-image: -webkit-gradient(linear,left top, right top,color-stop(0, #161616), color-stop(50%, #161616), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to right,#161616 0, #161616 50%, rgba(22, 22, 22, 0) 100%);
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
  }
  .hp_slider_img {
    width: 54%;
    padding: 0px 50px;
    height: 290px;
  }
  .hp_slider_text {
    padding: 30px 0 0 95px;
    width: 46%;
  }
  .hp_slider_text .text {
    height: 125px;
    overflow: hidden;
  }
  .hp_slider_el {
    padding-top: 120px;
  }
  .hp_slider_dots {
    padding-right: 170px;
    bottom: 140px;
    text-align: right;
  }
  .hp_slider_dots .slick-dots li {
    padding: 0 5px;
  }
  .hp_slider_dots .slick-dots button {
    width: 12px;
    height: 12px;
  }
  .hp_wb_cont.container {
    width: 100%;
  }
  .hp_white_block {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
  }
  .hp_gallery {
    margin-left: 25px;
    width: calc(100% - 50px);
    background-color: #fff;
    padding: 29px 23px 23px;
  }
  .hp_gallery_big {
    margin-left: -10px;
    padding-top: -10px;
    width: calc(100% + 20px);
  }
  .hp_gallery_big a {
    display: block;
    float: left;
    padding: 10px;
  }
  .hp_gallery_big a:nth-child(10n + 1) {
    width: 66%;
  }
  .hp_gallery_big a:nth-child(10n + 1) .element {
    height: 254px;
  }
  .hp_gallery_big a:nth-child(10n + 2), .hp_gallery_big a:nth-child(10n + 3) {
    width: 34%;
    float: right;
  }
  .hp_gallery_big a:nth-child(10n + 2) .element, .hp_gallery_big a:nth-child(10n + 3) .element {
    height: 117px;
  }
  .hp_gallery_big a:nth-child(10n + 4), .hp_gallery_big a:nth-child(10n + 5), .hp_gallery_big a:nth-child(10n + 9), .hp_gallery_big a:nth-child(10n + 10) {
    width: 50%;
  }
  .hp_gallery_big a:nth-child(10n + 4) .element, .hp_gallery_big a:nth-child(10n + 5) .element, .hp_gallery_big a:nth-child(10n + 9) .element, .hp_gallery_big a:nth-child(10n + 10) .element {
    height: 200px;
  }
  .hp_gallery_big a:nth-child(10n + 6), .hp_gallery_big a:nth-child(10n + 8) {
    width: 34%;
  }
  .hp_gallery_big a:nth-child(10n + 6) .element, .hp_gallery_big a:nth-child(10n + 8) .element {
    height: 117px;
  }
  .hp_gallery_big a:nth-child(10n + 7) {
    width: 66%;
    float: right;
  }
  .hp_gallery_big a:nth-child(10n + 7) .element {
    height: 254px;
  }
  .hp_articles {
    padding-left: 0;
    padding-top: 64px;
    width: 100%;
  }
  .hp_articles .hp_gallery_top a.view {
    color: #fff;
  }
  .hp_articles_cont {
    margin: 0 -12px;
  }
  .hp_articles_cont .apo_col {
    padding: 0 12px;
  }
  .hp_articles_cont .apo_col:first-child {
    margin-bottom: 0;
  }
  .hp_articles_cont .apo_bottom {
    padding-left: 0;
    padding-right: 0;
  }
  section .sopnsors_wrap {
    padding: 27px 0px 40px;
  }
  section .sopnsors_labels {
    padding: 0 27px 34px;
  }
  section #logoParade div.scrollableArea li {
    padding: 0 28px;
  }
  /*=====  End of Home  ======*/
  /*==============================
	=            Footer            =
	==============================*/
  .footer {
    padding-top: 53px;
    padding-bottom: 60px;
  }
  .footer .discover_menu_box ul {
    font-size: 11.5px;
  }
  .container_footer {
    width: 91%;
  }
  .footer_menu {
    float: left;
    padding-bottom: 0;
    text-transform: uppercase;
    width: 205px;
  }
  .footer_menu .title {
    padding-bottom: 12px;
  }
  .footer_menu.two_col {
    width: 410px;
  }
  .footer_menu ul .cat_id_782 a {
    padding-right: 30%;
  }
  .footer_bot {
    float: left;
    font-size: 12px;
    position: relative;
    text-align: left;
    padding-top: 69px;
    width: 100%;
  }
  .footer_bot .text_1 {
    float: left;
    width: 100%;
    padding-bottom: 13px;
  }
  .footer_logo {
    float: left;
  }
  .footer_logo svg {
    margin: 0 0 7px -6px;
  }
  /*=====  End of Footer  ======*/
  /*===============================
	=            History            =
	===============================*/
  .container {
    width: 93.5%;
  }
  .pt_menu_title {
    font-size: 30px;
    padding: 47px 0 56px;
  }
  .pt_menu_sub_wrap {
    position: relative;
  }
  .pt_menu_sub {
    padding-left: 0;
    padding-right: 0;
  }
  .pt_menu_sub::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #161616;
    background-image: -webkit-gradient(linear,left top, right top,from(#161616), color-stop(10%, rgba(22, 22, 22, 0)), color-stop(90%, rgba(22, 22, 22, 0)), to(#161616));
    background-image: linear-gradient(to right,#161616 0%, rgba(22, 22, 22, 0) 10%, rgba(22, 22, 22, 0) 90%, #161616 100%);
    pointer-events: none;
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 50;
  }
  .pt_menu_sub.fixed_menu.active {
    width: calc(100% - 48px);
    left: 24px;
    top: 50px;
  }
  .pt_menu_sub li {
    width: 150px;
    height: 40px;
  }
  .pt_menu_sub li a, .pt_menu_sub li .el_oveflow {
    width: 150px;
    height: 40px;
  }
  .pt_menu_sub .slick-track {
    left: 0;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
  }
  .pt_menu_sub .slick-track.left {
    left: calc(-50% + 25px);
  }
  .pt_menu_bg {
    width: calc(100% - 48px);
    left: 24px;
  }
  .pt_menu_sub_title {
    font-size: 20px;
    padding: 51px 0 67px;
  }
  .hist_content {
    padding: 35px 28px 2px;
    margin-bottom: 38px;
  }
  .hist_video .video_wrap iframe {
    height: 350px;
  }
  .history_line {
    margin: 0 -28px;
  }
  .history_line::before {
    height: calc(100% - 25px);
  }
  .history_event {
    padding: 0 28px 25px;
  }
  .history_event .text {
    font-size: 14px;
    line-height: 24px;
  }
  .history_event .cont {
    padding: 15px 26px 19px;
  }
  /*=====  End of History  ======*/
  /*=================================
	=            Worldwide            =
	=================================*/
  .pt_menu_sub_title .sub {
    padding-top: 9px;
  }
  .ww_page .pt_menu_sub_title {
    padding-bottom: 46px;
  }
  .ww_content {
    margin: 0 -20px;
  }
  .ww_offices {
    padding: 30px 27px 37px;
    margin: 97px 0px 26px;
  }
  .ww_offices_single {
    float: left;
    padding: 12px;
    width: 50%;
  }
  .ww_offices_single .img {
    height: 210px;
  }
  .ww_offices_single .link {
    opacity: 1;
    background-color: transparent;
    text-align: center;
  }
  .ww_offices_single .link span {
    top: 50%;
    width: 144px;
    height: 41px;
    display: inline-block;
    border: 2px solid #ed1f24;
    background-color: #161616;
    text-transform: none;
    font-size: 12.5px;
    padding-top: 8px;
  }
  .ww_offices_single .link span svg, .ww_offices_single .link span br {
    display: none;
  }
  .ww_offices_all {
    margin: 0 -12px;
  }
  /*=====  End of Worldwide  ======*/
  /*===============================
	=            Gallery            =
	===============================*/
  .gallery_content {
    left: 3.5%;
    padding: 28px 23px 30px;
    width: 93%;
  }
  .gallery_select {
    padding-bottom: 20px;
    text-align: center;
  }
  .gallery_select .selectboxit-container {
    display: none;
  }
  .gallery_select select {
    display: inline-block !important;
    width: 180px;
    border: 2px solid #d7d7d7;
    background-color: transparent;
    border-radius: 0;
    height: 48px;
    font-size: 14px;
    padding: 0px 40px 0px 22px;
  }
  .gallery_select .select_wrap {
    display: inline-block;
    position: relative;
  }
  .gallery_select .select_wrap::after {
    content: "";
    background-image: url("../img/arrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    bottom: 0;
    display: block;
    height: 12px;
    margin: auto;
    position: absolute;
    right: 22px;
    top: 4px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 8px;
    z-index: 10;
    pointer-events: none;
  }
  .gallery_select .select_wrap::before {
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    position: absolute;
    background-color: #fff;
    border: 2px solid #d7d7d7;
    border-left: none;
    z-index: 8;
    pointer-events: none;
  }
  .gallery_images {
    margin: 0 -11px;
  }
  .gallery_img {
    padding: 11px;
  }
  .gallery_img:nth-child(11n+1) {
    width: 67%;
    margin: 0;
    float: left;
  }
  .gallery_img:nth-child(11n+1) .element {
    height: 275px;
  }
  .gallery_img:nth-child(11n+2), .gallery_img:nth-child(11n+3), .gallery_img:nth-child(11n+6) {
    width: 33%;
    float: right;
    margin: 0;
  }
  .gallery_img:nth-child(11n+2) .element, .gallery_img:nth-child(11n+3) .element, .gallery_img:nth-child(11n+6) .element {
    height: 180px;
  }
  .gallery_img:nth-child(11n+3) {
    width: 33%;
    float: right;
    margin: 0;
  }
  .gallery_img:nth-child(11n+3) .element {
    height: 148px;
  }
  .gallery_img:nth-child(11n+4), .gallery_img:nth-child(11n+5) {
    width: 33.5%;
    float: left;
    margin: 0;
  }
  .gallery_img:nth-child(11n+4) .element, .gallery_img:nth-child(11n+5) .element {
    height: 255px;
  }
  .gallery_img:nth-child(11n+7) {
    width: 33.5%;
    margin: 0;
    float: left;
  }
  .gallery_img:nth-child(11n+7) .element {
    height: 270px;
  }
  .gallery_img:nth-child(11n+8) {
    width: 66.5%;
    margin: 0;
    float: left;
  }
  .gallery_img:nth-child(11n+8) .element {
    height: 270px;
  }
  .gallery_img:nth-child(11n+9), .gallery_img:nth-child(11n+10), .gallery_img:nth-child(11n) {
    width: 33.3%;
    margin: 0;
    float: left;
  }
  .gallery_img:nth-child(11n+9) .element, .gallery_img:nth-child(11n+10) .element, .gallery_img:nth-child(11n) .element {
    height: 125px;
  }
  .gallery_button {
    padding: 20px 0 0;
  }
  .gallery_button .slanting_button {
    margin: 0;
  }
  .ekko-lightbox .modal_close {
    right: 0;
    top: 0;
  }
  .ekko-lightbox .modal-content {
    max-width: 87vw;
  }
  .ekko-lightbox .modal-dialog {
    margin-top: 80px;
  }
  .ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-left {
    left: -50px;
    background-position: 80% center;
  }
  .ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-right {
    width: -50px;
    background-position: 20% center;
  }
  /*=====  End of Gallery  ======*/
  /*===========================
	=            FAQ            =
	===========================*/
  .faq_page .container {
    width: 635px;
  }
  .faq_page_search {
    padding: 46px 42px 78px;
  }
  .faq_cont {
    margin-bottom: 53px;
    padding: 20px 42px 29px;
  }
  /*=====  End of FAQ  ======*/
  /*====================================
	=            Sponsorships            =
	====================================*/
  .sp_cat_head {
    padding: 40px 27px 50px;
  }
  .sp_cat_head .left {
    width: 47%;
  }
  .sp_cat_head .right {
    width: 53%;
  }
  .sp_cat_body {
    padding: 22px 19px 17px;
    margin-top: 0;
  }
  .sp_cat_single_title {
    font-size: 18px;
    padding: 7px 0;
  }
  .sp_sponsor_single {
    margin: 8px;
    max-width: calc(25% - 16px);
  }
  .sp_sponsor_single .logo {
    height: 70px;
  }
  .sp_sponsor_single .title {
    height: 50px;
  }
  .sp_cat_head_38 .left {
    width: 52%;
  }
  .sp_cat_head_38 .right {
    width: 48%;
    padding-left: 18px;
  }
  .sponsorships_container {
    padding-bottom: 24px;
  }
  /*=====  End of Sponsorships  ======*/
  /*=======================================
	=            Events calendar            =
	=======================================*/
  .ec_page .pt_menu_sub_title {
    padding: 50px 0 25px;
  }
  .ec_nav {
    padding-bottom: 39px;
  }
  .ec_container {
    padding-bottom: 8px;
  }
  .ec_list, .ec_single_all {
    padding: 30px 25px;
  }
  .single_event {
    padding-bottom: 24px;
  }
  .single_event_top {
    height: 83px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    position: relative;
  }
  .single_event_date {
    width: 95px;
    border-radius: 5px;
    padding-top: 16px;
  }
  .single_event_date::after {
    width: 14px;
    height: 14px;
    right: -7px;
  }
  .single_event_date .day {
    font-size: 27px;
    padding-bottom: 3px;
  }
  .single_event_date .month {
    font-size: 11px;
  }
  .single_event_cont {
    width: calc(100% - 95px);
    padding: 0 140px 0 5.8%;
  }
  .single_event_cont .title {
    font-size: 17px;
  }
  .single_event_cont .date {
    font-size: 11px;
  }
  .single_event_map_add_calendar {
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    width: 137px;
  }
  .single_event_map_add_calendar svg {
    width: 21px;
    float: left;
  }
  .single_event_map_add_calendar .all {
    top: 31px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    padding-left: 12px;
  }
  .single_event_map_add_calendar .all span {
    float: left;
    width: calc(100% - 21px);
    margin-top: -3px;
    padding: 0 10px;
  }
  .single_event_more {
    background-color: #f0f0f0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    bottom: 0;
    height: 83px;
    padding-top: 0px;
    right: 0;
    width: 140px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .single_event_more span {
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .single_event_more.open {
    height: 70px;
  }
  .single_event_more.open .t2 {
    display: inline-block;
  }
  .single_event_bot .all {
    margin-left: 95px;
    width: calc(100% - 95px);
    background-color: transparent;
  }
  .single_event_bot .cont {
    width: 100%;
    padding: 0 26px 27px;
    margin-bottom: 45px;
    background-color: #f0f0f0;
  }
  .single_event_map_info {
    width: 100%;
    padding: 14px 23px 28px;
    margin-top: 13px;
    position: relative;
  }
  .single_event_map_info svg {
    margin-right: 9px;
    width: 17px;
  }
  .single_event_map_info .title {
    font-size: 13px;
    padding-bottom: 7px;
  }
  .single_event_map_info .address {
    font-size: 12px;
    padding-left: 0;
  }
  .single_event_map_info .link {
    padding: 9px 24px;
    position: absolute;
    right: 0;
    top: 14px;
  }
  .ec_datapicker {
    padding-bottom: 30px;
  }
  .ec_data .ui-datepicker-header {
    margin-bottom: 14px;
    padding-bottom: 9px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all {
    font-size: 13px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all span {
    padding: 0 13px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all span::before {
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    width: 6px;
    height: 6px;
    top: 8px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all.ui-datepicker-next span {
    padding: 0 13px;
  }
  .ec_data .ui-datepicker-title {
    font-size: 17px;
  }
  .ec_data .ui-datepicker {
    padding: 13px 24px;
  }
  .ec_data .ui-datepicker-calendar {
    font-size: 16px;
    border-spacing: 2px;
  }
  .ec_data .ui-datepicker-calendar a {
    height: 58px;
    padding-top: 15px;
  }
  .ec_data .ui-datepicker-calendar a::before {
    width: 48px;
    height: 48px;
  }
  /*=====  End of Events calendar  ======*/
  /*===============================
	=            Product            =
	===============================*/
  .product_page .container {
    width: 85%;
  }
  .pp_boxes_sec {
    padding-bottom: 9px;
  }
  .pp_box_content .text h1 {
    margin: 33px 0;
  }
  .pp_box_content .text h2 {
    margin: 31px 0;
  }
  .pp_box_content .text h3 {
    margin: 20px 0;
  }
  .pp_box_content .text h4 {
    margin: 20px 0;
  }
  .pp_box_content.right {
    direction: rtl;
  }
  .pp_box_content.right .text {
    direction: ltr;
  }
  .pp_box1_content {
    padding: 28px 27px 46px;
  }
  .pp_box1_content .img {
    width: 43%;
    padding-right: 10px;
  }
  .pp_box1_content .text {
    width: 57%;
    padding: 0px 28px 0px 12px;
  }
  .pp_box2 {
    padding-top: 46px;
  }
  .pp_box2 .container {
    width: 93%;
  }
  .pp_box2_content .text {
    padding-left: 0;
    width: 54%;
  }
  .pp_box2_content .text .only_text {
    width: 79%;
  }
  .pp_box2_content .text .title {
    width: 140%;
  }
  .pp_box2_content .img {
    width: 46%;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .pp_box2_content .img.ve_bot {
    vertical-align: middle;
  }
  .pp_box2_content.right .text {
    padding-right: 0;
  }
  .pp_box3_el .img {
    display: block;
    padding: 23px 0 0;
    width: 100%;
  }
  .pp_box3_el .content_text {
    display: block;
    padding: 15px 35px 20px;
    width: 100%;
  }
  .pp_box4 .container {
    width: 92.6%;
  }
  .pp_box4_content {
    padding: 10px 27px;
  }
  .pp_box5_cont {
    display: block;
  }
  .threesixty .custom_amimation {
    padding-top: 40px;
    width: 200px;
    height: 200px;
    font-size: 16px;
  }
  .threesixty .custom_amimation .ngk_hand {
    bottom: 25px;
  }
  /*=====  End of Product  ======*/
  /*===================================
	=            All article            =
	===================================*/
  .cat_slider {
    margin: 60px 0 42px;
  }
  .cat_slider .slick-arrow {
    width: calc(50% - 250px);
  }
  .cat_slider .slick-arrow span {
    top: 115px;
  }
  .cat_slider .slick-next span {
    left: 65px;
  }
  .cat_slider .slick-prev span {
    right: 65px;
  }
  .apo_col.cat_slider_el {
    background-color: #000;
    margin: 0;
    max-width: 500px;
    min-width: 500px;
    padding: 0;
    width: 500px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .apo_col.cat_slider_el .apo_image {
    height: 290px;
  }
  .apo_col.cat_slider_el .apo_name {
    font-size: 18px;
    height: 28px;
    overflow: hidden;
  }
  .apo_col.cat_slider_el .apo_name .arrow {
    vertical-align: top;
  }
  .apo_col.cat_slider_el .apo_cont {
    font-size: 12px;
    height: 40px;
    overflow: hidden;
  }
  .apo_col.cat_slider_el .apo_title_line {
    margin-bottom: -1px;
  }
  .apo_col.cat_slider_el.slick-active {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .cat_slider_el_cont {
    min-height: 105px;
    padding: 4px 27px 0;
  }
  .cat_container {
    width: 100%;
    padding-bottom: 11px;
  }
  .category_cont {
    padding: 34px 23px 20px;
  }
  .category_cont .apo_row {
    margin: 0 -7px;
  }
  .category_cont .apo_col {
    padding: 0 7px;
  }
  .category_cont .apo_image {
    height: 185px;
  }
  .category_cont .apo_cont {
    margin-bottom: 32px;
    width: 100%;
  }
  .cat_bot {
    padding: 0 0 4px;
    position: relative;
    top: -19px;
  }
  /*=====  End of All article  ======*/
}

@media screen and (max-width: 767px) {
  .wrapper_content {
    padding: 0 14px;
  }
  main {
    margin-top: 58px;
  }
  .header {
    font-size: 14px;
    padding: 0 14px;
  }
  .header > .row {
    height: 58px;
    padding-top: 4px;
  }
  .header_menu {
    top: 58px;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }
  .product_menu_l {
    background-color: #212121;
    top: -800px;
  }
  .product_menu_list .element {
    width: 100%;
    height: 60px;
  }
  .product_menu_acc_mobil .top {
    height: 80px;
    text-align: right;
    padding: 0 28px;
  }
  .product_menu_acc_mobil .top .t {
    padding-top: 25px;
  }
  .product_menu_acc_mobil .top .back {
    padding-top: 30px;
    padding-left: 28px;
    text-align: left;
  }
  .product_menu_acc_mobil ul {
    padding-top: 44px;
  }
  .product_menu_acc_mobil ul .all {
    height: 60px;
  }
  .pf_button_open, .part_finder_close {
    position: fixed;
    left: -100%;
    bottom: 0;
    width: 100%;
    background-color: #ed1f24;
    z-index: 998;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .pf_button_open::before, .part_finder_close::before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #ed1f24;
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .pf_button_open .slanting_button, .part_finder_close .slanting_button {
    width: 100%;
    height: 47px;
    font-size: 15.5px;
    margin-right: 0px;
    padding-right: 0px;
    position: relative;
    overflow: hidden;
  }
  .pf_button_open .slanting_button .bg, .part_finder_close .slanting_button .bg {
    display: none;
  }
  .pf_button_open .slanting_button .el_img, .part_finder_close .slanting_button .el_img {
    height: 14px;
    left: 0;
    margin: auto;
    right: 0;
    -webkit-transform: translateX(80vw);
    transform: translateX(80vw);
    width: 70px;
    -webkit-transition: all 0.2s ease-in-out 0.3s;
    transition: all 0.2s ease-in-out 0.3s;
  }
  .pf_button_open .slanting_button .text, .part_finder_close .slanting_button .text {
    -webkit-transition: all 0.2s ease-in-out 0.3s;
    transition: all 0.2s ease-in-out 0.3s;
    padding-right: 75px;
    left: -80vw;
  }
  .pf_button_open.showe_el, .part_finder_close.showe_el {
    left: 0%;
  }
  .pf_button_open.showe_el .slanting_button .el_img, .part_finder_close.showe_el .slanting_button .el_img {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  .pf_button_open.showe_el .slanting_button .text, .part_finder_close.showe_el .slanting_button .text {
    left: 0vw;
  }
  .part_finder_close {
    position: relative;
    left: 0%;
  }
  .part_finder_close .slanting_button .el_img {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }
  .part_finder_close .slanting_button .text {
    left: 0vw;
    padding-right: 50px;
  }
  .part_finder_close::before {
    display: none;
  }
  .part_finder_open .wrapper_content {
    left: 0;
  }
  .part_finder_open .pt_menu_bg {
    left: 14px;
  }
  .part_finder_open .header {
    left: 0;
  }
  .part_finder_open .part_finder {
    top: 58px;
  }
  .part_finder {
    left: 0;
    right: 0;
    top: 100%;
    width: 100vw;
    height: calc(100vh - 58px);
  }
  .part_finder_content {
    padding: 48px 40px;
    width: 100vw;
  }
  .part_finder_block {
    max-height: calc(100vh - 105px);
    top: 47px;
  }
  .part_finder_1 {
    top: 0;
  }
  .part_finder_1_list {
    padding: 8px 20px 8px 45px;
  }
  .part_finder_1_list .el {
    padding-left: 13px;
  }
  .part_finder_1_list .active::before {
    top: 0;
  }
  .part_finder_2 .part_finder_content {
    padding: 95px 60px 50px;
  }
  .part_finder_2_icon {
    padding-top: 5px;
  }
  .part_finder_2_el {
    padding-bottom: 4px;
  }
  .part_finder_2_el .title {
    line-height: 16px;
    padding-top: 6px;
  }
  .part_finder_2_el svg {
    width: 96px;
    height: 96px;
  }
  .part_finder_3 .part_finder_content, .part_finder_3-2 .part_finder_content {
    padding: 95px 31px 55px;
    min-height: calc(100vh - 105px);
  }
  .finder-select {
    position: relative;
    margin-bottom: 20px;
  }
  .finder-select::before {
    content: "";
    width: 42px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #393939;
    position: absolute;
    z-index: 15px;
    border-radius: 12px;
  }
  .finder-select::after {
    content: "";
    background-image: url("../img/arrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    bottom: 0;
    display: block;
    height: 16px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 5px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 11px;
    z-index: 20;
  }
  .finder-select select {
    width: 100%;
    height: 55px;
    background-color: #393939;
    border: none;
    border-radius: 12px;
    padding: 5px 42px;
    position: relative;
    display: block !important;
    text-transform: uppercase;
    -webkit-appearance: none;
  }
  .finder-select .selectboxit-container {
    display: none !important;
  }
  .part_finder_3_select {
    padding-top: 35px;
  }
  .part_finder_4_top {
    padding: 15px 0px 20px;
  }
  .part_finder_4_top_det {
    padding: 0px 0 0 30px;
  }
  .part_finder_4_results_all {
    width: 100vw;
    padding: 0 13px;
  }
  .part_finder_4, .part_finder_4-2 {
    overflow: scroll;
  }
  .part_finder_4 .part_finder_content, .part_finder_4-2 .part_finder_content {
    padding: 95px 13px 14px;
  }
  .part_finder_4 .part_finder_title, .part_finder_4-2 .part_finder_title {
    padding-bottom: 25px;
  }
  .part_finder_4_results {
    height: auto !important;
    overflow-y: visible;
  }
  .part_finder_4_results .part_finder_content {
    padding-top: 0;
  }
  .part_finder_4_res_top .left, .part_finder_4_res_top .right {
    min-height: 80px;
  }
  .part_finder_4_res_top .left {
    padding: 34px 27px 0px;
  }
  .part_finder_4_res_top .logo {
    padding: 2px 0px 0px 27px;
  }
  .part_finder_4_res_top .left_recomendet {
    padding-bottom: 5px;
    padding-left: 40px;
    background-size: 32px auto;
    margin-top: 10px;
    font-size: 13px;
  }
  .part_finder_4_res_top .right img {
    max-height: 80px;
  }
  .part_finder_4_res_top .right svg {
    right: 28px;
    top: -2px;
  }
  .part_finder_4_res_bot {
    padding: 24px 27px 21px;
  }
  .part_finder_4_res_bot table th {
    font-size: 11px;
    padding-bottom: 12px;
    padding-top: 3px;
  }
  .part_finder_4_res_bot table td {
    font-size: 18px;
    padding: 5px 0;
  }
  .part_finder_4_res_bot .oxs_measure {
    padding-top: 20px;
  }
  .part_finder_4_res_bot .oxs_col {
    margin-bottom: 33px;
  }
  .part_finder_4_res_note {
    padding: 18px 27px 27px;
  }
  .part_finder_4_res_note .head {
    padding-bottom: 14px;
  }
  .part_finder_4_res_note .text {
    font-size: 12px;
    line-height: 16px;
  }
  .part_finder_4_res_start_new {
    margin-top: 15px;
    padding: 12px 13px 30px;
  }
  .part_finder_4_slider {
    right: 13px;
    top: 40px;
    width: calc(100% - 26px);
    z-index: 999;
    position: fixed;
  }
  .part_finder_4_slider_big {
    width: 100%;
  }
  .part_finder_4_slider_big .big_el {
    min-height: 270px;
  }
  .part_finder_4_slider_close {
    padding: 19px 25px;
  }
  .part_finder_4_slider_close svg {
    width: 16px;
  }
  .part_finder_4_slider_count {
    font-size: 14px;
    right: 16px;
    top: 13px;
  }
  .part_finder_4_slider_nav {
    padding-top: 5px;
    width: 100%;
  }
  .part_finder_4_slider_nav .slick-arrow {
    width: 35px;
  }
  .part_finder_4_slider_nav .slick-arrow span {
    height: 26px;
    width: 16px;
  }
  .part_finder_4_slider_nav .slick-arrow.slick-prev {
    left: -36px;
  }
  .part_finder_4_slider_nav .slick-arrow.slick-next {
    right: -36px;
  }
  .part_finder_4_slider_nav .nav_el {
    height: 65px;
    margin: 0 6px;
    width: 60px;
  }
  .part_finder_4_slider_nav .nav_el.details .text {
    width: 70px;
  }
  .part_finder_4_slider_nav .nav_el.details .i {
    padding-right: 5px;
  }
  .part_finder_4_res_el {
    float: left;
    width: 100%;
    padding: 20px 25px 0;
    background-color: #fff;
    border-radius: 7px;
    margin: 14px 0;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    height: auto;
  }
  .part_finder_4_res_el.pdf .pf4_col_2 {
    width: 100%;
  }
  .part_finder_4_res_el.pdf .pf4_col_3 {
    width: calc(100% + 50px);
    margin-top: 25px;
    position: relative;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .part_finder_4_res_el.pdf .pf4_col_3 .note {
    padding: 18px 50px 22px;
  }
  .part_finder_4_res_el.pdf .pf4_col_3 .note .t {
    padding-top: 0px;
  }
  .part_finder_4_res_el.pdf .pf4_col_3 .det {
    font-size: 15px;
    height: 45px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .pf4_col_1 {
    width: 100%;
  }
  .pf4_col_1 .rec {
    text-align: center;
    font-size: 13px;
    height: auto;
    padding-bottom: 20px;
  }
  .pf4_col_1 .rec svg {
    width: 18px;
  }
  .pf4_col_1 .inf {
    float: left;
    width: 100%;
    padding: 30px 0;
  }
  .pf4_col_1 .el {
    margin: 0;
    padding: 13px 25px 14px;
    line-height: 1;
  }
  .pf4_col_1 .el:nth-child(2n) {
    background-color: #fff;
  }
  .pf4_col_1 .el .t {
    font-size: 15px;
    padding-top: 3px;
  }
  .pf4_col_1 .el .c {
    font-size: 18px;
    color: #000;
  }
  .pf4_col_2 {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    padding: 0 10px;
  }
  .pf4_col_2 img {
    position: relative;
    display: block;
    height: 200px;
  }
  .pf4_col_2 svg {
    opacity: 1;
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  .pf4_col_2.open svg {
    display: block;
  }
  .pf4_col_2.open svg.crose_svg {
    display: none;
  }
  .pf4_col_3 {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
  .pf4_col_3 .note {
    height: auto;
    text-align: left;
    width: 100%;
    margin-bottom: 0px;
  }
  .pf4_col_3 .note .scr {
    width: 100%;
    height: auto;
  }
  .pf4_col_3 .note .cont {
    width: 100%;
    padding: 18px 50px 22px;
  }
  .pf4_col_3 .note .t {
    font-size: 15px;
  }
  .pf4_col_3 .note .c {
    font-size: 16px;
  }
  .pf2_cross {
    height: 55px;
  }
  .pf4-2_top {
    padding: 20px 15px;
  }
  .pf4_col_cross {
    padding: 0 0 20px;
  }
  /*============================
	=            Home            =
	============================*/
  .hp_banner {
    height: 340px;
  }
  .hp_banner_text {
    top: 122px;
  }
  .hp_banner_text .all::before {
    width: 5%;
    top: 9px;
    -webkit-animation: 11s linear 0s normal forwards 1 b_text1_move_l;
    animation: 11s linear 0s normal forwards 1 b_text1_move_l;
  }
  .hp_banner_text .all::after {
    width: calc(93% - 170px);
    bottom: 18px;
    -webkit-animation: 9s linear 0s normal forwards 1 b_text2_move_l;
    animation: 9s linear 0s normal forwards 1 b_text2_move_l;
  }
  .hp_banner_text .text1 {
    width: 170px;
    padding-bottom: 11px;
    -webkit-animation: 11s linear 0s normal forwards 1 b_text1_move;
    animation: 11s linear 0s normal forwards 1 b_text1_move;
  }
  .hp_banner_text .text2 {
    width: 170px;
    -webkit-animation: 9s linear 0s normal forwards 1 b_text2_move;
    animation: 9s linear 0s normal forwards 1 b_text2_move;
  }
  @-webkit-keyframes b_text1_move {
    0% {
      left: 5%;
    }
    100% {
      left: calc(50% - 85px);
    }
  }
  @keyframes b_text1_move {
    0% {
      left: 5%;
    }
    100% {
      left: calc(50% - 85px);
    }
  }
  @-webkit-keyframes b_text1_move_l {
    0% {
      width: 5%;
    }
    100% {
      width: calc(50% - 85px);
    }
  }
  @keyframes b_text1_move_l {
    0% {
      width: 5%;
    }
    100% {
      width: calc(50% - 85px);
    }
  }
  @-webkit-keyframes b_text2_move {
    0% {
      left: 7%;
    }
    100% {
      left: calc(50% - 75px);
    }
  }
  @keyframes b_text2_move {
    0% {
      left: 7%;
    }
    100% {
      left: calc(50% - 75px);
    }
  }
  @-webkit-keyframes b_text2_move_l {
    0% {
      width: calc(93% - 170px);
    }
    100% {
      width: calc(50% - 95px);
    }
  }
  @keyframes b_text2_move_l {
    0% {
      width: calc(93% - 170px);
    }
    100% {
      width: calc(50% - 95px);
    }
  }
  .hp_gp_row {
    margin-top: -28px;
  }
  .hp_gp_img {
    height: 210px;
  }
  .hp_gp_top {
    min-height: 60px;
    height: 60px;
    padding: 17px 10px 0;
  }
  .hp_gp_top .title {
    font-size: 18px;
    text-align: center;
  }
  .hp_slider {
    margin: 0;
  }
  .hp_slider_text {
    padding: 0 10.5%;
    width: 100%;
    text-align: center;
  }
  .hp_slider_text .title {
    font-size: 20px;
  }
  .hp_slider_text .text {
    height: auto;
  }
  img.hp_slid_img {
    width: 75%;
    display: inline-block;
  }
  .hp_slider_el {
    text-align: center;
    padding: 55px 0px 65px;
  }
  .hp_slider_all .slick-arrow {
    height: 60%;
  }
  .hp_slider_all .slick-list {
    overflow: hidden;
  }
  .hp_slider_dots {
    position: relative;
    bottom: 0;
    text-align: center;
    padding: 30px 0px 23px;
  }
  .hp_slider_bg .bg {
    background-image: none !important;
  }
  .hp_slider_bg .bg_1 {
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
  }
  .hp_gallery {
    background-color: #fff;
    margin-left: 0;
    padding: 29px 16px 12px;
    width: 100%;
  }
  .hp_gallery_top {
    padding-bottom: 17px;
  }
  .hp_gallery_big {
    margin-left: -7px;
    padding-top: -7px;
    width: calc(100% + 14px);
  }
  .hp_gallery_big a {
    float: left;
    padding: 7px;
  }
  .hp_gallery_big a:nth-child(6n + 1), .hp_gallery_big a:nth-child(6n + 3) {
    width: 50%;
    float: left;
  }
  .hp_gallery_big a:nth-child(6n + 1) .element, .hp_gallery_big a:nth-child(6n + 3) .element {
    height: 113px;
  }
  .hp_gallery_big a:nth-child(6n + 2), .hp_gallery_big a:nth-child(6n + 4) {
    width: 50%;
    float: right;
  }
  .hp_gallery_big a:nth-child(6n + 2) .element, .hp_gallery_big a:nth-child(6n + 4) .element {
    height: 130px;
  }
  .hp_gallery_big a:nth-child(6n + 5) {
    width: 50%;
    float: left;
  }
  .hp_gallery_big a:nth-child(6n + 5) .element {
    height: 134px;
  }
  .hp_gallery_big a:nth-child(6n) {
    width: 50%;
    float: right;
  }
  .hp_gallery_big a:nth-child(6n) .element {
    height: 100px;
  }
  .hp_articles {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hp_articles_cont .apo_image {
    height: 180px;
  }
  /*=====  End of Home  ======*/
  /*==============================
	=            Footer            =
	==============================*/
  section #logoParade div.scrollableArea li {
    padding: 0 20px;
  }
  section .sopnsors_wrap {
    padding-top: 11px;
  }
  section .sopnsors_labels {
    padding: 0 15px 20px;
  }
  section a.sponsors_link .arrow {
    margin-right: 8px;
  }
  .container_footer {
    width: 81%;
  }
  .footer {
    padding-bottom: 21px;
    padding-top: 30px;
  }
  .footer_bot {
    padding-top: 10px;
  }
  .footer_row {
    padding-bottom: 0;
  }
  .footer_menu {
    float: left;
    padding-bottom: 47px;
    width: 50%;
  }
  .footer_menu .title {
    padding-bottom: 11px;
  }
  .footer_menu ul {
    font-size: 11.5px;
  }
  .footer_menu ul a {
    padding: 8px 0;
  }
  .footer_menu.f_logo ul {
    height: auto;
  }
  .footer_menu.two_col {
    width: 100%;
    padding-bottom: 0;
  }
  .footer_bot_img {
    padding-bottom: 32px;
    margin: 0 -19px;
  }
  .footer_bot_img a {
    padding: 0 19px;
  }
  .footer_logo svg {
    margin: 0 0 25px -6px;
  }
  /*=====  End of Footer  ======*/
  /*===============================
	=            History            =
	===============================*/
  .container {
    width: 91%;
  }
  .pt_menu_title {
    font-size: 26px;
    padding: 44px 0 50px;
  }
  .pt_menu_sub {
    padding: 29px 0% 36px;
  }
  .pt_menu_sub::before {
    background-color: #161616;
    background-image: -webkit-gradient(linear,left top, right top,from(#161616), color-stop(5%, rgba(22, 22, 22, 0)), color-stop(95%, rgba(22, 22, 22, 0)), to(#161616));
    background-image: linear-gradient(to right,#161616 0%, rgba(22, 22, 22, 0) 5%, rgba(22, 22, 22, 0) 95%, #161616 100%);
    background-color: transparent;
  }
  .pt_menu_sub.fixed_menu.active {
    width: calc(100% - 28px);
    left: 14px;
    top: 43px;
  }
  .pt_menu_bg {
    width: calc(100% - 28px);
    left: 14px;
  }
  .pt_menu_sub_title {
    padding: 41px 0 39px;
  }
  .hist_content {
    padding: 18px 16px 2px;
    margin-bottom: 38px;
  }
  .hist_video_el .text {
    font-size: 19px;
    padding-top: 30px;
  }
  .hist_video_el .play {
    width: 57px;
    height: 40px;
  }
  .hist_video .video_wrap iframe {
    height: 180px;
  }
  .history_line {
    margin: 0 -28px;
  }
  .history_line::before {
    height: calc(100% - 25px);
  }
  .history_event {
    width: 100%;
  }
  .history_event:nth-child(2) {
    padding-top: 0;
  }
  .history_event .text {
    font-size: 14px;
    line-height: 24px;
  }
  .history_event .date {
    padding-bottom: 11px;
    line-height: 1;
  }
  .history_event .cont {
    padding: 19px 25px 17px;
    text-align: center;
  }
  .history_event .cont::after {
    display: none;
  }
  .history_event a {
    position: relative;
  }
  .history_event a::after {
    background-color: #f0f0f0;
    content: "";
    height: 24px;
    margin: auto;
    position: absolute;
    right: 0px;
    left: 0;
    top: -12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 24px;
  }
  /*=====  End of History  ======*/
  /*=================================
	=            Worldwide            =
	=================================*/
  .pt_menu_sub_title .sub {
    padding-top: 9px;
  }
  .ww_page .pt_menu_sub_title {
    padding-bottom: 46px;
  }
  .ww_content {
    margin: 0 -10px;
  }
  .ww_offices {
    padding: 22px 18px 8px;
    margin: 37px 0 26px;
  }
  .ww_offices_single {
    float: left;
    width: 100%;
    padding: 10px;
  }
  .ww_offices_single .img {
    height: 225px;
  }
  .ww_offices_all {
    margin: 0 -10px;
    padding-top: 3px;
  }
  /*=====  End of Worldwide  ======*/
  /*===============================
	=            Gallery            =
	===============================*/
  .gallery_content {
    left: 4.5%;
    padding: 23px 18px 15px;
    width: 91%;
    margin-bottom: 34px;
  }
  .gallery_select {
    padding-bottom: 15px;
  }
  .gallery_images {
    margin: 0 -9px;
  }
  .gallery_img {
    padding: 9px;
  }
  .gallery_img:nth-child(1) {
    width: 100%;
  }
  .gallery_img:nth-child(1) .element {
    height: 210px;
  }
  .gallery_img:nth-child(2), .gallery_img:nth-child(3) {
    width: 50%;
    float: left;
  }
  .gallery_img:nth-child(2) .element, .gallery_img:nth-child(3) .element {
    height: 195px;
  }
  .gallery_img:nth-child(4) {
    width: 100%;
  }
  .gallery_img:nth-child(4) .element {
    height: 210px;
  }
  .gallery_img:nth-child(n+5) {
    width: 50%;
    float: left;
  }
  .gallery_img:nth-child(n+5) .element {
    height: 105px;
  }
  .gallery_button {
    padding: 20px 0 10px;
  }
  .gallery_button .slanting_button {
    margin: 0 0 20px;
  }
  .ekko-lightbox .modal_close {
    right: 0;
    top: 0;
  }
  .ekko-lightbox .modal-header {
    padding-bottom: 15px;
  }
  .ekko-lightbox .modal-content {
    max-width: 87vw;
  }
  .ekko-lightbox .modal-dialog {
    margin: 80px auto 10px;
    max-width: 85vw !important;
    width: 85vw !important;
  }
  .ekko-lightbox .modal-body img {
    width: 100%;
  }
  .ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-left {
    left: 0;
    width: 50px;
    background-position: 80% calc(50% - 20px);
  }
  .ekko-lightbox .ekko-lightbox-nav-overlay .glyphicon-chevron-right {
    right: 0;
    width: 50px;
    background-position: 80% calc(50% + 20px);
  }
  .ekko-lightbox.modal .modal-dialog {
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
  }
  .ekko-lightbox.modal.in .modal-dialog {
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  /*=====  End of Gallery  ======*/
  /*===========================
	=            FAQ            =
	===========================*/
  .faq_page .container {
    max-width: 92%;
  }
  .faq_page_search {
    padding: 37px 55px 68px;
  }
  .faq_head .text {
    display: inline-block;
  }
  .faq_head a {
    padding: 7px 0;
  }
  .faq_head .icon {
    padding-left: 13px;
  }
  .faq_quest_body ul {
    padding-left: 17px;
  }
  .faq_cont {
    margin-bottom: 71px;
    padding: 35px 27px 54px;
  }
  /*=====  End of FAQ  ======*/
  /*====================================
	=            Sponsorships            =
	====================================*/
  .sp_cat_head {
    padding: 16px 15px 31px;
  }
  .sp_cat_head .left {
    width: 100%;
    text-align: center;
  }
  .sp_cat_body {
    padding: 15px 14px;
    margin-top: 0;
  }
  .sp_cat_single_title {
    font-size: 18px;
    line-height: 22px;
    padding: 7px 0;
  }
  .sp_cat_single {
    padding: 10px 0;
  }
  .sp_sponsor_single {
    margin: 10px;
    max-width: calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .sp_sponsor_single .logo {
    height: 70px;
  }
  .sp_sponsor_single .title {
    height: 50px;
  }
  .sponsorships_container {
    padding-bottom: 33px;
  }
  /*=====  End of Sponsorships  ======*/
  /*=======================================
	=            Events calendar            =
	=======================================*/
  .ec_page .pt_menu_sub_title {
    padding: 41px 0 19px;
  }
  .ec_nav {
    padding-bottom: 31px;
  }
  .ec_list, .ec_single_all {
    padding: 25px 16px 15px;
  }
  .ec_container {
    width: 92%;
    padding-bottom: 30px;
  }
  .single_event_top {
    height: 95px;
  }
  .single_event_date {
    width: 92px;
    padding-top: 23px;
  }
  .single_event_date::after {
    bottom: auto;
    top: 30px;
  }
  .single_event {
    padding-bottom: 22px;
  }
  .single_event_cont {
    width: calc(100% - 92px);
    padding: 0 40px 0 16px;
  }
  .single_event_cont .title {
    line-height: 1;
  }
  .single_event_bot .cont {
    padding: 14px 14px 20px;
    margin-bottom: 0;
  }
  .single_event_bot .all {
    margin-left: 0;
    width: 100%;
  }
  .single_event_map_info {
    padding: 14px 14px 19px;
    text-align: center;
  }
  .single_event_map_info .address {
    padding: 5px 0px 9px;
  }
  .single_event_map_info .link {
    padding: 0;
    position: relative;
    right: 0;
    top: 0;
  }
  .single_event_map_add_calendar {
    position: relative;
    text-align: center;
    padding: 13px 0px 10px;
    width: 100%;
  }
  .single_event_map_add_calendar svg {
    float: none;
    vertical-align: middle;
  }
  .single_event_map_add_calendar span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 12px;
  }
  .single_event_more {
    width: 60px;
    height: 95px;
    bottom: auto;
    top: -95px;
    background-color: transparent;
  }
  .single_event_more::after {
    border-bottom: 2px solid #ed1f24;
    border-right: 2px solid #ed1f24;
    content: "";
    height: 9px;
    position: absolute;
    right: 23px;
    top: 41px;
    width: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .single_event_more span {
    display: none;
  }
  .single_event_more.open .t2 {
    display: none;
  }
  .ec_data .ui-datepicker-header {
    margin-bottom: 11px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all {
    font-size: 10px;
  }
  .ec_data .ui-datepicker-header .ui-corner-all span::before {
    top: 5px;
  }
  .ec_data .ui-datepicker-title {
    font-size: 14px;
  }
  .ec_data .ui-datepicker {
    padding: 9px 13px;
  }
  .ec_data .ui-datepicker-calendar {
    border-spacing: 1px;
    font-size: 12px;
  }
  .ec_data .ui-datepicker-calendar a {
    height: 31px;
    padding-top: 5px;
  }
  .ec_data .ui-datepicker-calendar a::before {
    height: 26px;
    width: 26px;
  }
  .ec_data .ui-datepicker-calendar a.d_active::before {
    border-radius: 4px;
  }
  /*=====  End of Events calendar  ======*/
  /*===============================
	=            Product            =
	===============================*/
  .product_page .container {
    width: 100%;
  }
  .pp_boxes_sec {
    padding-bottom: 25px;
  }
  .pp_box1 .container {
    width: 76%;
  }
  .pp_box1_content {
    padding: 20px 24px 8px;
  }
  .pp_box1_content .img {
    display: block;
    padding: 10px;
    width: 100%;
  }
  .pp_box1_content .text {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
  }
  .pp_box1_content .text > p {
    display: inline;
  }
  .pp_box1_content .text .to_show {
    display: none;
  }
  .pp_box1_content .show_text {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    padding: 21px 0 10px;
    color: #7f7f7f;
    font-size: 13px;
  }
  .pp_box1_content .show_text .t2 {
    display: none;
  }
  .pp_box1_content .show_text.open .t1 {
    display: none;
  }
  .pp_box1_content .show_text.open .t2 {
    display: inline;
  }
  .pp_box2 {
    padding: 30px 0 0;
    background-color: #161616;
  }
  .pp_box2 .container {
    width: 75%;
  }
  .pp_box2_content .text {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }
  .pp_box2_content .text .title {
    width: 100%;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .pp_box2_content .text img {
    max-width: 63%;
  }
  .pp_box2_content .text .only_text {
    width: 100%;
    padding-top: 23px;
  }
  .pp_box2_bg {
    height: 580px;
  }
  .pp_box2_bg .bg_mob {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .pp_box3 .row {
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
    overflow: visible;
  }
  .pp_box3_title {
    font-size: 20px;
    padding: 17px 0px 32px;
    font-weight: bold;
    color: #ed1f24;
    text-align: center;
    text-transform: uppercase;
  }
  .pp_box3_panel {
    float: left;
    width: 100%;
    margin-bottom: 0;
    -webkit-box-shadow: 2px 2px 8px 4px #000;
            box-shadow: 2px 2px 8px 4px #000;
  }
  .pp_box3_panel .panel {
    background-color: transparent;
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0;
            box-shadow: 0 0 0;
    float: left;
    margin: 0;
    width: 100%;
  }
  .pp_box3_panel .panel + .panel {
    margin-top: 0;
  }
  .pp_box3_panel .panel:last-child .pp_box3_control a {
    border-bottom: none;
  }
  .pp_box3_control {
    width: 100%;
    padding: 0;
    font-size: 16px;
    text-align: center;
  }
  .pp_box3_control::after {
    display: none;
  }
  .pp_box3_control a {
    color: #fff;
    height: 58px;
    display: block;
    border-bottom: 2px solid #ed1f24;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .pp_box3_control a[aria-expanded="true"] {
    border-bottom: 2px solid #212121;
    color: #fff;
  }
  .pp_box3_control a[aria-expanded="true"] .text::after {
    content: "-";
  }
  .pp_box3_control .sub {
    font-size: 16px;
    line-height: 1;
  }
  .pp_box3_control .text {
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-right: 32px;
  }
  .pp_box3_control .text::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 14px;
    font-size: 30px;
    font-weight: 400;
    font-family: arial;
    line-height: 0.5;
  }
  .pp_box3_content {
    width: 100%;
  }
  .pp_box3_el {
    position: relative;
    overflow: hidden;
  }
  .pp_box3_el::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #212121;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .pp_box3_el .img {
    padding: 10px 0 0;
  }
  .pp_box4_content {
    padding: 10px 27px;
  }
  .pp_box5_cont {
    max-width: 80%;
  }
  .threesixty .custom_amimation {
    width: 120px;
    height: 120px;
    padding-top: 40px;
    line-height: 1.2;
  }
  .threesixty .custom_amimation svg {
    display: none;
  }
  .threesixty .custo_nav {
    display: none !important;
  }
  /*=====  End of Product  ======*/
  /*====================================
	=            All articles            =
	====================================*/
  .cat_container {
    padding-bottom: 20px;
    width: 100%;
  }
  .apo_col.cat_slider_el {
    width: 75vw;
    max-width: 75vw;
    margin: 0 35px;
    min-width: 75vw;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .apo_col.cat_slider_el .apo_image {
    height: 200px;
  }
  .apo_col.cat_slider_el .apo_title_line {
    margin: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .apo_col.cat_slider_el .apo_name {
    width: 100%;
    line-height: 1;
    font-size: 16px;
    height: auto;
    max-height: 32px;
  }
  .apo_col.cat_slider_el .apo_name .arrow {
    vertical-align: middle;
  }
  .apo_col.cat_slider_el .apo_title_line {
    margin: 3px 0 2px;
  }
  .cat_slider_el_cont {
    min-height: 75px;
    height: 75px;
    padding: 0 26px;
  }
  .cat_slider {
    margin: 40px 0 50px;
  }
  .cat_bot {
    padding: 3px 0 40px;
    position: relative;
    top: 0;
  }
  .cat_button {
    font-size: 11px;
  }
  .cat_button::before {
    display: none;
  }
  .cat_button::after {
    width: 26px;
    left: 0;
    margin: auto;
  }
  /*=====  End of All articles  ======*/
}
/*# sourceMappingURL=styles.css.map */