/* GUIDE */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
body::selection {
  background: #0064c5;
  color: #fff;
}
:root {
  scroll-behavior: initial;
}

* {
  outline: none;
}
*::selection {
  background: #0064c5;
  color: #fff;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: calc(var(--bs-gutter-x) * 1.2);
  padding-left: calc(var(--bs-gutter-x) * 1.2);
}
.row {
  margin-right: calc(-1.2 * var(--bs-gutter-x));
  margin-left: calc(-1.2 * var(--bs-gutter-x));
}
.row > * {
  padding-right: calc(var(--bs-gutter-x) * 1.2);
  padding-left: calc(var(--bs-gutter-x) * 1.2);
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #008ed0;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
}

h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
}

h6 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
}

p {
  font-size: 1.12rem;
  font-weight: 400;
  color: #616161;
  line-height: 1.4;
  margin-bottom: 20px;
}

a {
  font-size: 1rem;
  font-weight: 400;
  color: #008ed0;
  line-height: 1.2;
  text-decoration: underline;
}

a:hover {
  color: rgba(30, 53, 81, 1);
}

ul {
}

ul li {
  color: #616161;
  font-size: 1rem;
  font-weight: 400;
}

table {
  width: 100%;
}

table tr:first-child td {
  font-size: 16px;
  font-weight: 600;
  color: rgba(45, 45, 45, 1);
}

table tr td {
  padding: 5px 10px;
  font-size: 16px;
  color: rgba(45, 45, 45, 1);
  font-weight: 400;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1320px;
}

.splash-body {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: 100%;
  transform: translate3d(-50%, -50%, 0);
  overflow: auto;
  background: #fff;
}

.splash-close {
  background: url(/frontend/img/close-icon.svg);
  width: 40px;
  height: 40px;
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 9999;
  background-size: cover;
  cursor: pointer;
}

.splash-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  background-size: cover;
}
.close_tab_modal {
  visibility: hidden;
  transition: opacity 300ms;
  opacity: 0;
}
.close_tab_modal.active {
  visibility: visible;
  opacity: 1;
}
.splash-modal-container {
  opacity: 0;
  display: none;
}
.splash-modal-container.left_top .splash-body {
  left: 0;
  transform: translate3d(0, 0, 0);
  top: 0;
}
.splash-modal-container.left_bottom .splash-body {
  left: 0;
  transform: translate3d(0, 0, 0);
  top: auto;
  bottom: 0;
}
.splash-modal-container.right_top .splash-body {
  right: 0;
  left: auto;
  transform: translate3d(0, 0, 0);
  top: 0;
}
.splash-modal-container.right_bottom .splash-body {
  right: 0;
  left: auto;
  transform: translate3d(0, 0, 0);
  top: auto;
  bottom: 0;
}
.splash-modal-container.active {
  visibility: visible;
  display: block;
  opacity: 1;
}
.splash-modal-container.right_top .splash-close {
  left: 40px;
  right: auto;
}

.search_form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
}

.search_form .search-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.search_form form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-top: -80px;
  max-width: 60%;
  margin-left: -30%;
}

.search_form input {
  font-size: 24px;
  color: #fff;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px;
  outline: 0;
  text-align: center;
}

.search_form {
  opacity: 0;
}

.search_form h2 {
  color: #fff;
  font-size: 36px;
  text-align: center;
}

/* GUIDE */

/* FEATURES */

.info-box-title-clicked {
  color: red;
  cursor: pointer;
}

.info-box-title {
  color: red;
  cursor: pointer;
}

.info-box-content {
  display: none;
}

.tooltip {
  position: absolute;
  font-size: 16px;
  color: #000;
  padding: 10px 20px 10px 10px;
  background: #ebebeb;
  opacity: 1;
}

