@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: #404040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--body-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

@font-face {
  font-family: "peli-icon";
  src: url("../font/peli-icon.eot?39623632");
  src: url("../font/peli-icon.eot?39623632#iefix") format("embedded-opentype"), url("../font/peli-icon.woff2?39623632") format("woff2"), url("../font/peli-icon.woff?39623632") format("woff"), url("../font/peli-icon.ttf?39623632") format("truetype"), url("../font/peli-icon.svg?39623632#peli-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class*=" icon-"]:before,
[class^=icons-]::after, [class*=" icons-"]:after {
  font-family: "peli-icon", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-down:before {
  content: "\e800";
} /* '' */
.icon-left:before {
  content: "\e801";
} /* '' */
.icon-right:before {
  content: "\e802";
} /* '' */
.icon-up:before {
  content: "\e803";
} /* '' */
.icon-search:before {
  content: "\e804";
} /* '' */
.icon-twitter:before {
  content: "\e80a";
} /* '' */
.icon-cancel:before {
  content: "\e80d";
} /* '' */
.icon-phone:before {
  content: "\e80e";
} /* '' */
.icon-mail:before {
  content: "\e80f";
} /* '' */
.icon-menu:before {
  content: "\e811";
} /* '' */
.icon-down-open:before {
  content: "\f004";
} /* '' */
.icon-up-open:before {
  content: "\f005";
} /* '' */
.icon-right-open:before {
  content: "\f006";
} /* '' */
.icon-left-open:before {
  content: "\f007";
} /* '' */
.icon-download:before {
  content: "\f02e";
} /* '' */
.icon-location:before {
  content: "\f031";
} /* '' */
.icon-facebook:before {
  content: "\f09a";
} /* '' */
.icon-instagram:before {
  content: "\f16d";
} /* '' */
.icon-fax:before {
  content: "\f1ac";
} /* '' */
.icon-linkedin:before {
  content: "\f318";
} /* '' */
.cc-window {
  background-color: var(--windowBg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: var(--windowPadding, 25px 15px);
  z-index: 99999;
  border: var(--windowBorder, 0);
  overflow: auto;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
          filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
}

.cc-window *,
.cc-modal-window * {
  font-family: var(--fontFamily, "Montserrat", sans-serif, Arial, sans-serif);
}

.cc-window.cc-content-right {
  text-align: right;
}

.cc-window.cc-content-left {
  text-align: left;
}

.cc-window.cc-content-center {
  text-align: center;
}

/* Position */
.cc-window.cc-pos-top,
.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
.cc-window.cc-pos-bottom,
.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
.cc-window.cc-pos-bottom-center,
.cc-window.cc-pos-top-center,
#cc-btn-dismiss {
  position: fixed;
}

.cc-window.cc-pos-top {
  --windowMarginTop: 0;
  top: var(--windowMarginTop);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-top-center {
  top: var(--windowMarginTop, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
.cc-window.cc-pos-bottom-center,
.cc-window.cc-pos-top-center {
  border-radius: var(--windowRadius, 10px);
  width: var(--windowWidth, 500px);
}

.cc-window.cc-pos-top-left,
.cc-window.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-left {
  top: var(--windowMarginTop, 24px);
}

.cc-window.cc-pos-top-left,
#cc-btn-dismiss.cc-pos-top-left {
  left: var(--windowMarginLeft, 24px);
}

.cc-window.cc-pos-top-right,
#cc-btn-dismiss.cc-pos-top-right {
  right: var(--windowMarginRight, 24px);
}

.cc-window.cc-pos-bottom {
  --windowMarginBottom: 0;
  bottom: var(--windowMarginBottom, 24px);
  left: 0;
  width: 100%;
}

.cc-window.cc-pos-bottom-center {
  bottom: var(--windowMarginBottom, 24px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.cc-window.cc-pos-bottom-left,
.cc-window.cc-pos-bottom-right,
#cc-btn-dismiss.cc-pos-bottom-left,
#cc-btn-dismiss.cc-pos-bottom-right {
  bottom: var(--windowMarginBottom, 24px);
}

.cc-window.cc-pos-bottom-left,
#cc-btn-dismiss.cc-pos-bottom-left {
  left: var(--windowMarginLeft, 24px);
}

.cc-window.cc-pos-bottom-right,
#cc-btn-dismiss.cc-pos-bottom-right {
  right: var(--windowMarginRight, 24px);
}

/* Content */
.cc-window .cc-window-title {
  font-size: var(--titleFontSize, 14px);
  font-weight: var(--titleFontWeight, 600);
  color: var(--titleTextColor, #001D35);
  padding: var(--titlePadding, 24px 24px 0 24px);
  margin-bottom: 1rem;
  display: none;
}

.cc-window .cc-window-message {
  padding: var(--messagePadding, 0px 0px 10px 0px);
  line-height: var(--messageLineHeight, 1.2rem);
}

.cc-window .cc-window-message,
.cc-window .cc-window-message a,
.cc-window .cc-window-message p {
  font-size: var(--messageFontSize, 12px);
  font-weight: var(--messageFontWeight, 400);
  color: var(--messageTextColor, #FFFFFF);
  line-height: var(--messageLineHeight, 1.2rem);
}

.cc-window .cc-window-message p {
  padding: 0 0 0.5rem 0;
}

.cc-window .cc-window-message a,
.cc-window .cc-window-message a:hover,
.cc-window .cc-window-message a:visited {
  color: var(--messageLinkColor, #FFFFFF);
  -webkit-text-decoration: var(--messageLinkDecoration, underline);
          text-decoration: var(--messageLinkDecoration, underline);
  font-weight: var(--messageLinkFontWeight, 600);
}

/* Settings */
#cc-window-settings .cc-window-settings-header {
  margin-bottom: 2rem;
}

#cc-window-settings .cc-window-settings-footer {
  margin-top: 2rem;
}

#cc-window-settings .cc-window-settings-cookie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 2px solid var(--settingsSeparatorColor, #eee);
  gap: 3rem;
  padding: 16px 0;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-content {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title {
  font-size: var(--settingsTitleSize, 14px);
  font-weight: var(--settingsTitleWidth, 600);
  margin-bottom: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-title-dropdown {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc {
  width: 100%;
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc * {
  font-size: var(--settingsFontSize, 14px);
}

#cc-window-settings .cc-window-settings-cookie .cc-window-settings-cookie-desc p {
  margin-bottom: 0.5rem;
}

/* Buttons */
.cc-window .cc-window-buttons,
.cc-modal-window .cc-window-settings-buttons {
  text-align: var(--buttonsAlign, center);
  padding: var(--buttonsPadding, 10px 10px);
}

.cc-window .cc-window-buttons button,
.cc-modal-window .cc-window-settings-buttons button {
  display: initial !important;
  font-size: var(--btnFontSize, 12px);
  font-weight: var(--btnFontWeight, 600);
  line-height: 1;
  margin: var(--btnMargin, 10px 2px 0 2px);
  padding: var(--btnPadding, 12px 12px 8px);
  border-radius: var(--btnRadius, 5px);
  cursor: pointer;
  outline: none;
  letter-spacing: 0;
}

.cc-window .cc-window-buttons button.cc-btn-accept {
  background-color: var(--btnAcceptBg, #000);
  color: var(--btnAcceptTextColor, #FFFFFF);
  border: var(--btnAcceptBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-accept:hover {
  background-color: var(--btnAcceptBgHover, #f6f6f6);
  color: var(--btnAcceptTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-reject {
  background-color: var(--btnRejectBg, #FFFFFF);
  color: var(--btnRejectTextColor, #333);
  border: var(--btnRejectBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-reject:hover {
  background-color: var(--btnRejectBgHover, #f6f6f6);
  color: var(--btnRejectTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-info {
  background-color: var(--btnInfoBg, #000);
  color: var(--btnInfoTextColor, #FFFFFF);
  border: var(--btnInfoBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-info:hover {
  background-color: var(--btnInfoBgHover, #f6f6f6);
  color: var(--btnInfoTextColorHover, #333);
}

.cc-window .cc-window-buttons button.cc-btn-settings {
  background-color: var(--btnSettingsBg, #9E9E9E);
  color: var(--btnSettingsTextColor, #ffffff);
  border: var(--btnSettingsBorder, 0);
}

.cc-window .cc-window-buttons button.cc-btn-settings:hover {
  background-color: var(--btnSettingsBgHover, #f6f6f6);
  color: var(--btnSettingsTextColorHover, #333);
}

.cc-window-settings-buttons button.cc-btn-settings-select {
  background-color: var(--btnSettingsSelectBg, transparent);
  color: var(--btnSettingsSelectTextColor, #424242);
  border: var(--btnSettingsSelectBorder, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-select:hover {
  background-color: var(--btnSettingsSelectBgHover, #E0E0E0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept {
  background-color: var(--btnSettingsAcceptBg);
  color: var(--btnSettingsAcceptTextColor, #ffffff);
  border: var(--btnSettingsAcceptBorder, 0);
}

.cc-window-settings-buttons button.cc-btn-settings-accept:hover {
  background-color: var(--btnSettingsAcceptBgHover, #1B5E20);
}

#cc-btn-dismiss {
  font-family: var(--fontFamily, "Open Sans", Arial, sans-serif);
  background-color: var(--btnDismissBg, #ddd);
  color: var(--btnDismissTextColor, #000);
  border: var(--btnDismissBorder, 0);
  font-size: var(--btnDismissFontSize, 12px);
  font-weight: var(--btnDismissFontWeight, 400);
  margin: 2rem 0.3rem 0 0.3rem;
  padding: var(--btnDismissPadding, 10px 12px);
  border-radius: var(--btnDismissRadius, 24px);
  cursor: pointer;
  outline: none;
  z-index: 99999;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.2));
          filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.2));
  opacity: 0.4;
}

#cc-btn-dismiss:hover {
  opacity: 1;
}

/* Modal https://www.w3schools.com/howto/howto_css_modals.asp */
/* The Modal (background) */
.cc-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.cc-modal-window {
  background-color: var(--popupBg, #fff);
  color: var(--popupTextColor, #333);
  margin: 10vh auto; /* 15% from the top and centered */
  border: var(--windowBorder, 0);
  -webkit-filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
          filter: drop-shadow(0px 1px 3px rgba(60, 64, 67, 0.3));
  /*width: 80%;*/
  width: var(--popupWidth, 600px);
  border-radius: var(--popupRadius, 24px);
  padding: var(--windowPadding, 24px);
}

.cc-modal-content {
  color: var(--popupTextColor, #001D35);
  padding: var(--titlePadding, 0 24px 24px 24px);
  font-size: var(--messageFontSize, 12px);
  font-weight: var(--messageFontWeight, 400);
  line-height: var(--messageLineHeight, 1.2rem);
  margin-top: 24px;
  margin-bottom: 24px;
}

.cc-modal-window .cc-modal-content h2 {
  font-size: var(--titleFontSize, 16px);
  font-weight: var(--titleFontWeight, 600);
  color: var(--titleTextColor, #001D35);
  margin-bottom: 1rem;
}

.cc-modal-window .cc-modal-content p {
  padding: 0 0 0.5rem 0;
  font-size: var(--messageFontSize, 14px);
  line-height: var(--messageLineHeight, 1.2rem);
}

/* Switch https://www.w3schools.com/howto/howto_css_switch.asp */
.cc-modal-window .cc-modal-content .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}

.cc-modal-window .cc-modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cc-modal-window .cc-modal-content .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #C62828;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cc-modal-window .cc-modal-content input:checked + .slider {
  background-color: #1b5e20;
}

.cc-modal-window .cc-modal-content input:disabled + .slider {
  background-color: #ccc;
}

.cc-modal-window .cc-modal-content input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  transform: translateX(18px);
}

.cc-modal-window .cc-modal-content .slider.round {
  border-radius: 34px;
}

.cc-modal-window .cc-modal-content .slider.round:before {
  border-radius: 50%;
}

/* The Close Button */
.cc-modal-close {
  color: var(--btnCloseColor, #aaa);
  padding: 0 12px 12px 0;
  text-align: right;
  font-size: 22px;
  font-weight: bold;
}

.cc-modal-close:hover,
.cc-modal-close:focus {
  color: var(--btnCloseColorHover, #000);
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .cc-window.cc-pos-top-left,
  .cc-window.cc-pos-top-right,
  .cc-window.cc-pos-bottom-left,
  .cc-window.cc-pos-bottom-right,
  .cc-window.cc-pos-bottom-center,
  .cc-window.cc-pos-top-center {
    width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .cc-window.cc-pos-top-left,
  .cc-window.cc-pos-top-right,
  .cc-window.cc-pos-top-center {
    top: 0;
    --windowMarginTop: 0;
  }
  .cc-window.cc-pos-bottom-left,
  .cc-window.cc-pos-bottom-right,
  .cc-window.cc-pos-bottom-center {
    bottom: 0;
    --windowMarginBottom: 0;
  }
  .cc-modal-window {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 0;
  }
}
/* Animations */
@-webkit-keyframes cc-window-animation-in-top {
  from {
    top: -80vh;
    visibility: visible;
  }
  to {
    top: var(--windowMarginTop, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-in-top {
  from {
    top: -80vh;
    visibility: visible;
  }
  to {
    top: var(--windowMarginTop, 24px);
    visibility: visible;
  }
}
@-webkit-keyframes cc-window-animation-out-top {
  from {
    top: var(--windowMarginTop, 24px);
  }
  to {
    top: -120vh;
  }
}
@keyframes cc-window-animation-out-top {
  from {
    top: var(--windowMarginTop, 24px);
  }
  to {
    top: -120vh;
  }
}
@-webkit-keyframes cc-window-animation-in-bottom {
  from {
    bottom: -80vh;
    visibility: visible;
  }
  to {
    bottom: var(--windowMarginBottom, 24px);
    visibility: visible;
  }
}
@keyframes cc-window-animation-in-bottom {
  from {
    bottom: -80vh;
    visibility: visible;
  }
  to {
    bottom: var(--windowMarginBottom, 24px);
    visibility: visible;
  }
}
@-webkit-keyframes cc-window-animation-out-bottom {
  from {
    bottom: var(--windowMarginBottom, 24px);
  }
  to {
    bottom: -120vh;
  }
}
@keyframes cc-window-animation-out-bottom {
  from {
    bottom: var(--windowMarginBottom, 24px);
  }
  to {
    bottom: -120vh;
  }
}
.cc-window.cc-animation-in.cc-pos-top,
.cc-window.cc-animation-in.cc-pos-top-left,
.cc-window.cc-animation-in.cc-pos-top-right,
.cc-window.cc-animation-in.cc-pos-top-center {
  -webkit-animation-name: cc-window-animation-in-top;
          animation-name: cc-window-animation-in-top;
  visibility: hidden;
  -webkit-animation-duration: var(--animationDuration, 1s);
          animation-duration: var(--animationDuration, 1s);
  -webkit-animation-delay: var(--animationDelay, 0.1s);
          animation-delay: var(--animationDelay, 0.1s);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-top,
.cc-window.cc-animation-out.cc-pos-top-left,
.cc-window.cc-animation-out.cc-pos-top-right,
.cc-window.cc-animation-out.cc-pos-top-center {
  -webkit-animation-name: cc-window-animation-out-top;
          animation-name: cc-window-animation-out-top;
  -webkit-animation-duration: var(--animationDuration, 1s);
          animation-duration: var(--animationDuration, 1s);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.cc-window.cc-animation-in.cc-pos-bottom,
.cc-window.cc-animation-in.cc-pos-bottom-left,
.cc-window.cc-animation-in.cc-pos-bottom-right,
.cc-window.cc-animation-in.cc-pos-bottom-center {
  -webkit-animation-name: cc-window-animation-in-bottom;
          animation-name: cc-window-animation-in-bottom;
  visibility: hidden;
  -webkit-animation-duration: var(--animationDuration, 1s);
          animation-duration: var(--animationDuration, 1s);
  -webkit-animation-delay: var(--animationDelay, 0.1s);
          animation-delay: var(--animationDelay, 0.1s);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.cc-window.cc-animation-out.cc-pos-bottom,
.cc-window.cc-animation-out.cc-pos-bottom-left,
.cc-window.cc-animation-out.cc-pos-bottom-right,
.cc-window.cc-animation-out.cc-pos-bottom-center {
  -webkit-animation-name: cc-window-animation-out-bottom;
          animation-name: cc-window-animation-out-bottom;
  -webkit-animation-duration: var(--animationDuration, 1s);
          animation-duration: var(--animationDuration, 1s);
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

:root {
  --bs-primary: #e30613;
  --body-bg:#f6f6f6;
  --menu-border:96, 101, 111;
  --category-mask:13, 13, 13;
  --cborder-bg:#d1d3d4;
  --quality-bg:#2f3628;
  --quality-border:#aa8965;
  --box-mask:#1a1a1a;
  --section-bg:#f6f7f9;
  --footer-bg:#00122d;
  --footer-bg2:#202944;
  --filter-border:#e5e5e5;
  --module-button-nav:#2f3628;
  --app-bg:#e6e6e6;
  --arrow-bg:#e5e5e5;
  --breadcrumb-tx:#b5b9bb;
  --left-menu-color:#b5b9bb;
  --windowBg: var(--bs-primary);
  --btnSettingsAcceptBg: var(--bs-primary);
  --bs-menu-width: 21.75rem;
  --bs-menu-width-xl: 18rem;
  --bs-menu-margin: 50px;
  --bs-menu-radius: 20px;
}
@media (max-width: 991.98px) {
  :root {
    --bs-menu-margin: 30px;
    --bs-menu-radius: 12px;
  }
}

html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  background-color: var(--body-bg);
  height: 100%;
}

@media (min-width: 1400px) {
  .container {
    max-width: 86vw !important;
  }
}
@media (max-width: 1599.98px) {
  .container {
    max-width: 94vw !important;
  }
}
header {
  padding: 20px 0px 12px !important;
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991.98px) {
  header {
    background-color: #FFFFFF !important;
    padding: 20px 0px !important;
  }
}
header .top-row {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991.98px) {
  header .logo {
    width: 80px !important;
  }
}
header .collapse {
  padding-left: 7%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1599.98px) {
  header .collapse {
    padding-left: 50px;
  }
}
@media (max-width: 1399.98px) {
  header .collapse {
    padding-left: 0px;
  }
}
.sticky header .collapse {
  padding-top: 0.5rem !important;
}
@media (max-width: 991.98px) {
  header .navbar-nav {
    padding-top: 20px;
  }
}
header .navbar-nav .nav-item {
  margin: 0 1rem;
}
@media (max-width: 1599.98px) {
  header .navbar-nav .nav-item {
    margin: 0 0.5rem;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-nav .nav-item {
    margin: 0 0.3rem;
  }
}
header .navbar-nav .nav-link {
  font-size: 0.9375rem;
  color: #FFFFFF;
  padding: 0.8rem 0 !important;
  margin: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  header .navbar-nav .nav-link {
    color: #404040;
  }
}
header .navbar-nav .nav-link:hover, header .navbar-nav .nav-link.show {
  color: #e30613;
}
header .navbar-nav .nav-link:hover::before, header .navbar-nav .nav-link.show::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e30613;
}
@media (max-width: 1599.98px) {
  header .navbar-nav .nav-link {
    font-size: 0.875rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-nav .nav-link {
    font-size: 0.75rem;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 991.98px) {
  header .navbar-nav .nav-link {
    font-size: 1rem !important;
    padding: 15px 0;
    border-top: 1px solid rgba(64, 64, 64, 0.2);
  }
}
header .navbar-nav .dropdown-menu {
  padding: 5px;
  width: auto;
}
header .navbar-nav .dropdown-menu li .dropdown-item {
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(var(--menu-border), 0.1);
}
header .navbar-nav .dropdown-menu li .dropdown-item:active {
  background-color: #F5F5F5;
}
header .navbar-nav .dropdown-menu li .dropdown-item:hover {
  color: #e30613;
}
header .navbar-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}
header .navbar-nav.mini-nav .nav-item:last-child {
  margin-right: 0;
}
header .navbar-nav.mini-nav .nav-item .nav-link {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 1599.98px) {
  header .navbar-nav.mini-nav .nav-item .nav-link {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-nav.mini-nav .nav-item .nav-link {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 991.98px) {
  header .navbar-nav.mini-nav .nav-item .nav-link {
    padding: 15px 0;
  }
}
header .navbar-nav.mini-nav .nav-item .nav-link:last-child {
  padding-right: 0;
}
header .navbar-nav.mini-nav .nav-item .nav-link:hover {
  color: #e30613;
}
header .navbar-nav.mini-nav .nav-item .nav-link i {
  margin-right: 5px;
  font-size: 1rem;
}
@media (max-width: 1199.98px) {
  header .navbar-nav.mini-nav .nav-item {
    font-size: 0.75rem;
  }
}
header .navbar-nav.mini-nav .dropdown-item {
  width: 160px;
  font-size: 0.8125rem;
}
header .navbar-nav.top-nav .nav-item {
  margin: 0 0.5rem;
}
@media (max-width: 575.98px) {
  header .navbar-nav.top-nav .nav-item {
    margin: 5px 0;
  }
}
header .navbar-nav.top-nav .nav-item .nav-link {
  border: 1px solid #FFFFFF;
  font-size: 0.8125rem;
  line-height: 1;
  padding: 0.3rem 1.8rem !important;
  border-radius: 4px;
}
@media (max-width: 1599.98px) {
  header .navbar-nav.top-nav .nav-item .nav-link {
    padding-left: 1rem;
    padding-left: 1rem;
  }
}
@media (max-width: 1199.98px) {
  header .navbar-nav.top-nav .nav-item .nav-link {
    font-size: 0.75rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 991.98px) {
  header .navbar-nav.top-nav .nav-item .nav-link {
    border: 1px solid #404040;
    color: #404040;
  }
}
header .navbar-nav.top-nav .nav-item .nav-link:hover, header .navbar-nav.top-nav .nav-item .nav-link.show {
  border-color: #e30613;
  background-color: #e30613;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  header .navbar-nav.top-nav .nav-item .nav-link:hover, header .navbar-nav.top-nav .nav-item .nav-link.show {
    border-color: #e30613;
    background-color: #e30613;
    color: #FFFFFF;
  }
}
header .navbar-nav.top-nav .nav-item .nav-link:hover::before, header .navbar-nav.top-nav .nav-item .nav-link.show::before {
  display: none;
}
header .navbar-nav.top-nav .nav-item .nav-link i {
  margin-right: 5px;
  font-size: 1rem;
}
header .navbar-nav.top-nav .nav-item:last-child {
  margin-right: 0;
}
header .navbar-nav.top-nav .nav-item:last-child .nav-link {
  padding: 0.3rem 0.6rem !important;
}
header .navbar-nav.top-nav .dropdown-menu {
  min-width: 6.25rem !important;
  width: 100px !important;
}
header .navbar-nav.top-nav .dropdown-menu .dropdown-item {
  font-size: 0.75rem !important;
}
.sticky header {
  background-color: #FFFFFF !important;
  padding: 10px 0px 15px !important;
}
@media (max-width: 991.98px) {
  .sticky header {
    padding: 20px 0px !important;
  }
}
.sticky header .top-row {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin: 0 !important;
}
.sticky header .navbar-nav .nav-link {
  color: #404040;
}
.sticky header .navbar-nav.top-nav .nav-item .nav-link {
  border: 1px solid #404040;
  color: #404040;
}
.sticky header .navbar-nav.top-nav .nav-item .nav-link:hover, .sticky header .navbar-nav.top-nav .nav-item .nav-link.show {
  border-color: #e30613;
  background-color: #e30613;
  color: #FFFFFF;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay .close-search {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.search-overlay .close-search:hover {
  color: #e30613;
}
.search-overlay .search-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 32px;
}
.search-overlay .search-content .search-form {
  width: 100%;
  max-width: 600px;
  position: relative;
}
.search-overlay .search-content .search-form input {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-overlay .search-content .search-form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-content .search-form input:focus {
  outline: none;
  border-bottom-color: #e30613;
}
.search-overlay .search-content .search-form button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 1.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.search-overlay .search-content .search-form button:hover {
  color: #e30613;
}

section .section-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #404040;
}

footer {
  background-color: var(--footer-bg);
  background: linear-gradient(227deg, var(--footer-bg) 30%, var(--footer-bg2) 80%);
  overflow: hidden;
}
footer .contentRow {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
  padding: 40px 0;
}
footer .contentRow .logo {
  gap: 40px;
}
footer .contentRow .logo .icon {
  width: 100px;
}
footer .contentRow .address .address-content {
  font-size: 0.75rem;
  color: #FFFFFF;
}
footer .contentRow .address .address-content a {
  color: #FFFFFF;
}
footer .contentRow .address .address-content a:hover {
  color: #e30613;
}
footer .contentRow .menu .menu-items a {
  float: left;
  width: auto;
  font-size: 0.75rem;
  color: #FFFFFF;
  line-height: 1.3;
  padding: 0.375rem 0;
}
footer .contentRow .menu .menu-items a:hover {
  color: #e30613;
}
footer .contentRow .menu .social-icons a {
  color: #FFFFFF;
  margin: 0px 30px;
  font-size: 0.875rem;
  position: relative;
}
footer .contentRow .menu .social-icons a i.icon-twitter {
  font-size: 0.75rem;
}
footer .contentRow .menu .social-icons a::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 1px;
  height: 14px;
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer .contentRow .menu .social-icons a:first-child {
  margin-left: 0px;
}
footer .contentRow .menu .social-icons a:last-child {
  margin-right: 0px;
}
footer .contentRow .menu .social-icons a:last-child::after {
  display: none;
}
footer .contentRow .menu .social-icons a:hover {
  color: #e30613;
}
footer .contentRow .menu .ebulten {
  margin-top: 40px;
}
footer .contentRow .menu .ebulten .form-label {
  width: 100%;
  font-size: 0.75rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}
@media (max-width: 575.98px) {
  footer .contentRow .menu .ebulten .form-label {
    width: 100%;
  }
}
footer .contentRow .menu .ebulten .form-element {
  width: 84%;
}
@media (max-width: 575.98px) {
  footer .contentRow .menu .ebulten .form-element {
    width: 100%;
  }
}
footer .contentRow .menu .ebulten .form-element .form-content {
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control {
  width: calc(100% - 100px);
  border-color: transparent;
  font-size: 0.75rem;
  background-color: transparent;
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::-moz-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control:-ms-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::-ms-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::-webkit-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control:-ms-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .form-control::-ms-input-placeholder {
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .btn {
  width: 99px;
  border-color: transparent;
  font-size: 0.75rem;
  color: #FFFFFF;
}
footer .contentRow .menu .ebulten .form-element .form-content .btn:hover {
  opacity: 0.6;
}
footer .contentRow .menu .ebulten .form-element .form-check {
  margin-top: 5px;
}
footer .contentRow .menu .ebulten .form-element .form-check .form-check-input {
  background-color: transparent;
}
footer .contentRow .menu .ebulten .form-element .form-check label {
  font-size: 0.6875rem;
  color: #FFFFFF;
}
footer .bottomRow .menu .item {
  font-size: 0.75rem;
  margin: 0px 10px;
  position: relative;
  color: #FFFFFF;
}
footer .bottomRow .menu .item::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 14px;
  background-color: #FFFFFF;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer .bottomRow .menu .item:first-child {
  margin-left: 0px;
}
footer .bottomRow .menu .item:last-child {
  margin-right: 0px;
}
footer .bottomRow .menu .item:last-child::after {
  display: none;
}
@media (max-width: 575.98px) {
  footer .bottomRow .menu .item {
    margin: 0;
    padding: 5px 10px;
  }
  footer .bottomRow .menu .item::after {
    display: none;
  }
}
footer .bottomRow .menu a.item {
  color: #FFFFFF;
}
footer .bottomRow .menu a.item:hover {
  color: #e30613;
}
footer .bottomRow .diversEffect {
  display: inline-block;
  width: 96px;
  height: 23px;
  display: block;
  background-image: url(../svg/diverseffect.svg);
  background-size: 96px 25px;
  background-repeat: no-repeat;
  text-indent: 9999px;
  margin: 0px;
  opacity: 0.4;
}
footer .bottomRow .diversEffect:hover {
  opacity: 1;
}

.home-slider {
  position: relative;
  background-color: #000;
}
.home-slider::after, .home-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 350px;
  z-index: 1;
  background: #000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767.98px) {
  .home-slider::after, .home-slider::before {
    display: none;
  }
}
.home-slider::before {
  height: 300px;
  z-index: 2;
}
.home-slider .owl-carousel {
  position: relative;
}
.home-slider .owl-carousel .owl-slide {
  padding: 0;
  width: 100%;
  height: 100vh;
  position: relative;
}
.home-slider .owl-carousel .owl-slide .link {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.home-slider .owl-carousel .owl-slide .textcontainer {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: auto;
  z-index: 19;
  padding-top: 250px;
}
.home-slider .owl-carousel .owl-slide .textcontainer .title {
  font-size: 2.8125rem;
  line-height: 1.3;
  color: #FFFFFF;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.5625rem;
}
@media (max-width: 767.98px) {
  .home-slider .owl-carousel .owl-slide .textcontainer .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .home-slider .owl-carousel .owl-slide .textcontainer .title {
    font-size: 1.875rem;
  }
}
.home-slider .owl-carousel .owl-slide .textcontainer .description {
  font-size: 0.875rem;
  line-height: 1.3;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 20px;
}
.home-slider .owl-carousel .owl-slide .textcontainer .btn {
  margin-top: 20px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #FFFFFF;
  border: 0;
}
.home-slider .owl-carousel .owl-slide .textcontainer .btn:hover, .home-slider .owl-carousel .owl-slide .textcontainer .btn:active {
  color: #e30613;
}
.home-slider .owl-carousel .owl-slide .cropcontainer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-slider .owl-carousel .owl-slide .cropcontainer video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-slider .owl-carousel .owl-slide .cropcontainer .video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
  overflow: hidden;
}
.home-slider .owl-carousel .owl-slide .cropcontainer .video-background::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
}
.home-slider .owl-carousel .owl-slide .cropcontainer .video-foreground,
.home-slider .owl-carousel .owl-slide .cropcontainer .video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 106%;
  pointer-events: none;
}
.home-slider .owl-carousel .owl-slide .cropcontainer #vidtop-content {
  top: 0;
  color: #fff;
}
.home-slider .owl-carousel .owl-slide .cropcontainer .vid-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1rem;
  font-family: Avenir, Helvetica, sans-serif;
}
.home-slider .owl-carousel .owl-slide .cropcontainer .vid-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}
.home-slider .owl-carousel .owl-slide .cropcontainer .vid-info a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.6s background;
  transition: 0.6s background;
  border-bottom: none;
  margin: 1rem auto;
  text-align: center;
}
@media (min-aspect-ratio: 16/9) {
  .home-slider .owl-carousel .owl-slide .cropcontainer .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .home-slider .owl-carousel .owl-slide .cropcontainer .video-foreground {
    width: 300%;
    left: -100%;
  }
}
@media all and (max-width: 600px) {
  .home-slider .owl-carousel .owl-slide .cropcontainer .vid-info {
    width: 50%;
    padding: 0.5rem;
  }
  .home-slider .owl-carousel .owl-slide .cropcontainer .vid-info h1 {
    margin-bottom: 0.2rem;
  }
}
@media all and (max-width: 500px) {
  .home-slider .owl-carousel .owl-slide .cropcontainer .vid-info .acronym {
    display: none;
  }
}
.home-slider .owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 20px;
  margin: 0;
  padding: 0;
}
.home-slider .owl-carousel .owl-dots button span {
  display: inline-block;
  width: 12px;
  height: 7px;
  border-radius: 0;
  background-color: #FFFFFF;
}
.home-slider .owl-carousel .owl-dots button:hover span {
  background-color: #9d9d9c;
}
.home-slider .owl-carousel .owl-dots button.active span {
  background-color: #e30613;
}

.home-about {
  background-color: #FFFFFF;
  background-image: url("../images/aboutus_bg.jpg");
  background-position: center bottom;
  background-size: cover;
  padding: 95px 0 125px;
  position: relative;
}
.home-about::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 3px;
  height: 56px;
  background-color: #e30613;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.home-about .container .text {
  width: 100%;
  max-width: 960px;
  height: auto;
}
.home-about .container .text h2 {
  font-size: 2.25rem;
  color: #5e616c;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .home-about .container .text h2 {
    font-size: 1.4375rem;
  }
}
.home-about .container .text p {
  font-size: 1.125rem;
  color: #5e616c;
  line-height: 2;
  margin-bottom: 20px;
}
.home-about .container .text p:last-child {
  margin-bottom: 0;
}
.home-about .container .text p a.link {
  line-height: 1;
}
.home-about .container .text p a.link i {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
}
.home-about .container .text p a.link:hover i {
  color: #e30613;
}
@media (max-width: 991.98px) {
  .home-about .container .text p {
    font-size: 0.875rem;
  }
  .home-about .container .text p a.link {
    font-size: 0.8125rem;
  }
}

.home-category .wrapper {
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  background-color: #FFFFFF;
}
.home-category .wrapper .category-item {
  border: 1px solid #FFFFFF;
  position: relative;
  overflow: hidden;
  height: 40vw;
}
.home-category .wrapper .category-item:first-child {
  border-left: 0;
}
.home-category .wrapper .category-item:last-child {
  border-right: 0;
}
@media (max-width: 767.98px) {
  .home-category .wrapper .category-item {
    padding-bottom: 100%;
  }
}
.home-category .wrapper .category-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home-category .wrapper .category-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(var(--category-mask), 0.3);
  mix-blend-mode: multiply;
  z-index: 2;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home-category .wrapper .category-item .content {
  position: absolute;
  width: 100%;
  padding: 70px 70px 0 70px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  top: 0%;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .home-category .wrapper .category-item .content {
    padding: 50px 30px 0 30px;
  }
}
.home-category .wrapper .category-item .content .title {
  font-size: 1.5625rem;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .home-category .wrapper .category-item .content .title {
    font-size: 1.125rem;
  }
}
.home-category .wrapper .category-item .content .title b {
  font-weight: 700;
}
.home-category .wrapper .category-item .go-text {
  position: absolute;
  left: 70px;
  bottom: -100px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  z-index: 5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .home-category .wrapper .category-item .go-text {
    left: 30px;
    bottom: -30px;
  }
}
.home-category .wrapper .category-item .button {
  position: absolute;
  width: auto;
  right: 120px;
  bottom: 60px;
  z-index: 4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .home-category .wrapper .category-item .button {
    right: 30px;
    bottom: 30px;
  }
}
.home-category .wrapper .category-item .button i {
  font-size: 1.5625rem;
  color: #FFFFFF;
  line-height: 1;
}
.home-category .wrapper .category-item:hover .overlay {
  opacity: 0;
}
.home-category .wrapper .category-item:hover .content {
  padding-top: 100px;
}
.home-category .wrapper .category-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home-category .wrapper .category-item:hover .go-text {
  bottom: 60px;
  opacity: 1;
}
.home-category .wrapper .category-item:hover .button {
  right: 80px;
  opacity: 1;
}

.home-companies {
  padding-top: 60px;
  padding-bottom: 20px;
  background-color: #FFFFFF;
}
.home-companies .section-title {
  font-size: 1.875rem;
}
@media (max-width: 767.98px) {
  .home-companies .section-title {
    font-size: 1.25rem;
  }
}
.home-companies .wrapper {
  border-color: var(--cborder-bg);
}
.home-companies .wrapper .item {
  padding: 30px 10px;
  text-align: center;
}
.home-companies .wrapper .item img {
  max-width: 280px;
}
.home-companies .wrapper .owl-stage-outer {
  position: relative;
  z-index: 5;
}
.home-companies .wrapper .owl-nav {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 100%;
  z-index: -1;
}
.home-companies .wrapper .owl-nav button {
  position: absolute;
  top: 0;
  color: var(--arrow-bg);
  font-size: 1.875rem;
  padding: 0;
  margin: 0;
}
.home-companies .wrapper .owl-nav button:hover {
  color: #e30613;
  background-color: transparent;
}
.home-companies .wrapper .owl-nav button.owl-prev {
  left: -30px;
}
.home-companies .wrapper .owl-nav button.owl-next {
  right: -30px;
}

.home-quality {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.home-quality .quality-box {
  background-color: var(--quality-bg);
  background-image: url(../images/quality_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-bottom: 10px;
}
.home-quality .quality-box .figure {
  width: 29%;
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .figure {
    width: 100%;
    border-bottom: 2px solid var(--quality-border);
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home-quality .quality-box .figure img {
    width: 30%;
    display: inline-block;
  }
}
.home-quality .quality-box .text {
  width: 46%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .text {
    width: 70%;
    text-align: center;
  }
}
.home-quality .quality-box .text .img-text {
  margin-top: 30px;
  width: 349px;
}
@media (max-width: 1399.98px) {
  .home-quality .quality-box .text .img-text {
    width: 250px;
  }
}
.home-quality .quality-box .text .img-text.mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .text .img-text.mobile {
    display: block;
  }
}
.home-quality .quality-box .text .img-text.desktop {
  display: block;
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .text .img-text.desktop {
    display: none;
  }
}
.home-quality .quality-box .text .img-signature {
  width: 194px;
  margin-top: 30px;
}
@media (max-width: 1399.98px) {
  .home-quality .quality-box .text .img-signature {
    width: 120px;
  }
}
.home-quality .quality-box .link {
  width: 25%;
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .link {
    width: 100%;
  }
}
.home-quality .quality-box .link span {
  display: inline-block;
  width: 320px;
  border-bottom: 2px solid var(--quality-border);
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 400;
  color: #FFFFFF;
  padding: 0 10px 5px 0;
  text-align: left;
  margin-bottom: 150px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1399.98px) {
  .home-quality .quality-box .link span {
    width: 100%;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .home-quality .quality-box .link span {
    margin: 10px 0;
    border-top: 2px solid var(--quality-border);
    border-bottom: 0;
    padding: 20px;
    text-align: center;
  }
}
.home-quality .quality-box:hover .figure {
  -webkit-animation: horizontal-shaking 3s infinite;
          animation: horizontal-shaking 3s infinite;
}
.home-quality .quality-box:hover .text {
  padding-left: 30px;
}
.home-quality .quality-box:hover .link span {
  margin-bottom: 100px;
}
.home-quality .mini-box {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.home-quality .mini-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home-quality .mini-box img {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home-quality .mini-box .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
  z-index: 3;
}
@media (max-width: 991.98px) {
  .home-quality .mini-box .text {
    width: 90%;
  }
}
.home-quality .mini-box .text h2 {
  font-size: 1.375rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .home-quality .mini-box .text h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.home-quality .mini-box .text p {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .home-quality .mini-box .text p {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }
}
.home-quality .mini-box .text a {
  font-size: 0.625rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 8px 40px;
  border: 1px solid #FFFFFF;
}
@media (max-width: 991.98px) {
  .home-quality .mini-box .text a {
    padding: 5px 10px;
  }
}
.home-quality .mini-box .text a:hover {
  color: #FFFFFF;
  background-color: #e30613;
  border-color: #e30613;
}
.home-quality .mini-box:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.home-quality .mini-box:hover .text {
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
}
.home-quality .mini-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@-webkit-keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes horizontal-shaking {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  75% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes horizontal-shaking {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  75% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.home-catalog {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
  overflow: hidden;
}
.home-catalog .image {
  width: 72%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-catalog .image img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .home-catalog .image {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.home-catalog .text {
  width: 50%;
  margin-left: -22%;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  padding: 60px 50px;
  -webkit-box-shadow: 0.035px 2px 43px 0px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0.035px 2px 43px 0px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0.035px 2px 43px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0.035px 2px 43px 0px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767.98px) {
  .home-catalog .text {
    margin-left: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
@media (max-width: 575.98px) {
  .home-catalog .text {
    padding: 30px;
  }
}
.home-catalog .text h2 {
  max-width: 460px;
  font-size: 2.375rem;
  line-height: 1.5;
  color: #000;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .home-catalog .text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .home-catalog .text h2 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
.home-catalog .text p {
  max-width: 640px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .home-catalog .text p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .home-catalog .text p {
    margin-bottom: 15px;
  }
}
.home-catalog .text a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 10px 45px;
  background-color: #e30613;
}
@media (max-width: 991.98px) {
  .home-catalog .text a {
    font-size: 0.75rem;
    padding: 6px 20px;
  }
}
.home-catalog .text a:hover {
  background-color: #404040;
}

.home-mastersclub {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #FFFFFF;
}
.home-mastersclub .box {
  display: inline-block;
  width: 100%;
  margin-top: 50px;
  border-radius: 10px;
  background-image: url(../images/ustaclub_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home-mastersclub .box .image {
  display: inline-block;
  width: 100%;
  height: auto;
  margin-top: -50px;
}
.home-mastersclub .box .text {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 50px 30px 50px 90px;
}
@media (max-width: 767.98px) {
  .home-mastersclub .box .text {
    padding: 50px 30px;
  }
}
@media (max-width: 575.98px) {
  .home-mastersclub .box .text {
    padding: 30px;
  }
}
.home-mastersclub .box .text h2 {
  font-size: 2.75rem;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .home-mastersclub .box .text h2 {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .home-mastersclub .box .text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.home-mastersclub .box .text p {
  font-size: 1.375rem;
  line-height: 1.2;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .home-mastersclub .box .text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .home-mastersclub .box .text p {
    font-size: 0.875rem;
    margin-bottom: 15px;
  }
}
.home-mastersclub .box .text a.link {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 7px 15px;
  background-color: #e30613;
}
.home-mastersclub .box .text a.link:hover {
  background-color: #404040;
}
.home-mastersclub .box .text .app {
  display: inline-block;
  width: 100%;
  height: auto;
  margin-top: 30px;
  gap: 10px;
}
.home-mastersclub .box .text .app .butons {
  width: 100px;
}
.home-mastersclub .box .text .app .butons a {
  display: inline-block;
  width: 100px;
  height: 30px;
  background-image: url(../images/app_buton.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  margin: 3px 0;
}
.home-mastersclub .box .text .app .butons a.google {
  background-position: 0 0;
}
.home-mastersclub .box .text .app .butons a.apple {
  background-position: 0 -30px;
}
.home-mastersclub .box .text .app .butons a:hover {
  opacity: 0.6;
}
.home-mastersclub .box .text .app .screen {
  width: 185px;
}
.home-mastersclub .box .text .app .app-text {
  padding-left: 20px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #000;
}

.home-imageslider {
  position: relative;
  padding: 40px 0 0px;
  background-color: #FFFFFF;
}
.home-imageslider .owl-carousel {
  position: relative;
}
.home-imageslider .owl-carousel .owl-slide {
  padding: 0;
  width: 100%;
  height: 50vw;
  position: relative;
}
@media (max-width: 767.98px) {
  .home-imageslider .owl-carousel .owl-slide {
    height: 80vw;
  }
}
.home-imageslider .owl-carousel .owl-slide .link {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.home-imageslider .owl-carousel .owl-slide .textcontainer {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: auto;
  z-index: 19;
}
.home-imageslider .owl-carousel .owl-slide .textcontainer .container {
  padding: 0px 100px;
}
@media (max-width: 575.98px) {
  .home-imageslider .owl-carousel .owl-slide .textcontainer .container {
    padding: 0px 20px;
  }
}
.home-imageslider .owl-carousel .owl-slide .textcontainer .title {
  font-size: 2.8125rem;
  line-height: 1.5;
  color: #FFFFFF;
  font-weight: 700;
  max-width: 500px;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  .home-imageslider .owl-carousel .owl-slide .textcontainer .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .home-imageslider .owl-carousel .owl-slide .textcontainer .title {
    font-size: 1.125rem;
  }
}
.home-imageslider .owl-carousel .owl-slide .textcontainer .btn {
  margin-top: 20px;
  padding: 0px !important;
}
.home-imageslider .owl-carousel .owl-slide .textcontainer .btn i {
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1;
}
.home-imageslider .owl-carousel .owl-slide .textcontainer .btn:hover i {
  color: #e30613;
}
.home-imageslider .owl-carousel .owl-slide .cropcontainer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-imageslider .owl-carousel .owl-slide .cropcontainer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
  mix-blend-mode: multiply;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home-imageslider .owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 20px;
  margin: 0;
  padding: 0;
}
.home-imageslider .owl-carousel .owl-dots button span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
}
.home-imageslider .owl-carousel .owl-dots button:hover span {
  background-color: #e30613;
}
.home-imageslider .owl-carousel .owl-dots button.active span {
  background: white;
}

.home-news {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #FFFFFF;
  background-image: url(../svg/peli_w.svg);
  background-size: 50% auto;
  background-position: left bottom -20px;
  background-repeat: no-repeat;
}
.home-news .section-title {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  color: #e30613;
}
.home-news .owl-carousel {
  position: relative;
}
.home-news .owl-carousel .item {
  width: 100%;
  gap: 20px;
}
.home-news .owl-carousel .item .image {
  overflow: hidden;
  border-radius: 8px;
}
.home-news .owl-carousel .item .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 52/35;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.home-news .owl-carousel .item .text {
  gap: 20px;
  padding: 0px;
}
.home-news .owl-carousel .item .text span.date {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 400;
  line-height: 1.4;
  color: #404040;
  text-decoration: underline;
}
.home-news .owl-carousel .item .text h3 {
  width: 100%;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #404040;
}
.home-news .owl-carousel .item .text a {
  float: left;
  width: auto;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: #e30613;
}
.home-news .owl-carousel .item .text a:hover {
  color: #404040;
}
.home-news .owl-carousel .item:hover .image img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.home-news .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: 10px;
  z-index: 1;
}
.home-news .owl-carousel .owl-nav button {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  line-height: 1 !important;
  margin: 0 !important;
  background-color: transparent !important;
}
.home-news .owl-carousel .owl-nav button.owl-prev {
  left: -40px;
}
.home-news .owl-carousel .owl-nav button.owl-prev i {
  margin-left: -1px;
}
.home-news .owl-carousel .owl-nav button.owl-next {
  right: -40px;
}
.home-news .owl-carousel .owl-nav button.disabled {
  opacity: 0.1;
  pointer-events: none;
}
.home-news .owl-carousel .owl-nav button i {
  font-size: 20px;
  color: #e30613;
}
.home-news .owl-carousel .owl-nav button:hover i {
  color: #e30613;
}
.home-news .nav-pills .nav-link {
  background: #404040;
  color: #FFFFFF;
  margin-right: 10px;
  font-weight: 600;
  font-size: clamp(0.625rem, 1vw, 0.75rem);
  border: 1px solid #FFFFFF;
  padding: 5px 10px;
}
.home-news .nav-pills .nav-link:hover {
  background: #e30613;
  border-color: #e30613;
  color: #FFFFFF;
}
.home-news .controls .customNav button {
  border: 1px solid #e30613;
  padding: 10px 15px;
}
.home-news .controls .customNav button i {
  font-size: 14px;
  color: #e30613;
}
.home-news .controls .customNav button:last-child {
  margin-left: -1px;
}
.home-news .controls .customNav button:hover {
  color: #FFFFFF;
  background: #e30613;
}
.home-news .controls .customNav button:hover i {
  color: #FFFFFF;
}
.home-news .controls .slider-counter {
  padding-left: 20px;
  font-weight: 400;
  color: rgba(227, 6, 19, 0.8);
  font-size: clamp(0.875rem, 2vw, 1rem);
}
.home-news .controls .slider-counter span#currentSlide {
  font-weight: 700;
  color: #e30613;
}
.home-news .allButon a {
  float: left;
  width: auto;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: #404040;
}
.home-news .allButon a:hover {
  color: #e30613;
}
@media (max-width: 991.98px) {
  .home-news .allButon a {
    font-size: 0.8125rem;
  }
}