.tooltip .close-tooltip {
  width: 10px;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

/* FEATURES */

/* MENUS */

/* MENUS */

/* ANIMATION */

.slide_top-to-bottom {
  opacity: 0;
  transition: all 400ms;
}

.slide_bottom-to-top {
  opacity: 0;
  transition: all 400ms;
}

.slide_right-to-left {
  opacity: 0;
  transition: all 400ms;
}

.slide_left-to-right {
  opacity: 0;
  transition: all 400ms;
}

.slide_fade-in {
  opacity: 0;
  transition: all 600ms;
}

.slide_rotate {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 600ms;
}

.slide_scale-in {
  transform: scale(0, 0);
  transition: all 600ms;
}

.slide_in-line-fade {
  opacity: 0;
  transition: all 300ms;
}

.slide_in-line-fade-300ms {
  opacity: 0;
  transition: all 300ms;
}

.slide_in-line-fade-600ms {
  opacity: 0;
  transition: all 300ms;
}

.slide_in-line-fade-900ms {
  opacity: 0;
  transition: all 300ms;
}

.slide_in-line-rotate {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.slide_in-line-rotate-300ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.slide_in-line-rotate-600ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.slide_in-line-rotate-900ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.slide_in-line-scale {
  transform: scale(0, 0);
  transition: all 300ms;
}

.slide_in-line-scale-300ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

.slide_in-line-scale-600ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

.slide_in-line-scale-900ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

.top-to-bottom {
  opacity: 0;
  transition: all 400ms;
}

.bottom-to-top {
  opacity: 0;
  transition: all 400ms;
}

.right-to-left {
  opacity: 0;
  transition: all 400ms;
}

.left-to-right {
  opacity: 0;
  transition: all 400ms;
}

.fade-in {
  opacity: 0;
  transition: all 600ms;
}

.rotate {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 600ms;
}

.scale-in {
  transform: scale(0, 0);
  transition: all 600ms;
}

.in-line-fade {
  opacity: 0;
  transition: all 300ms;
}

.in-line-fade-300ms {
  opacity: 0;
  transition: all 300ms;
}

.in-line-fade-600ms {
  opacity: 0;
  transition: all 300ms;
}

.in-line-fade-900ms {
  opacity: 0;
  transition: all 300ms;
}
.in-line-fade-1200ms {
  opacity: 0;
  transition: all 300ms;
}

.in-line-rotate {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.in-line-rotate-300ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.in-line-rotate-600ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.in-line-rotate-900ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.in-line-rotate-1200ms {
  opacity: 0;
  transform: rotate(-360deg);
  transition: all 300ms;
}

.in-line-scale {
  transform: scale(0, 0);
  transition: all 300ms;
}

.in-line-scale-300ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

.in-line-scale-600ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

.in-line-scale-900ms {
  transform: scale(0, 0);
  transition: all 300ms;
}
.in-line-scale-1200ms {
  transform: scale(0, 0);
  transition: all 300ms;
}

/*VISIBLE*/

.visible .top-to-bottom {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible .bottom-to-top {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible .right-to-left {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible .left-to-right {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible .fade-in {
  opacity: 1;
  transition: all 600ms;
}

.visible .rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 600ms;
}

.visible .scale-in {
  transform: scale(1, 1);
  transition: all 600ms;
}

.visible .in-line-fade {
  opacity: 1;
  transition: all 100ms;
}

.visible .in-line-fade-300ms {
  opacity: 1;
  transition: all 100ms;
  transition-delay: 0.1s;
}

.visible .in-line-fade-600ms {
  opacity: 1;
  transition: all 100ms;
  transition-delay: 0.2s;
}

.visible .in-line-fade-900ms {
  opacity: 1;
  transition: all 100ms;
  transition-delay: 0.3s;
}
.visible .in-line-fade-1200ms {
  opacity: 1;
  transition: all 100ms;
  transition-delay: 0.4s;
}

.visible .in-line-rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
}

.visible .in-line-rotate-300ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.visible .in-line-rotate-600ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.visible .in-line-rotate-900ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.visible .in-line-scale {
  transform: scale(1, 1);
  transition: all 300ms;
}

.visible .in-line-scale-300ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.visible .in-line-scale-600ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.visible .in-line-scale-900ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active .slide_top-to-bottom {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active .slide_bottom-to-top {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active .slide_right-to-left {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active .slide_left-to-right {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active .slide_fade-in {
  opacity: 1;
  transition: all 600ms;
}

.swiper-slide-active .slide_rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 600ms;
}

.swiper-slide-active .slide_scale-in {
  transform: scale(1, 1);
  transition: all 600ms;
}

.swiper-slide-active .slide_in-line-fade {
  opacity: 1;
  transition: all 300ms;
}

.swiper-slide-active .slide_in-line-fade-300ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active .slide_in-line-fade-600ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active .slide_in-line-fade-900ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active .slide_in-line-rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
}

.swiper-slide-active .slide_in-line-rotate-300ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active .slide_in-line-rotate-600ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active .slide_in-line-rotate-900ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active .slide_in-line-scale {
  transform: scale(1, 1);
  transition: all 300ms;
}

.swiper-slide-active .slide_in-line-scale-300ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active .slide_in-line-scale-600ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active .slide_in-line-scale-900ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.9s;
}

/* SECTION */

.visible.top-to-bottom {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible.bottom-to-top {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible.right-to-left {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible.left-to-right {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.visible.fade-in {
  opacity: 1;
  transition: all 600ms;
}

.visible.rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 600ms;
}

.visible.scale-in {
  transform: scale(1, 1);
  transition: all 600ms;
}

.visible.in-line-fade {
  opacity: 1;
  transition: all 300ms;
}

.visible.in-line-fade-300ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.3s;
}

.visible.in-line-fade-600ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.6s;
}

.visible.in-line-fade-900ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.9s;
}

.visible.in-line-rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
}

.visible.in-line-rotate-300ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.visible.in-line-rotate-600ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.visible.in-line-rotate-900ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.visible.in-line-scale {
  transform: scale(1, 1);
  transition: all 300ms;
}

.visible.in-line-scale-300ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.visible.in-line-scale-600ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.visible.in-line-scale-900ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active.slide_top-to-bottom {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active.slide_bottom-to-top {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active.slide_right-to-left {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active.slide_left-to-right {
  opacity: 1;
  transition: all 400ms;
  transform: translate3d(0, 0, 0) !important;
}

.swiper-slide-active.slide_fade-in {
  opacity: 1;
  transition: all 600ms;
}

.swiper-slide-active.slide_rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 600ms;
}

.swiper-slide-active.slide_scale-in {
  transform: scale(1, 1);
  transition: all 600ms;
}

.swiper-slide-active.slide_in-line-fade {
  opacity: 1;
  transition: all 300ms;
}

.swiper-slide-active.slide_in-line-fade-300ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active.slide_in-line-fade-600ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active.slide_in-line-fade-900ms {
  opacity: 1;
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active.slide_in-line-rotate {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
}

.swiper-slide-active.slide_in-line-rotate-300ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active.slide_in-line-rotate-600ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active.slide_in-line-rotate-900ms {
  opacity: 1;
  transform: rotate(0);
  transition: all 300ms;
  transition-delay: 0.9s;
}

.swiper-slide-active.slide_in-line-scale {
  transform: scale(1, 1);
  transition: all 300ms;
}

.swiper-slide-active.slide_in-line-scale-300ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.3s;
}

.swiper-slide-active.slide_in-line-scale-600ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.6s;
}

.swiper-slide-active.slide_in-line-scale-900ms {
  transform: scale(1, 1);
  transition: all 300ms;
  transition-delay: 0.9s;
}

/*SECTION*/

/*VISIBLE*/

/* ANIMATION */

.image_gallery_isotope {
}
.image_gallery_isotope .grid_sizer {
  max-width: calc(25% - 15px);
  width: 100%;
}
.image_gallery_isotope .grid_item {
  max-width: calc(25% - 15px);
  width: 100%;
  float: left;
  margin-bottom: 15px;
}
.image_gallery_isotope .grid_item a {
  display: block;
}
.image_gallery_isotope .grid_item a img {
  width: 100%;
}
.image_gallery_isotope .grid_item_2 {
  max-width: calc(50% - 15px);
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.grid-style .col-md-4 {
  margin-top: 30px;
}

.grid-style .grid-image {
  text-align: center;
  height: 250px;
  overflow: hidden;
}

.type_isotope {
}
.type_isotope .grid-sizer {
  max-width: calc(25% - 15px);
  width: 100%;
}
.type_isotope .grid-item {
  display: block;
  max-width: calc(25% - 15px);
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  float: left;
  overflow: hidden;
}
.type_isotope .grid-item .item-image {
  height: 200px;
  height: 100%;
  display: block;
}
.type_isotope .grid-item .item-image img {
  width: 100%;
}
.type_isotope .grid-item.grid_item_2 {
  max-width: calc(50% - 15px);
  width: 100%;
}
.type_isotope .grid-item.grid_item_2 .item-image {
  height: 400px;
}
.type_isotope .grid-item .item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.style-list ul {
  padding-left: 0;
}

.style-list ul li {
  background: #d2d2d2;
  display: block;
  position: relative;
  list-style: none;
  transition: all 400ms;
  top: 0;
}

.style-list ul li:hover {
  top: -10px;
  transition: all 400ms;
}

.style-list ul li + li {
  margin-top: 15px;
}

.style-list ul li .item-title {
  margin-bottom: 10px;
  display: block;
}

.style-list ul li p {
}

.style-list ul li a {
  padding: 10px 15px;
  display: block;
}

.category-list ul {
  padding-left: 0;
}

.category-list ul li {
  background: #d2d2d2;
  display: block;
  position: relative;
  list-style: none;
  transition: all 400ms;
  top: 0;
}

.category-list ul li + li {
  margin-top: 15px;
}

.category-list ul li:hover {
  top: -10px;
  transition: all 400ms;
}

.category-list ul li .item-title {
  display: block;
  margin-bottom: 10px;
}

.category-list ul li a {
  padding: 10px 15px;
  display: block;
}

.row-style {
  margin-right: 0;
  margin-left: 0;
}

.row-style .style-item {
  padding: 0;
  margin-bottom: 30px;
  background: #d2d2d2;
  height: 214px;
  position: relative;
  overflow: hidden;
  top: 0;
  transition: all 400ms;
}

.row-style .style-item .style-img-hidden {
  overflow: hidden;
  display: inline-block;
  float: left;
}

.row-style .style-item:hover {
  top: -10px;
  transition: all 400ms;
}

.row-style .style-item:hover .style-img {
  -ms-transform: scale(1.2, 1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2, 1.2);
  /* Safari */
  transform: scale(1.2, 1.2);
  transition: all 400ms;
}

.row-style .style-item a {
  display: block;
  height: 100%;
}

.row-style .style-item .style-img {
  max-width: 320px;
  float: left;
  transition: all 400ms;
}

.row-style .style-item .style-title {
  font-size: 18px;
  float: left;
  display: block;
  font-weight: 600;
  margin-left: 15px;
  margin-top: 30px;
  width: calc(100% - 335px);
}

.row-style .style-item .style-excerpt {
  font-size: 14px;
  font-size: 500;
  float: left;
  margin-left: 15px;
  width: calc(100% - 335px);
}

.style-slider {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.style-slider .swiper-slide {
  text-align: center;
}

.style-slider .style-slide-next {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
}

.style-slider .style-slide-prev {
  position: absolute;
  right: 37px;
  left: auto;
  bottom: 0;
  top: auto;
}

.style-slider .item-content {
  padding: 0 10px;
  text-align: left;
}

.gallery_list {
  padding: 0;
  margin: 0;
}

.gallery_list li {
  max-width: calc(100% - 24px);
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid #f2f2f2;
  list-style: none;
}

.gallery_list li a {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.gallery_list li a .image_cont {
  max-width: 200px;
  max-height: 200px;
  margin-right: 20px;
}
.gallery_list li a img {
  max-width: 100%;
  max-height: 100%;
  transition: all 400ms;
}

/*.gallery_list li a:hover img {
	-ms-transform: scale(1.2, 1.2);
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
	transition: all 400ms;
}*/

.grid_gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}

.grid_gallery a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2f2f2;
  overflow: hidden;
  max-width: calc(25% - 24px);
  width: 100%;
  margin-left: 12px;
  margin-right: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
  max-height: 200px;
}

.grid_gallery a img {
  max-width: 100%;
  max-height: 100%;
  transition: all 400ms;
}

.grid_gallery a:hover img {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  transition: all 400ms;
}

.slide-fullheight {
  background: #000;
}

.slide-fullheight .center-inner {
  text-align: center;
}

.slide-fullheight .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 1);
}

.slide-fullheight .swiper-pagination-bullet-active {
  background: red;
}

/*SECTION SHOW*/

.desktop-0 {
  display: none;
}

.desktop-1 {
  display: block;
}

.tablet-1 {
  display: block;
}

.mobile-1 {
  display: block;
}

/*SECTION SHOW*/
#toast-container {
  position: fixed !important;
  z-index: 999999999999 !important;
  pointer-events: none !important;
  width: 100% !important;
  right: 0 !important;
}
#toast-container > div {
  position: relative !important;
  pointer-events: auto !important;
  overflow: hidden !important;
  margin: 0 0 6px !important;
  padding: 30px 30px 30px 80px !important;
  width: 100% !important;
  border-radius: 0 !important;
  background-position: 30px center !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  color: #ffffff !important;
  opacity: 1 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
  filter: alpha(opacity=100) !important;
}
.toast-top-right {
  top: 0px !important;
  right: 0px !important;
}
.toast-error {
  background-color: #e24445 !important;
}
.t_m_t_0 {
  margin-top: 0;
}
.t_m_b_0 {
  margin-bottom: 0;
}
.t_m_b_20 {
  margin-bottom: 20px;
}
.p_m_b_0 {
  margin-bottom: 0;
}
.p_m_b_5 {
  margin-bottom: 5px;
}

.color_black {
  color: #000;
}
.color_white {
  color: #fff;
}
.color_blue {
  color: #008ecb;
}
.color_grey {
  color: #616161;
}

.section_flex .container-fluid {
  height: 100%;
}
.section_flex .container {
  height: 100%;
}
.section_flex .container .row {
  height: 100%;
}
.section_flex .container-fluid .row {
  height: 100%;
}

.video_background {
  background: #000;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}
.video_foreground:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.video_foreground,
.video_background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .video_foreground {
    height: 200%;
    top: -50%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video_foreground {
    width: 200%;
    left: -50%;
  }
}

.full-height {
  height: 100vh;
}
.f_s_60 {
  font-size: 60px;
}
.f_s_48 {
  font-size: 48px;
}
.f_s_40 {
  font-size: 40px;
}
.f_s_36 {
  font-size: 36px;
  line-height: 1.2;
}
.f_s_30 {
  font-size: 30px;
}
.f_s_24 {
  font-size: 24px;
}
.f_s_20 {
  font-size: 20px;
}
.f_s_18 {
  font-size: 18px;
}
.f_s_16 {
  font-size: 16px;
}
.f_s_14 {
  font-size: 14px;
}
.f_w_900 {
  font-weight: 900;
}
.f_w_800 {
  font-weight: 800;
}
.f_w_700 {
  font-weight: 700;
}
.f_w_600 {
  font-weight: 600;
}
.f_w_500 {
  font-weight: 500;
}
.f_w_400 {
  font-weight: 400;
}
.f_w_300 {
  font-weight: 300;
}
.f_w_200 {
  font-weight: 200;
}
.f_w_100 {
  font-weight: 100;
}
.flex_col {
  display: flex;
}
.align_items_center {
  align-items: center;
}
.justify_space_between {
  justify-content: space-between;
}
.justify_center {
  justify-content: center;
}
.justify_end {
  justify-content: flex-end;
}
.col_standart > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.col_standart.align_item_center > div {
  justify-content: center;
}
section.justify_center .row {
  justify-content: center;
}
.accordion-item {
  border: 0;
}
.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  color: #8f8f8f;
  font-size: 24px;
  font-weight: 600;
  box-shadow: none;
  border-bottom: 1px solid #8f8f8f;
}
.accordion-button > span {
  max-width: calc(100% - 25px);
}
.accordion-button::after {
  display: none;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: #004b93;
  font-size: 24px;
  font-weight: 600;
  box-shadow: none;
  border-bottom: 1px solid #8f8f8f;
}
.accordion-button:not(.collapsed)::after {
  display: none;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-body {
  padding-left: 0;
  padding-right: 0;
}
.accordion-collapse.show {
  border-bottom: 1px solid #8f8f8f;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion-button svg {
  transition: all 300ms;
}
.accordion-button:not(.collapsed) svg {
  transform: rotate(180deg);
}

.cookie_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transition: all 400ms;
}
.cookie_modal .cookie_close {
  position: absolute;
  right: 35px;
  top: 35px;
  display: none;
  cursor: pointer;
}
.cookie_modal .cookie_close.active {
  display: block;
}
.cookie_modal .modal_body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  background: #fff;
}
.cookie_modal .modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.cookie_modal .modal_body button {
  padding: 10px 20px;
  border: 0;
  box-shadow: none;
  font-size: 14px;
}
.cookie_modal .modal_body button:first-child {
  margin-right: 10px;
}
.cookie_modal .modal_body button:nth-child(2) {
  margin-right: 10px;
}
.cookie_modal .modal_body .cookie_settings {
  max-height: 0;
  transition: all 400ms;
  overflow: hidden;
}
.cookie_modal .modal_body .cookie_settings .form-group {
  margin-bottom: 30px;
}
.cookie_modal .modal_body .cookie_settings label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cookie_modal .modal_body .cookie_settings label input {
}
.cookie_modal .modal_body .cookie_settings label span {
  position: static;
  margin-left: 10px;
}
.cookie_modal .modal_body .cookie_settings.active {
  max-height: 1000px;
}
.cookie_modal .modal_body .cookie_accept {
  margin-left: 10px;
  background: #000;
  color: #fff;
}
.cookie_modal .modal_body .cookie_actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cookie_modal.hidden {
  opacity: 0;
  display: none;
}
.grecaptcha-badge {
  display: none;
}
#wrapper .content_wrapper {
  margin-top: 70px;
}

header {
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 9;
}
header.fixed_top:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(40deg, #006d9c, #008ecb, #00b2ff);
  background-size: 200% 200%;
  -webkit-animation: bulletin 10s ease infinite;
  -moz-animation: bulletin 10s ease infinite;
  -o-animation: bulletin 10s ease infinite;
  animation: bulletin 10s ease infinite;
}
header #logo {
  max-width: 218px;
  width: 100%;
}
header #logo svg {
  width: 100%;
}
.navbar-expand-lg {
  padding: 15px 2vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-expand-lg > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-expand-lg > div:first-child {
  max-width: calc(100% - 200px);
  width: 100%;
}

.navbar-expand-lg .navbar-collapse {
  margin-left: 15px;
  justify-content: space-between;
}
.navbar-expand-lg .navbar-collapse ul {
  margin-top: 6px;
}
.navbar-expand-lg .navbar-collapse ul li {
}

.navbar-expand-lg .navbar-collapse ul li a {
  padding: 0 20px;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  color: #515151;
  letter-spacing: -0.24px;
  position: relative;
}
.navbar-expand-lg .navbar-collapse > ul > li > a {
  padding-bottom: 20px;
}
.navbar-expand-lg .navbar-collapse > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background: #008ed0;
  height: 2px;
  transition: all 200ms;
  width: 0;
}
.navbar-expand-lg .navbar-collapse > ul > li:hover a {
  color: #008ed0;
}
.navbar-expand-lg .navbar-collapse > ul > li:hover > a:after {
  width: 100%;
}
.navbar-expand-lg .navbar-collapse ul.header_social {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  margin-top: 0;
}
.navbar-expand-lg .navbar-collapse ul.header_social li {
  list-style: none;
}
.navbar-expand-lg .navbar-collapse ul.header_social li a {
  padding: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.navbar-expand-lg .navbar-collapse ul.header_social li a:after {
  display: none;
}
.navbar-expand-lg .navbar-collapse ul li .mega_container {
  position: absolute;
  left: 0;
  top: 70px;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 4px rgb(0 0 0 / 10%);
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms, padding 400ms;
  z-index: 2;
}
.navbar-expand-lg .navbar-collapse ul li .mega_container .urun_indexi {
  font-weight: 600;
  margin-top: 0;
  padding: 0 0 12px;
  color: #008ed0;
  border-bottom: 1px solid #b7b7b7;
  font-size: 1rem;
}
.navbar-expand-lg .navbar-collapse ul li:hover .mega_container {
  max-height: 500px;
}
.navbar-expand-lg
  .navbar-collapse
  ul
  li
  .mega_container
  .product_categories_col {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 2vw;
  padding-right: 4vw;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 15px 0;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories li {
  list-style: none;
  max-width: calc(50% - 15px);
  width: 100%;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories li a {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories li a > span {
  padding: 0 10px 0 0;
  color: #626262;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border-radius: 20px;
  margin-right: 15px;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories li a span span {
  padding: 12px 0;
  color: #fff;
  border-radius: 25px;
  background: #008ed0;
  opacity: 0;
  width: 0;
  white-space: nowrap;
  transition: width 200ms;
}
.navbar-expand-lg .navbar-collapse ul li .product_categories li a:hover > span {
  background: #f9f9f9;
  border: 1px solid #008ed0;
  border-left: 0;
  color: #008ed0;
}
.navbar-expand-lg
  .navbar-collapse
  ul
  li
  .product_categories
  li
  a:hover
  span
  span {
  display: block;
  width: 70px;
  padding: 12px 10px;
  opacity: 1;
  margin-right: 15px;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 3vw;
  padding-right: 4vw;
  background: #008ecb;
  min-height: 0;
  transition: min-height 200ms;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands .urun_indexi {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul {
  padding: 15px 0 15px 0px;
  margin: 0 !important;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul li {
  display: block;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul li a {
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.65);
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul li a:hover {
  color: #fff;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul li.top-link a {
  color: #fff;
  font-weight: 700;
}
.navbar-expand-lg .navbar-collapse ul li .product_brands ul.deactive {
  display: none;
}
.navbar-expand-lg .navbar-collapse ul li .brand_index {
  display: none;
  position: absolute;
  top: 82px;
  left: 100%;
  transition: left 400ms;
  max-width: calc(100% - 24px);
  width: 100%;
}
.navbar-expand-lg .navbar-collapse ul li .brand_index.active {
  display: block;
  left: 12px;
}
.navbar-expand-lg .navbar-collapse ul li .brand_product {
  display: none;
}
.navbar-expand-lg .navbar-collapse ul li .back-button-group {
  font-size: 0.813rem;
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: #fff;
  margin-top: 12px;
  line-height: 1;
}
.navbar-expand-lg .navbar-collapse ul li .back-button-group svg {
  margin-right: 10px;
  margin-top: -2px;
}
.navbar-expand-lg .navbar-collapse ul li .back-button-product {
  font-size: 0.813rem;
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: #fff;
  margin-top: 12px;
  line-height: 1;
}
.navbar-expand-lg .navbar-collapse ul li .back-button-product svg {
  margin-right: 10px;
  margin-top: -2px;
}

.navbar-expand-lg .navbar-collapse ul li .company-products-group {
  position: absolute;
  top: 77px;
  left: 0;
  padding-left: 3vw !important;
  padding-right: calc(var(--bs-gutter-x) * 1.2) !important;
  visibility: hidden;
  width: 100%;
  max-width: 100%;
  /*background: #f1f1f3;*/
}

.navbar-expand-lg .navbar-collapse ul li .company-products {
  position: absolute;
  top: 77px;
  left: 0;
  padding-left: 3vw !important;
  padding-right: calc(var(--bs-gutter-x) * 1.2) !important;
  visibility: hidden;
  width: 100%;
  max-width: 100%;
  /*background: #f1f1f3;*/
}

.navbar-expand-lg .navbar-collapse ul li .menu__level--not-current {
  visibility: hidden !important;
}
.navbar-expand-lg .navbar-collapse ul li .menu__level--current {
  visibility: visible !important;
}

.navbar-expand-lg .navbar-collapse ul li .animate-outToLeft .menu__item {
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-outToLeft .back-button-group {
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-outToLeft .back-button-product {
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes outToLeft {
  to {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
}

.animate-inFromRight .menu__item {
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes inFromRight {
  from {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate-outToRight .back-button-group {
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-outToRight .back-button-product {
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-outToRight .menu__item {
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes outToRight {
  to {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
}
.animate-inFromRight .back-button-group {
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-inFromRight .back-button-product {
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-inFromRight .menu__item {
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes inFromRight {
  from {
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate-inFromLeft .back-button-group {
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-inFromLeft .back-button-product {
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.animate-inFromLeft .menu__item {
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes inFromLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
header ul.second_nav {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}
header ul.second_nav li {
  list-style: none;
  margin-left: 10px;
  margin-right: 10px;
}
header ul.second_nav li a {
  text-decoration: none;
}
header ul.second_nav li .bid-lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #515151;
  border-right: 0;
  border-radius: 21px;
  padding: 0 0 0 14px;
  text-decoration: none;
}

header ul.second_nav li .bid-lists .bid-title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 0.875rem;
  color: #515151;
  padding-right: 14px;
}

header ul.second_nav li .bid-lists .bid-number {
  display: flex;
  width: 35px;
  height: 35px;
  padding: 6px 0 5px 0;
  color: #fff;
  border-radius: 50%;
  background: #515151;
  line-height: 1;
  font-size: 0.875rem;
  align-items: center;
  justify-content: center;
}

header ul.second_nav li .bid-lists-added {
  border: 1px solid #ec383b;
}

header ul.second_nav li .bid-lists-added .bid-title {
  font-size: 0.875rem;
  padding-right: 12px;
  color: #ec383b;
}

header ul.second_nav li .bid-lists-added .bid-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 50%;
  background: #ec383b;
}
.btn_blue {
  font-size: 1rem;
  border: 1px solid #008ed0;
  background-color: #008ed0;
  color: #fff;
  padding: 12px 15px;
  text-decoration: none;
  transition: background-color 200ms, border 200ms;
  display: inline-block;
  border-radius: 4px;
  line-height: 1;
}
.btn_blue:hover {
  border: 1px solid #005379;
  background-color: #005379;
  color: #fff;
}
.btn_transparent_gray {
  font-size: 1rem;
  border: 1px solid #616161;
  color: #616161;
  padding: 12px 15px;
  text-decoration: none;
  transition: color 200ms, border 200ms;
  display: inline-block;
  border-radius: 4px;
  line-height: 1;
}
.btn_transparent_gray:hover {
  border: 1px solid #008ed0;
  background: #008ed0;
  color: #fff;
}
.btn_white {
  font-size: 1rem;
  color: #008ed0;
  padding: 12px 15px;
  text-decoration: none;
  transition: color 200ms, border 200ms, background 200ms;
  display: inline-block;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  line-height: 1;
}
.btn_white:hover {
  background: #008ed0;
  border: 1px solid #008ed0;
  color: #fff;
}
.btn_transparan_white {
  font-size: 1rem;
  color: #fff;
  padding: 12px 15px;
  text-decoration: none;
  transition: color 200ms, border 200ms, background 200ms;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 4px;
  line-height: 1;
}
.btn_transparan_white:hover {
  background: #008ed0;
  border: 1px solid #008ed0;
  color: #fff;
}
.brand_grid_cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.brand_grid_cont a {
  width: 270px;
  margin-left: 15px;
  margin-right: 15px;
  text-decoration: none;
  margin-bottom: 3em;
}
.brand_grid_cont a .item_image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e2;
  transition: box-shadow 200ms;
}
.brand_grid_cont a .item_title {
  margin-top: 15px;
  font-size: 0.875rem;
  color: #008ed0;
  text-align: center;
  display: block;
  text-decoration: none;
}
.brand_grid_cont a:hover .item_image {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.linear_animation {
  background: linear-gradient(40deg, #006d9c, #008ecb, #00b2ff);
  background-size: 200% 200%;
  -webkit-animation: bulletin 10s ease infinite;
  -moz-animation: bulletin 10s ease infinite;
  -o-animation: bulletin 10s ease infinite;
  animation: bulletin 10s ease infinite;
}
@keyframes bulletin {
  0% {
    background-position: 0 43%;
  }
  50% {
    background-position: 100% 58%;
  }
  100% {
    background-position: 0 43%;
  }
}
.nav-tabs {
  border-bottom: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  min-height: 74px;
}

.nav-tabs .nav-link {
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  color: #616161;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
  position: relative;
  transition: color 200ms, border-bottom 200ms;
}
.nav-tabs .nav-link:after {
  content: "";
  background-image: url(/frontend/img/triangle-icon.svg);
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 10px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  opacity: 0;
  transition: opacity 200ms;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #008ed0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #008ed0;
}
.nav-tabs .nav-link.active:after {
  opacity: 1;
}
#column_city_select select {
  max-width: 360px;
  width: 100%;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  border: 1px solid #97bdd4;
  border-radius: 0;
  color: #fff;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
#column_city_select select option {
  color: #616161;
}
.form-floating {
  margin-bottom: 1.5rem;
  position: relative;
}
.input_counter {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  font-size: 14px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-check-input {
  border-color: #ccc;
}
.form-check-input:focus {
  box-shadow: none;
}
.close_form {
  position: absolute;
  top: 2em;
  right: 2em;
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 200ms;
}
.close_form svg {
  width: 18px;
}
.close_form svg line {
  transition: stroke 200ms;
}
.close_form:hover {
  background-color: #333;
}
.close_form:hover svg line {
  stroke: #fff;
}
form p {
  font-size: 0.875rem;
}
form a {
  font-size: 0.875rem;
}
.form_title {
  color: #008ed0;
  font-size: 1.5rem;
}
.form_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 8;
}
.fixed_form_cont {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  padding: 2em;
  background: #fff;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  transition: transform 200ms;
}
.fixed_form_cont.active {
  transform: translate3d(0, 0, 0);
}
.fixed_form_cont textarea[name="servis_address"] {
  min-height: 113px;
}
.fixed_form_cont textarea[name="servis_equipments"] {
  min-height: 158px;
}
.fixed_form_cont textarea[name="servis_applications"] {
  min-height: 158px;
}
.fixed_form_cont textarea[name="servis_message"] {
  min-height: 159px;
}
.fixed_form_cont textarea[name="bakim_address"] {
  min-height: 113px;
}
.fixed_form_cont textarea[name="bakim_equipments"] {
  min-height: 158px;
}
.fixed_form_cont textarea[name="bakim_applications"] {
  min-height: 158px;
}
.fixed_form_cont textarea[name="bakim_message"] {
  min-height: 159px;
}
.form_text {
  font-size: 14px;
}
.form_text a {
  font-size: 14px;
}
.form-control:focus {
  box-shadow: none;
}
button.btn_blue {
  padding: 12px 30px;
}
.contained_left {
  opacity: 0;
}
.contained_right {
  opacity: 0;
}
.brand_tagline {
  background-image: url("/uploads/images/1487754501_temsilcilik-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
}
.brand_tagline h1 {
  color: #fff;
  text-align: center;
}
.brand_info {
  padding: 40px 0;
}
.brand_logo {
  overflow: hidden;
  text-align: center;
  height: 156px;
  margin-bottom: 15px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand_products {
}
.brand_products ul {
  padding: 0;
  margin: -30px -15px 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.brand_products ul li {
  max-width: calc(25% - 30px);
  width: 100%;
  list-style: none;
  margin: 30px 15px;
}
.brand_products ul li a {
  display: block;
  text-decoration: none;
}
.brand_products ul li a .product_img {
  display: flex;
  min-height: 250px;
  padding: 1em;
  border: 1px solid #e2e2e2;
  align-items: center;
  justify-content: center;
}
.brand_products ul li a .product_title {
  margin-top: 5px;
  display: block;
  color: #008ed0;
  text-decoration: none;
}

.person_list_title {
  font-size: 21px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 35px;
  padding-bottom: 5px;
  border-bottom: 1px solid #cfcfcf;
}
.person_list {
  display: flex;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}
.person_list > div {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: 15px;
  margin-right: 15px;
  min-width: calc(33.33333333% - 30px);
}
.person_list > div .item_img {
  max-width: 120px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4%;
  overflow: hidden;
  height: 140px;
  margin-right: 15px;
}
.person_list > div .item_img img {
}
.person_list > div .item_info {
}
.person_list > div .item_info a {
  text-decoration: none;
}
.person_list > div .item_info .item_title {
  display: block;
  margin-bottom: 5px;
}
.person_list > div .item_info .item_phone {
  display: block;
  margin-top: 5px;
  margin-bottom: 15px;
  text-decoration: none;
}
.play_btn {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 0;
  transition: all 0.4s;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.play_btn img {
  width: auto;
  position: absolute;
  transition: all 0.4s;
  left: 50%;
  top: 50%;
  height: 100%;
  max-width: inherit;
  z-index: 2;
  transform: translate3d(-50%, -50%, 0);
}

.play_btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  transform-origin: center;
  transition: transform 0.3s;
}

.play_btn svg path {
  transform-origin: center;
  transition: transform 0.3s;
}

.play_btn:hover svg path:first-child {
  transform: rotate(-30deg);
}

.play_btn iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.play_btn.active:before {
  display: none;
}

.play_btn.active:after {
  display: none;
}

.play_btn.active img {
  display: none !important;
}

.play_btn.active svg {
  display: none !important;
}

#header-section .row {
  align-items: center;
}
#info-section .row {
  align-items: center;
}
#info-section {
  padding: 5vh 0 !important;
}
#details_section {
  padding: 5vh 0 !important;
}
.btn-tender {
  position: relative;
  top: 0;
  transition: all 150ms linear;
  white-space: nowrap;
  color: #42b44e;
  border: 1px solid #42b44e;
  border-radius: 36px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding-right: 15px;
  margin-top: 10px;
}
.btn-tender svg {
  background-color: #42b44e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/*.btn-tender:before {
    font-size: 24px;
    top: 0;
    position: absolute;
    left: -1px;
    display: inline-block;
    width: 41px;
    height: 41px;
    content: "";
    transition: background 150ms linear;
    text-align: center;
    color: #fff;
    border-radius: 36px;
    background: #42b44e;
}

.btn-tender:after {
    font-size: 36px;
    position: absolute;
    top: 0;
    left: 0;
    content: "+";
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
}*/

.btn-tender:hover {
  transition: all 150ms linear;
  color: #fff;
  background: #42b44e;
}

.btn-tender-added {
  position: relative;
  top: 0;
  white-space: nowrap;
  color: #ec383b;
  border: 1px solid #ec383b;
  border-radius: 36px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding-right: 15px;
  margin-top: 10px;
}
.btn-tender-added svg {
  background: #ec383b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.btn-tender-added svg path:first-child {
  display: none;
}

.btn-tender-added:hover {
  color: #fff;
  background: #ec383b;
}

.bid_form_cont {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 50vw;
  width: 100%;
  height: 100%;
  transform: translate3d(100%, 0, 0);
  transition: all 400ms;
  background: #fff;
  padding: 2rem;
  z-index: 9;
  overflow-y: auto;
  overflow-x: hidden;
}
.bid_form_cont.active {
  transform: translate3d(0, 0, 0);
}

.bid_form_cont #products {
  overflow: auto;
  overflow-y: hidden;
  margin-bottom: 1em;
  white-space: nowrap;
}
.bid_form_cont #products > svg {
  margin-top: 30px;
}

.bid_form_cont #products > div {
  position: relative;
  display: inline-block;
  width: 180px;
  margin: 3px;
  margin-right: 13px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  border-radius: 1px;
  border: 1px solid #dee2e6;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.bid_form_cont #products > div button {
  position: absolute !important;
  right: 10px;
  padding: 2px 5px;
  border: 1px solid #adadad;
  border-radius: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.bid_form_cont #products > div a {
  text-decoration: none;
}
.bid_form_cont #products > div button svg {
  height: auto;
  max-width: 15px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.bid_form_cont #products > div img {
  display: inline;
  height: 120px;
  margin-top: 0 auto;
  margin-bottom: 10px;
}
.bid_form_cont textarea[name="address"] {
  min-height: 55px;
}
.bid_form_cont textarea[name="message"] {
  min-height: 380px;
}
textarea.form-control[name="teklif_message"] {
  min-height: 550px;
}
textarea.form-control[name="contact_message"] {
  min-height: 222px;
}
.category_tagline {
  background-image: url("/uploads/images/1487756897_urun-kategori-header.jpg");
  background-position: center;
  background-size: cover;
  height: 260px;
}
.category_tagline .container-fluid {
  height: 100%;
}
.category_tagline .category_title {
  align-items: center;
  height: calc(100% - 110px);
}
.category_tagline h1 {
  text-align: center;
}
.breadcrumb {
  margin-top: 15px;
  margin-left: 4px;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.breadcrumb li {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 5px;
}
.breadcrumb li:after {
  font-family: FontAwesome;
  margin-left: 10px;
  content: "\f105";
  color: #fff;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb a {
  display: block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
}
.breadcrumb a i {
  margin-right: 5px;
}
.news_bg .breadcrumb {
  margin-left: 0;
}
.news_bg .breadcrumb li:first-child {
  margin-left: 0;
}
.sub_category_section {
  padding: 3vh 0;
}

.sub_category_section .col-lg-5 {
  text-align: center;
}
.sub_category_products a {
  padding: 0.5em 0;
  display: block;
  text-decoration: none;
}
.download_btn {
  border: 1px solid #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 200ms;
}
.download_btn span {
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
}
.download_btn svg path {
  transition: all 200ms;
}
.download_btn:hover {
  background: #fff;
  color: #008ed0;
}
.download_btn:hover span {
  color: #008ed0;
}
.download_btn:hover svg path {
  stroke: #008ed0;
}
.section_docs .col-lg-6:first-child {
  padding-right: 0;
}
.section_docs .col-lg-6:last-child {
  padding-left: 0;
}
.product_docs {
  background: #2c448c;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.product_docs .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}
.product_docs .doc_img {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.product_docs .doc_img img {
  max-height: 100%;
  max-width: 100%;
}
.product_docs .doc_info {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: calc(100% - 230px);
  width: 100%;
}
.product_docs .doc_info div {
}
.product_docs .doc_info div .doc_title {
  color: #fff;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 5px;
}
.product_docs .doc_info div .doc_type {
  font-size: 1rem;
  color: #d8d8d8;
}
.product_docs .doc_info a {
}

.product_brand {
  background: #0082ca;
  padding: 30px;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.product_brand > div {
  display: flex;
  max-width: calc(100% - 140px);
}
.product_brand > div .brand_img {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.product_brand > div .brand_name {
  color: #fff;
  font-size: 1.25rem;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product_brand > div .brand_img img {
  max-height: 100%;
  max-width: 100%;
}
.product_brand.brand_flex {
  align-items: flex-start;
}
.product_brand.brand_flex .brand_btn_cont {
  height: calc(100% - 42px);
  align-items: flex-end;
}
.section_docs {
  padding: 5vh 0;
}
.doc_swiper_buttons {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 0;
  height: 42px;
  padding-right: 12px;
  z-index: 2;
}
.doc_swiper_buttons.static_buttons {
  position: static;
  justify-content: flex-end;
}
.doc_swiper_buttons .doc_next {
  width: 24px;
  height: 24px;
  position: static;
  margin: 0;
  margin-left: 3px;
  opacity: 1;
}
.doc_swiper_buttons .doc_next:after {
  display: none;
}
.doc_swiper_buttons .doc_next svg {
}
.doc_swiper_buttons .doc_prev {
  width: 24px;
  height: 24px;
  position: static;
  margin: 0;
  margin-right: 3px;
  opacity: 1;
}
.doc_swiper_buttons .doc_prev:after {
  display: none;
}
.doc_swiper_buttons .doc_prev svg {
}
.slide_docs_pagination {
  position: static;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  width: auto !important;
  margin-left: 10px;
}
.slide_docs_pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #fff;
  width: 8px;
  height: 8px;
  opacity: 1;
}
.slide_docs_pagination .swiper-pagination-bullet-active {
  width: 16px;
  background: #fff;
  border-radius: 4px;
}
.other_product_slider {
}
.other_product_slider .swiper-slide {
  height: auto;
}
.other_product_slider a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f3f3f3;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.other_product_slider a span.item_img {
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.other_product_slider a span.item_img img {
  max-height: 100%;
}
.other_product_slider a span.item_title {
  font-size: 1rem;
  color: #212121;
  font-weight: 600;
  background: #f3f3f3;
  padding: 24px 30px 20px 30px;
  display: block;
  margin-top: -4px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.other_product_slider a:hover {
  background: #008ed0;
  color: #fff;
}
.other_product_slider a:hover span.item_title {
  background: #008ed0;
  color: #fff;
}
.other_products_section {
  padding: 0 0 50px;
}
.type_slide_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.type_slide_header h3 {
  margin-bottom: 0;
}
.type_slide_header .slide_buttons {
  display: flex;
  align-items: center;
}
.type_slide_header .slide_buttons .products_prev {
  position: static;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  transform: translate3d(0, 0, 0);
}
.type_slide_header .slide_buttons .products_prev:after {
  display: none;
}
.type_slide_header .slide_buttons .products_prev svg {
  width: auto;
  height: auto;
}
.type_slide_header .slide_buttons .products_next {
  position: static;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  transform: translate3d(0, 0, 0);
}
.type_slide_header .slide_buttons .products_next:after {
  display: none;
}
.type_slide_header .slide_buttons .products_next svg {
  width: auto;
  height: auto;
}
.other_products_pagination {
  position: static;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.other_products_pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #0082ca;
  width: 8px;
  height: 8px;
  opacity: 1;
}
.other_products_pagination .swiper-pagination-bullet-active {
  width: 16px;
  background: #0082ca;
  border-radius: 4px;
}
.product_filter_section {
  background: #24448d;
  padding: 40px 0;
}
.product-filter .filtre-title {
  font-size: 16px;
  font-weight: 400;
  display: block;
  color: #ffffff;
  text-align: left;
}

.product-filter .products-cat {
  width: 100%;
  padding: 20px;
  color: #ffffff;
  border-color: #10234f;
  background: #10234f;
}

.product-filter .products-name {
  width: 100%;
  padding: 20px;
  color: #ffffff;
  border-color: #10234f;
  background: #10234f;
}
.menu_title {
  color: #696969;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
  display: block;
}
.list_menu {
  margin-bottom: 0;
  padding-left: 0;
}
.list_menu li {
  list-style: none;
  display: block;
  margin-bottom: 15px;
}
.list_menu li a {
  display: block;
  color: rgba(0, 0, 0, 0.65);
  transition: all 400ms;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.list_menu li a:hover {
  color: #008ed0;
}
footer h2 {
  font-size: 40px;
  font-weight: 200;
  color: #808180;
  opacity: 0.65;
  margin-bottom: 30px;
  margin-top: 20px;
}
footer h3 {
  color: #696969;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
}
footer p {
  font-size: 14px;
}
footer .address div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
footer .address div img {
  margin-right: 15px;
}
footer .address div p {
  margin-bottom: 0;
}
footer .address div a {
  color: #2f487e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
footer section:nth-child(2) .container {
  padding-bottom: 35px;
  border-bottom: 1px solid #2f487e;
}
footer section:nth-child(3) .container {
  padding-top: 30px;
  padding-bottom: 35px;
}
footer {
  background: #fdfdfd;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
footer .content_wrapper {
  height: 100%;
  margin-top: 0;
  min-height: initial;
}
footer ul.footer-nav {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 15px 0 15px;
}
footer ul.footer-nav li:first-child {
  border-left: 1px solid #2f487e;
}
footer ul.footer-nav li {
  list-style: none;
  border-right: 1px solid #2f487e;
}
footer ul.footer-nav li:last-child {
  border-right: 0;
}
footer ul.footer-nav li a {
  font-size: 14px;
  display: block;
  padding: 0 15px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
}
footer ul.footer-nav li span {
  font-size: 14px;
  font-weight: 600;
  color: #3d3c3c;
}
footer .site_links img {
  opacity: 0;
  margin-right: 12px;
}
footer .site_links a {
  color: #2f487e;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
footer .site_links a img {
  opacity: 1;
}
footer section:nth-child(3) .col12 {
  display: flex;
  align-items: center;
}
footer section:nth-child(3) .col12 p {
  margin-bottom: 0;
}
.search_container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -20px;
}
.product_grid a {
  text-decoration: none;
  max-width: calc(25% - 40px);
  width: 100%;
  margin: 20px;
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.product_grid a span.item_img {
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.product_grid a span.item_img img {
  max-height: 100%;
}
.product_grid a span.item_title {
  font-size: 1rem;
  color: #212121;
  font-weight: 600;
  background: #f3f3f3;
  padding: 24px 30px 20px 30px;
  display: block;
  margin-top: -4px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.product_grid a:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.product_grid a:hover {
  background: #008ed0;
  color: #fff;
}
.product_grid a:hover .item_title {
  background: #008ed0;
  color: #fff;
}
.grid_pagination {
  margin-top: 20px;
}
.grid_pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.grid_pagination li {
  list-style: none;
}
.grid_pagination li a {
  display: block;
  text-decoration: none;
  padding: 5px;
  line-height: 1;
}
.grid_pagination li a svg {
  margin-top: -1px;
}
.search_section {
  background: linear-gradient(40deg, #006d9c, #00878f, #00b2ff);
  background-size: 200% 200%;
  -webkit-animation: bulletin 20s ease infinite;
  -moz-animation: bulletin 20s ease infinite;
  -o-animation: bulletin 20s ease infinite;
  animation: bulletin 20s ease infinite;
  padding: 40px 0 20px;
}
.search_section h1 {
  text-align: center;
  color: #fff;
}
.search_section p {
  text-align: center;
  color: #fff;
}
.tabbed_nav {
}
.tabbed_nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabbed_nav ul li {
  list-style: none;
}
.tabbed_nav ul li a {
  text-decoration: none;
  color: #6c798b;
  font-size: 1.125rem;
  padding: 20px 30px;
  display: block;
  position: relative;
}
.tabbed_nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
}
.tabbed_nav ul li.active a {
  color: #008ed0;
}
.tabbed_nav ul li.active a:before {
  content: "";
  background-image: url(/frontend/img/triangle-icon.svg);
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 10px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  transition: opacity 200ms;
  z-index: 1;
}
.tabbed_nav ul li.active a:after {
  background: #008ed0;
}
.search_sayfalar_cont {
}
.search_sayfalar_cont a {
  padding: 20px;
  background: #f2f2f2;
  color: #008ed0;
  font-size: 1.125rem;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: background-color 200ms, color 200ms;
}
.search_sayfalar_cont a:hover {
  background: #008ed0;
  color: #fff;
}
.select2-container {
  width: 100% !important;
}

.type_slider .swiper-slide {
  text-decoration: none;
  width: auto;
}
.type_slider .swiper-slide .item_image {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 200ms;
  max-width: 190px;
}
.type_slider .swiper-slide .item_title {
  margin-top: 10px;
  font-size: 0.875rem;
  color: #008ed0;
  text-align: center;
  display: block;
  text-decoration: none;
}
.brand_slider {
  padding: 0 40px;
}
.brand_slide_prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  background: #fff;
}
.brand_slide_next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  background: #fff;
}
.overlay_section {
  position: relative;
}
.overlay_section .container-fluid {
  position: relative;
}
.overlay_section .container {
  position: relative;
}
.overlay_color {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.news_grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin: 5px -12px -12px;
}
.news_grid a {
  max-width: calc(33.3333333% - 24px);
  width: 100%;
  margin: 12px;
  text-decoration: none;
  transition: background-color 200ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news_grid a > span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news_grid a .item_date {
  font-size: 1rem;
  color: #515151;
  display: block;
  margin-top: 16px;
  margin-bottom: 10px;
}
.news_grid a img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.news_grid a .item_more {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.875rem;
  background-color: #0082ca;
  padding: 14px 22px;
  color: #fff;
  opacity: 0;
  transition: opacity 300ms;
}
.news_grid a .item_more svg {
  margin-right: 10px;
}
.news_grid a .item_info {
  display: flex;
  flex-direction: column;
  transition: all 300ms;
  padding: 20px 20px 0;
  position: relative;
  background: #fff;
}
.news_grid a .item_date span {
  display: block;
}
.news_grid a .item_date span:first-child {
  font-size: 1.125rem;
  margin-bottom: 2px;
  font-weight: 500;
}
.news_grid a .item_img {
  height: 450px;
  overflow: hidden;
  position: relative;
  display: block;
}
.news_grid a .item_title {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #515151;
  display: block;
  margin-bottom: 10px;
  min-height: 50px;
}
.news_grid a .item_desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #515151;
  /*max-height: 0;*/
  overflow: hidden;
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  display: block;
  transition: all 300ms;
}
.news_grid a .item_col_2 {
  background-color: #fff;
  display: flex;
  transition: all 0.3s;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100% - 450px);
}
.news_grid a:hover .item_col_2 {
  /*transform: translate3d(0, -40px, 0);*/
}

.news_grid a:hover {
  color: #fff;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.12));
}
.news_grid a:hover .item_info {
  position: relative;
  padding-bottom: 20px;
}
.news_grid a:hover .item_title {
  color: #0082ca;
}
.news_grid a:hover .item_date {
  color: #515151;
}
.news_grid a:hover .item_desc {
  color: #515151;
  max-height: 80px;
  opacity: 1;
}
.news_grid a:hover .item_more {
  opacity: 1;
}
.news_grid_head {
  display: flex;
  align-items: center;
}
.news_grid_head:not(.event_var) {
  justify-content: space-between;
}
.news_grid_head:not(.event_var) .d-flex {
  width: 100%;
  justify-content: space-between;
}

.news_grid_head.event_var .d-flex:first-child {
  max-width: calc(66.66666666% - 24px);
  width: 100%;
  justify-content: flex-start;
}
.news_grid_head.event_var .d-flex:first-child a {
  margin-left: 15px;
  position: relative;
  padding-left: 10px;
}
.news_grid_head.event_var .d-flex:first-child a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #515151;
}
.news_grid_head.event_var .d-flex:last-child {
  max-width: calc(33.33333333% - 24px);
  width: 100%;
  justify-content: space-between;
  margin-left: 24px;
}
.slide_buttons {
  display: flex;
}
.slide_buttons .event_prev,
.slide_buttons .event_next {
  position: static;
  opacity: 1;
  margin: 0;
  background: transparent;
  width: 30px;
  line-height: 1;
  height: auto;
  z-index: 1;
}
.slide_buttons .event_prev:after,
.slide_buttons .event_next:after {
  display: none;
  position: static;
  opacity: 1;
  margin: 0;
  background: transparent;
  width: 30px;
}
.slide_buttons .event_prev {
  margin-right: 3px;
}
.slide_buttons .event_next {
  margin-left: 3px;
}
.news_grid_head h2 {
  margin-bottom: 0;
}
.news_grid_head a {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  color: #515151;
}
.news_grid_head a span {
  line-height: 1;
}
.news_grid_head a:hover {
  color: #0082ca;
}
.news_grid_head a:hover svg path {
  stroke: #0082ca;
}
.news_grid_head a svg {
  margin-left: 15px;
}
.news_grid.event_grid a {
  background-color: transparent;
}
.news_grid_head.event_grid_head h2 {
  color: #fff;
}
.news_grid_head.event_grid_head a {
  color: #fff;
}
.news_grid.event_grid a .item_date {
  color: #fff;
}
.news_grid.event_grid a .item_title {
  color: #fff;
}
.news_grid.event_grid a:hover {
  background-color: #fff;
  color: #0082ca;
}
.news_grid.event_grid a:hover .item_date {
  color: #0082ca;
}
.news_grid.event_grid a:hover .item_title {
  color: #0082ca;
}
.news_grid.event_var {
  max-width: 66.66666666%;
  width: 100%;
}
.news_grid.event_var a {
  max-width: calc(50% - 24px);
}
.news_grid_cont {
  display: flex;
  justify-content: space-between;
}
.event_slider {
  max-width: calc(33.33333333%);
  width: 100%;
  margin-top: 17px;
}

.event_slider a {
  max-width: calc(100% - 24px);
  width: 100%;
  margin: 0 12px;
  text-decoration: none;
  transition: background-color 200ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event_slider a > span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.event_slider a .item_date {
  font-size: 1rem;
  color: #515151;
  display: block;
  margin-top: 16px;
  margin-bottom: 10px;
}
.event_slider a img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-width: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.event_slider a .item_more {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.875rem;
  background-color: #0082ca;
  padding: 14px 22px;
  color: #fff;
  opacity: 0;
  transition: opacity 300ms;
}
.event_slider a .item_more svg {
  margin-right: 10px;
}
.event_slider a .item_info {
  display: flex;
  flex-direction: column;
  transition: all 300ms;
  padding: 20px 20px 0;
  position: relative;
  background: #fff;
}
.event_slider a .item_date span {
  display: block;
}
.event_slider a .item_date span:first-child {
  font-size: 1.125rem;
  margin-bottom: 2px;
  font-weight: 500;
}
.event_slider a .item_img {
  height: 450px;
  overflow: hidden;
  position: relative;
  display: block;
}
.event_slider a .item_title {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #515151;
  display: block;
  margin-bottom: 10px;
  min-height: 50px;
}
.event_slider a .item_desc {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #515151;
  /*max-height: 0;*/
  overflow: hidden;
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  display: block;
  transition: all 300ms;
}
.event_slider a .item_col_2 {
  background-color: #ffffff;
  display: flex;
  transition: all 0.3s;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100% - 450px);
}
.event_slider a:hover .item_col_2 {
  /*transform: translate3d(0, -40px, 0);*/
}

.event_slider a:hover {
  color: #fff;
}
.event_slider a:hover .item_info {
  position: relative;
  padding-bottom: 20px;
}
.event_slider a:hover .item_title {
  color: #0082ca;
}
.event_slider a:hover .item_date {
  color: #515151;
}
.event_slider a:hover .item_desc {
  color: #515151;
  max-height: 80px;
  opacity: 1;
}
.event_slider a:hover .item_more {
  opacity: 1;
}

.slide_design_1_arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  padding: 5px 10px;
  left: 50%;
  width: auto;
  transform: translate3d(-50%, 0, 0);
  z-index: 1;
  border-radius: 104.202px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 8.336172103881836px 6.252128601074219px 0px
      rgba(0, 0, 0, 0.05),
    0px 1.0420215129852295px 1.0420215129852295px 0px rgba(255, 255, 255, 0.25)
      inset,
    0px -1.0420215129852295px 1.0420215129852295px 0px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.slide_design_1_arrows .slide_pagination_1 {
  position: static;
  margin: 0 15px;
  padding: 0;
  width: auto;
  display: flex;
  align-items: center;
}
.slide_design_1_arrows .slide_pagination_1 span {
  border: 2px solid #008ed0;
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 7px 5px !important;
}
.slide_design_1_arrows
  .slide_pagination_1
  span.swiper-pagination-bullet-active {
  background: #008ed0;
}
.brand_products {
  padding-bottom: 40px;
}
.brand_products .product_grid {
  justify-content: flex-start;
}
.overlay_slider {
}
.overlay_slider .container-fluid {
  position: relative;
  z-index: 2;
}
.overlay_slider .container {
  position: relative;
  z-index: 2;
}
.column_2 {
  columns: 2;
}
.column_2 li {
  padding-right: 15px;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear;
  justify-content: center;
}
.grid_container {
}
.grid_container .grid {
  max-width: calc(33.33333333% - 24px);
  width: 100%;
  margin-bottom: 24px;
  padding: 30px 30px 25px;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid_container .grid a {
  margin-top: 10px;
}
.grid_container .grid > p:first-child {
  max-height: 360px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
}
.grid_container .grid.kucuk {
  height: 400px;
}
.grid_container .grid.kucuk p:first-child {
  max-height: 255px;
  height: 100%;
}
.mobile_show {
  display: none !important;
}
.news_bg {
  background: linear-gradient(40deg, #006d9c, #00878f, #00b2ff);
  background-size: 200% 200%;
  -webkit-animation: bulletin 20s ease infinite;
  -moz-animation: bulletin 20s ease infinite;
  -o-animation: bulletin 20s ease infinite;
  animation: bulletin 20s ease infinite;
  padding: calc(4vh - 15px) 0 2vh;
}
.news_bg h1 {
  color: #fff;
  font-size: 1.875rem;
}

.page_date {
  font-size: 0.875rem;
  color: #fff;
}
body.type_news section:nth-child(2) {
  padding: 4vh 0px;
}
.type_list {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.type_list a {
  text-decoration: none;
  padding: 20px;
  transition: all 300ms;
  display: block;
  margin-bottom: 10px;
}
.type_list a span.item_date {
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #616161;
}
.type_list a span.item_title {
  font-size: 1.125rem;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  color: #008ed0;
}
.type_list a span.item_desc {
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
  color: #616161;
}
.type_list a:hover {
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 2000px) {
}
@media screen and (max-width: 1680px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1320px) {
}

@media screen and (max-width: 1200px) {
  .product_brand {
    height: 100%;
  }
  .doc_swiper_buttons {
    position: static;
    justify-content: right;
  }
}
@media screen and (max-width: 1060px) {
  .navbar-expand-lg .navbar-collapse ul li a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  footer section:nth-child(3) .col12 {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer section:nth-child(3) .col12 p {
    margin-bottom: 20px;
  }
  footer ul.footer-nav li:first-child {
    border-left: 0;
  }
  .product_grid a {
    max-width: calc(33.333333% - 40px);
  }
  .brand_products ul li {
    max-width: calc(33.3333% - 30px);
  }
}
@media screen and (max-width: 991px) {
  .grid_container .grid {
    max-width: calc(50% - 24px);
    width: 100%;
  }
  .navbar-expand-lg {
    padding-left: calc(1.5rem * 1.2);
    padding-right: 4vw;
  }
  .breadcrumb {
    margin-left: calc(1.5rem * 1.2);
  }
  header ul.second_nav li {
    margin-left: 5px;
    margin-right: 5px;
  }
  header #logo {
    max-width: 180px;
  }
  header ul.second_nav li .bid-lists .bid-number {
    background: url(/frontend/img/price-info_.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: #515151;
    border-radius: 0;
  }
  header ul.second_nav li .bid-lists {
    border: 0;
    border-radius: 0;
    padding: 0;
  }
  header ul.second_nav li .bid-lists .bid-title {
    display: none;
  }
  .navbar-toggler {
    border: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    outline: 0 !important;
    box-shadow: none !important;
    position: relative;
    margin-left: 5px;
  }
  .navbar-toggler span {
    background: #008ed0;
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(0, -3px, 0);
    transition: all 200ms;
  }
  .navbar-toggler span:last-child {
    transform: translate3d(0, 3px, 0);
  }
  .navbar-toggler[aria-expanded="true"] {
  }
  .navbar-toggler[aria-expanded="true"] span {
    transform: translate3d(0, -0, 0) rotate(45deg);
  }
  .navbar-toggler[aria-expanded="true"] span:last-child {
    transform: translate3d(0, 0, 0) rotate(-45deg);
  }
  .navbar-expand-lg > div:first-child {
    max-width: initial;
    width: auto;
  }
  header .navbar-expand-lg .navbar-collapse {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: 100vh;
    transform: translate3d(100%, 0, 0);
    padding-top: 0;
    background: #fff;
    transition: transform 300ms;
    overflow-y: auto;
  }
  header .navbar-expand-lg .navbar-collapse.show {
    transform: translate3d(0, 0, 0);
  }
  .navbar-expand-lg .navbar-collapse ul li {
    margin-bottom: 10px;
  }
  .navbar-expand-lg .navbar-collapse ul li a {
    font-size: 1.2rem;
    padding: 5px 10px;
    display: block;
  }
  .navbar-expand-lg .navbar-collapse > ul > li > a:after {
    display: none;
  }
  .navbar-expand-lg .navbar-collapse ul li:hover .mega_container {
    max-height: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .mega_container {
    position: relative;
    top: 0;
    overflow-y: auto;
  }
  .navbar-expand-lg .navbar-collapse ul li.mega_active .mega_container {
    max-height: 100vh;
    padding-bottom: 30px;
  }
  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .mega_container
    .product_categories_col {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .mega_container .urun_indexi {
    font-weight: 500;
    font-size: 1rem;
    color: #515151;
    margin: 5px 0;
    padding-bottom: 0;
    cursor: pointer;
    padding: 5px 0;
  }

  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .product_categories
    li
    a:hover
    span
    span {
    display: none;
  }
  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .product_categories
    li
    a:hover
    > span {
    border: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li {
    margin-bottom: 2px;
    max-width: 100%;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li {
    margin-bottom: 2px;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li a {
    font-size: 1rem;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li a {
    font-size: 1rem;
    min-height: 44px;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands .urun_indexi {
    color: #515151;
    border-bottom: 0;
  }
  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .mega_container
    .product_categories_col {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li {
    max-width: calc(100% - 15px);
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li a {
    color: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li a svg path {
    stroke: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .back-button-group {
    color: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .back-button-group svg path {
    stroke: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .company-products-group {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    top: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .back-button-product svg path {
    stroke: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li.top-link a {
    color: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .back-button-product {
    color: #515151;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    top: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_brands ul li {
    margin-bottom: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .mobile_menu_transform {
    position: relative;
    transform: translate3d(100vw, 0, 0);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: transform 200ms;
  }
  .navbar-expand-lg .navbar-collapse ul li .mobile_menu_transform.active {
    transform: translate3d(0, 0, 0);
    max-height: initial;
    overflow: visible;
  }
  .section_docs .col-lg-6:first-child {
    padding-left: 0;
  }
  .section_docs .col-lg-6:last-child {
    padding-right: 0;
  }
  .product_brand {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .product_docs {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .doc_swiper_buttons {
    position: absolute;
  }
  .product_filter_section .col-md-2 {
    padding-right: 0;
  }
  footer h2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .cookie_modal .modal_body {
    overflow-y: auto;
    padding-bottom: 80px;
    max-height: 100vh;
  }
  .cookie_modal .modal_body.active_setting {
    padding-bottom: 130px;
  }
  .cookie_modal .modal_body button {
    display: block;
    width: 100%;
  }
  .cookie_modal .modal_body .cookie_actions {
    flex-wrap: wrap;
  }
  .cookie_modal .modal_body .cookie_actions.active {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    max-width: calc(100% - 80px);
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .cookie_modal .modal_body .cookie_settings.active {
    max-height: 1000px;
  }
  .cookie_modal .modal_body button {
    display: block;
    width: 100%;
  }
  .cookie_modal .modal_body button:first-child {
    margin-bottom: 10px;
    margin-right: 0;
    margin-left: 0;
  }
  .cookie_modal .cookie_close {
    position: absolute;
    right: 15px;
    top: 15px;
    display: none;
  }
  .navbar-expand-lg > div {
    align-items: flex-start;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  footer ul.footer-nav {
    flex-wrap: wrap;
  }
  footer ul.footer-nav li {
    width: 100%;
    margin: 5px 0;
    border-right: 0;
  }
  footer ul.footer-nav li a {
    text-align: center;
  }
  footer section:nth-child(3) .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer .site_links {
    padding-top: 20px;
  }
  footer .site_links h3 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .news_grid a .item_img {
    height: 330px;
  }
  .event_slider a .item_img {
    height: 330px;
  }
  .navbar-expand-lg {
    padding-left: calc(1.5rem * 1);
  }
  .navbar-expand-lg .navbar-collapse ul {
    padding-left: calc((1.5rem * 1) - 10px);
    padding-right: calc((1.5rem * 1) - 10px);
  }
  .navbar-expand-lg .navbar-collapse ul.header_social {
    justify-content: center;
  }
  .navbar-expand-lg .navbar-collapse ul li {
    margin-bottom: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li a {
    padding: 6px 10px;
  }
  .navbar-collapse ul li .sub_menu_cont {
    box-shadow: none;
  }
  .navbar-collapse ul li .sub_menu_cont ul {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar-expand-lg .navbar-collapse ul li .mega_container {
    padding: 0 10px;
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-collapse ul li .mega_container .container-fluid {
    padding: 0;
  }
  .mega_container .nav-pills {
    margin-right: 0 !important;
  }
  .mega_container .nav-pills .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories {
    padding: 0;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li {
    max-width: 100%;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li a {
    line-height: 1.2;
  }
  .navbar-expand-lg .navbar-collapse ul li .product_categories li a span {
    line-height: 1.2;
  }
  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .mega_container
    .product_categories_col {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-expand-lg
    .navbar-collapse
    ul
    li
    .mega_container
    .container-fluid
    .row {
    margin: 0;
  }
  .mobile_hide {
    display: none !important;
  }
  .mobile_show {
    display: flex !important;
  }
  .grid_container .grid {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .bg_to_img {
    background-image: none !important;
    background-size: cover !important;
    background-position: none !important;
    background-repeat: none !important;
  }
  .news_grid a {
    max-width: calc(100% - 30px);
  }
  .type_slider .swiper-slide {
    width: 100%;
  }
  .type_slider .swiper-slide .item_image {
    max-width: 100%;
  }
  .product_docs .doc_info {
    max-width: calc(100%);
    margin-left: 0;
    margin-top: 10px;
  }
  .doc_swiper_buttons {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }
  .product_docs .swiper-slide {
    padding-bottom: 0;
    text-align: center;
  }
  .product_docs .doc_info a.download_btn {
    margin-top: 10px;
  }
  .product_docs .doc_img {
    margin: 0 auto;
  }
  .product_brand {
    flex-wrap: wrap;
    justify-content: center;
  }
  .product_brand > div {
    flex-wrap: wrap;
  }
  .product_brand > div .brand_img {
    margin: 0 auto;
  }
  .product_brand > div .brand_name {
    margin-left: 0;
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }
  .product_brand a {
    margin-top: 10px;
  }
  .filtre-title {
    margin-bottom: 10px;
  }
  .product-filter .select2-container {
    margin-bottom: 15px;
  }
  .product_grid a {
    max-width: calc(100% - 40px);
  }
  .person_list {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .person_list > div {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .bid_form_cont {
    max-width: 100vw;
  }
  .fixed_form_cont {
    max-width: 100vw;
    width: 100vw;
  }
  .mobile_reverse .row {
    flex-direction: column-reverse;
  }
  .f_s_60 {
    font-size: 30px;
  }
  .f_s_48 {
    font-size: 30px;
  }
  .f_s_40 {
    font-size: 30px;
  }
  .f_s_36 {
    font-size: 30px;
    line-height: 1.2;
  }
  .f_s_30 {
    font-size: 30px;
  }
  .slide_design_1_arrows {
    position: relative;
  }
  .other_products_section {
    position: relative;
  }
  .other_products_pagination {
    position: absolute;
    bottom: 0;
  }
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
  .category_tagline .row:first-child .col-lg-12 {
    padding-left: 0;
  }
  .slide_design_1_arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    padding: 5px;
    left: 0;
    width: auto;
    transform: translate3d(0, 0, 0);
    z-index: 1;
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  .news_grid {
    margin: 5px 0 0;
  }
  .news_grid_cont {
    display: block;
  }
  .news_grid.event_var {
    max-width: 100%;
  }
  .news_grid.event_var a {
    max-width: 100%;
    margin: 0;
    margin-bottom: 24px;
  }
  .event_header {
    display: flex !important;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }
  .event_header h2 {
    margin-bottom: 0;
  }
  .event_slider {
    max-width: 100%;
  }
  .event_slider a {
    margin: 0;
    max-width: 100%;
  }
  .news_grid_head.event_var .d-flex:first-child {
    max-width: 100%;
  }
}
