/*!
Theme Name: vdtheme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vdtheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

vdtheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*===================== TABLE OF CONTENT =======================

1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom Style
11. Cookies
12. Pagination
13. Slider
14. Header
15. Services
16. Banner
17. About
18. Why Us
19. Reviews
20. References
21. Partners
22. Footer
23. References Page
24. Contact Page
25. About Page
26. Blog Page
27. Downloads Page
28. Single Page
29. Intro Home
30. Products Page
31. New Products Page

=============================================================*/
/* ================================================================================== 
1. Reset
===================================================================================== */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a,
a:active,
a:hover,
a:focus {
  outline: none;
}
abbr[title] {
  border-bottom: 1px dotted;
}
dfn {
  font-style: italic;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  
}
strong {
  font-weight: 700;
}
.fancybox__button--zoo,
.fancybox__button--slideshow,
.fancybox__button--fullscreen,
.fancybox__button--thumbs,
.fancybox__button--zoom {
  display: none;
}
.none {
  display: none;
}
ul,
ol {
  padding-left: 4rem;
}
header a, footer a, a.btn, .header-top a, h3 a, a.btn-sm-white, .download-box{
  text-decoration: none;
}
/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.7rem;
  letter-spacing: 0.2px;
}
main {
  position: relative;
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1 !important;
}
:-moz-placeholder {
  color: inherit;
  opacity: 1;
}
::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
:-ms-input-placeholder {
  color: inherit;
}
::-moz-selection {
  background-color: #eb2027;
  color: #fff;
}
::selection {
  background-color: #eb2027;
  color: #fff;
}
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;
}
.container-lg {
  max-width: 160rem;
}
.container-xl {
  max-width: 192rem;
  padding: 0;
}
.container-sm {
  max-width: 100rem;
}
.container-md {
  max-width: 130rem;
}
.container-lg2 {
  max-width: 180rem;
}
/* ================================================================================== 
5. Headings
===================================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.4;
  font-family: "Cairo", sans-serif;
}
.title h1,
.title h2 {
  font-size: 3.4rem;
}
.title2 h2 {
  font-size: 3rem;
  font-weight: 700;
}
p {
  margin-bottom: 2rem;
}
.title {
  margin-bottom: 3rem;
}

.title-center {
  text-align: center;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .title h1,
  .title h2 {
    font-size: 4rem;
  }
  .title2 h2 {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .title h1,
  .title h2 {
    font-size: 5rem;
  }
  .title2 h2 {
    font-size: 4rem;
  }
}

/* ================================================================================== 
6. Buttons
===================================================================================== */

.btn {
  display: inline-block;
  padding: 1.3rem 3rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 10rem;
}
.btn-primary {
  background-color: #eb2027;
  border-color: #eb2027;
  color: #fff;
}
.btn-secondary {
  background-color: #23262d;
  color: #fff;
  border-color: #23262d;
  background-image: url(images/arrow-right3-white.svg);
  background-position: right 2.6rem center;
  background-size: 2rem;
  background-repeat: no-repeat;
  padding-right: 6rem;
}
.btn-secondary2 {
  border-color: #eb2027;
  background-color: #eb2027;
  padding-left: 2rem;
  padding-right: 4rem;
}
.btn-primary:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.btn-secondary:hover {
  opacity: 0.4;
}
.btn-tertiary {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url(images/arrow-right3-white.svg);
  background-position: right 2.6rem center;
  background-size: 2rem;
  background-repeat: no-repeat;
  padding-right: 9rem;
  border: 1px solid #fff;
}
.btn-tertiary:hover {
  background-color: #fff;
  color: #000;
  background-image: url(images/arrow-right3.svg);
}
/* ================================================================================== 
7. Form
===================================================================================== */
form p {
  margin-bottom: 0;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  border: 1px solid #ededed;
  padding: 2rem 2rem;
  outline: none;
  background-color: #ededed;
  font-size: 1.6rem;
  border-radius: 20rem;
}
textarea {
  resize: vertical;
  height: 19rem;
  border-radius: 2rem;
}
select {
  appearance: none;
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1rem;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #eb2027;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
button {
  transition: all 0.4s ease-in-out;
  border: 0;
}
fieldset {
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*-----------*/
.wpcf7-list-item label {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
}
.wpcf7-list-item label input {
  width: auto;
  margin: 0;
}
.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-not-valid-tip {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid #f5c6cb;
  border-radius: 0.25rem;
  font-size: 1.4rem;
  color: #721c24;
  background-color: #f8d7da;
}
.wpcf7 form .wpcf7-response-output {
  position: relative !important;
  padding: 0.75rem 1.25rem !important;
  margin-top: 1rem !important;
  border: 1px solid transparent !important;
  border-radius: 0.25rem !important;
  font-size: 1.4rem !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.4rem !important;
  color: #721c24 !important;
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  font-size: 1.4rem !important;
  color: #155724 !important;
  background-color: #c3e6cb !important;
  border: 1px solid #d4edda !important;
}
/*---------------*/
.select2-container .select2-selection--single {
  height: 4rem !important;
  display: flex !important;
  align-items: center;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1.5rem !important;
}
.select2-container {
  font-size: 1.6rem;
  color: #9c4126 !important;
  font-weight: 400 !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  transform: translateY(-50%) !important;
  top: 50% !important;
}
.select2-container--default .select2-selection--single {
  background-color: #f2d8c3 !important;
  border: 1px solid #f2d8c3 !important;
  color: #9c4126 !important;
  font-weight: 400 !important;
}
.select2-dropdown {
  background-color: #f2d8c3 !important;
  border: 1px solid #f2d8c3 !important;
}
.select2-results__option {
  padding: 0.5rem 1.5rem !important;
  font-size: 1.6rem !important;
  color: #000 !important;
  font-weight: 400 !important;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: #9c4126 !important;
  color: #f2d8c3 !important;
}
/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 5rem 0;
}
.space-top {
  padding: 5rem 0 0 0;
}

.mt-5 {
  margin-top: 5rem;
}
.no-pt {
  padding-top: 0 !important;
}
.no-pb {
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 10rem 0;
  }
  .space-top {
    padding: 10rem 0 0 0;
  }
}
/* .menu-item-has-children za wp sub parent*/
/* .current_page_item za wp active link u navigaciji*/
/* ================================================================================== 
9. Breadcrumbs
===================================================================================== */
.breadcrumbs {
  background-color: #e1e1e1;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  display: inline-block;
  font-weight: 600;
}
.breadcrumbs ul li::after {
  content: "|";
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumbs ul li a {
  display: inline-block;
  font-weight: 400;
}
.breadcrumbs ul li:last-child:after {
  content: none;
}
/* ================================================================================== 
10. Custom Style
===================================================================================== */
.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}
.list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2rem;
  height: 2rem;
  background-image: url(images/list.svg);
  background-repeat: no-repeat;
  background-size: 2rem;
}
/* ================================================================================== 
11. Cookies
===================================================================================== */
.cky-btn-accept {
  background: #000 !important;
  border: 2px solid #000 !important;
}
.cky-btn-reject,
.cky-btn-customize,
.cky-btn-preferences {
  color: #000 !important;
  border: 2px solid #000 !important;
}
button.cky-show-desc-btn:not(:hover):not(:active) {
  color: #000 !important;
  font-weight: 600;
}
.cky-btn-revisit-wrapper {
  background-color: #000 !important;
}
/* ================================================================================== 
12. Pagination
===================================================================================== */
.pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  background-color: #050517;
  color: #ffff00;
  font-weight: 600;
  cursor: pointer;
}
.page-numbers.current,
.page-numbers:hover {
  background-color: #ffff00;
  color: #050517;
}
.page-numbers.current {
  cursor: text;
}
.page-numbers.next,
.page-numbers.prev {
  width: 10rem;
}
/* ================================================================================== 
13. Slider
===================================================================================== */
.slick-dots {
  position: absolute;
  left: 0;
  bottom: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.slick-dots li button {
  font-size: 0;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #f9f3eb;
  border-radius: 50%;
  position: relative;
}
.slick-dots li button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #b44f1b;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.slick-dots li.slick-active button::after {
  opacity: 1;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3rem;
  font-size: 0;
  width: 4rem;
  height: 5.5rem;
  z-index: 1;
  cursor: pointer;
}

.slick-prev {
  left: 0;
  background-image: url(images/prev.svg);
}
.slick-next {
  right: 0;
  background-image: url(images/next.svg);
}
/* -----swiper--- */

.swiper-button-next,
.swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.7rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.swiper-button-next {
  background-image: url(images/next.svg);
  right: 3rem;
}
.swiper-button-prev {
  background-image: url(images/prev.svg);
  left: 3rem;
}
/* ================================================================================== 
14. Header
===================================================================================== */
.lang {
  color: #497ca9;
  z-index: 3;
  margin-left: auto;
}
.wpml-ls-legacy-dropdown {
  width: auto;
}
.wpml-ls-legacy-dropdown a {
  border: 0;
  color: #497ca9;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border-top: 1px solid transparent;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle::after {
  display: inline-block;
  border: 0.25em solid transparent;
  border-top: 0.3em solid;
  right: 0;
  top: 50%;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  position: relative;
  padding-right: 16px;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:focus .wpml-ls-sub-menu,
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover .wpml-ls-sub-menu {
  visibility: visible;
  opacity: 1;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown a:focus,
.wpml-ls-legacy-dropdown a:hover {
  color: #0d3e66;
  background: transparent;
}
.wpml-ls-legacy-list-horizontal a {
  padding: 5px 6px 6px;
}
.wpml-ls-legacy-list-horizontal li:last-child a {
  padding-right: 0;
}
.wpml-ls-legacy-list-horizontal {
  padding: 0;
}
/*--------*/
.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.social a {
  display: block;
}
.social a img {
  display: block;
  width: 3.6rem;
  height: auto;
}
/*---------*/
.toggle {
  cursor: pointer;
  overflow: hidden;
  width: 36px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  margin-left: 3rem;
  order: 3;
}

.line-toggle {
  position: absolute;
  display: block;
  width: 36px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.6s;
  right: 0;
  z-index: 11;
}
header.scrolled .line-toggle,
.header-pages .line-toggle {
  background: #000;
}
.line-toggle:first-child {
  transform: translateY(-10px) translateX(0);
  transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
  transition-delay: 0.12s;
}

.line-toggle:last-child {
  transform: translateY(10px) translateX(0);
  transition-delay: 0s;
}
.toggle.activate .line-toggle:first-child {
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 30px;
  height: 2px;
  transition-delay: 0.1s;
}

.toggle.activate .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}
.toggle.activate .line-toggle,
header.scrolled .toggle.activate .line-toggle {
  background-color: #000;
}
.toggle.activate .line-toggle:last-child {
  transform: translateY(0) translateX(0) rotate(314deg);
  width: 30px;
  height: 2px;
  transition-delay: 0.1s;
}
/*-----------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  padding: 2rem 0 2rem 0;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  header {
    position: sticky;
  }
}
header.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 57px 7px rgba(0, 0, 0, 0.1);
}
header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-logo {
  display: block;
  margin-right: auto;
  width: 15rem;
  height: 4.5rem;
  position: relative;
}
.header-logo img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: all.4s ease-in-out;
  height: 100%;
  object-fit: contain;
}
.header-logo img.logo-img {
  opacity: 1;
  visibility: visible;
}
.header-logo img.logo-img-scrolled {
  opacity: 0;
  visibility: hidden;
}
header.scrolled .header-logo img.logo-img {
  opacity: 0;
  visibility: hidden;
}
header.scrolled .header-logo img.logo-img-scrolled {
  opacity: 1;
  visibility: visible;
}
nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding-top: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  z-index: 2;
  overflow-y: auto;
}
nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
nav li {
  display: block;
  position: relative;
}
nav li a,
nav li p {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  /* text-transform: uppercase; */
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: lowercase;
}
nav li a:first-letter,
nav li p:first-letter {
  text-transform: uppercase;
}
nav li a:hover,
nav li.current_page_item a {
  color: #eb2027;
}

.mobile-info {
  margin-top: 3rem;
  padding: 0;
  font-size: 1.6rem;
  font-size: 1.7rem;
  font-weight: 300;
}
.mobile-info li a {
  font-weight: 300;
  color: #000;
}
.mobile-info h3 {
  font-size: 2.6rem;
}
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  /* display: none; */
  padding-left: 0;
}

.sub-menu li {
  display: block;
}
.sub-menu li a {
  display: block;
  padding: 0.6rem 2rem;
  padding-right: 5rem;
  font-size: 1.6rem;
}
.sub-menu li:last-child a {
  margin-bottom: 0;
}
.menu-toggle {
  position: absolute;
  right: 0;
  top: 1px;
  width: 5rem;
  height: 5.3rem;
  background-image: url(images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  cursor: pointer;
  transition: all.4s ease-in-out;
  z-index: 2;
  background-color: #fff;
}
.sub-menu .menu-toggle {
  height: 3.5rem;
}
.o.menu-toggle {
  transform: rotate(180deg);
}
.menu-item-has-children .sub-menu li a:hover {
  color: #eb2027;
}
.sub {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
  align-items: flex-start;
}
/* .menu-item-has-children:hover .sub{
  display: flex;
} */
.sub.open-sub {
  display: flex;
}
.sub-image {
  aspect-ratio: 16/9;
  position: relative;
}
nav .sub-menu .sub-menu {
  padding-left: 2rem;
}
.sub-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.sub-image img:last-child {
  opacity: 1;
  visibility: visible;
}
.sub-image img.img-open {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
header.header-pages {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 57px 7px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  nav {
    width: 60rem;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  header nav .main-menu > ul > li.menu-item-has-children {
    background-image: url(images/arrow-down-white.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1rem;
    padding-right: 1rem;
    margin-right: 1rem;
  }
  header.scrolled nav .main-menu > ul > li.menu-item-has-children,
  header.header-pages nav .main-menu > ul > li.menu-item-has-children {
    background-image: url(images/arrow-down.svg);
  }
  header {
    color: #fff;
  }
  .header-pages .header-logo img.logo-img {
    opacity: 0;
    visibility: hidden;
  }

  header.scrolled .header-logo img.logo-img-scrolled {
    opacity: 1;
    visibility: visible;
  }
  nav li.menu-item-has-children > a {
    background-image: none !important;
  }
  .toggle {
    display: none;
  }
  header {
    padding: 1.5rem 0 1.5rem 0;
  }
  nav .sub-menu .sub-menu {
    padding-left: 0;
  }
  nav {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    transform: none;
    transition: none;
    padding: 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    margin-left: auto;
  }
  nav li {
    display: inline-block;
    padding-right: 0;
  }
  nav li a,
  nav li p {
    display: inline-block;
    padding: 2rem 1.6rem;
  }
  .mobile-info {
    display: none;
  }
.sub {
	position: fixed;
	left: 0;
	top: 10.7rem;
	width: 100%;
	background-color: #fff;
	/* opacity: 0; */
	/* visibility: hidden; */
	/* display: none; */
	transition: all 0.4s ease-in-out;
	color: #000 !important;
	padding: 5rem 2rem;
	overflow-y: auto;
	max-height: 70rem;
}
  @media only screen and (min-width: 90em) {
    /*1440px*/
    .sub {
      padding: 3rem 2rem;
    }
    .sub-menu li a {
      padding: 0.8rem 2rem;
      font-size: 1.5rem;
    }
  }
  @media only screen and (min-width: 100.0625em) {
    /*1601px*/
    .sub {
      padding: 5rem 11rem;
    }
  }
  @media only screen and (min-width: 112.5em) {
    /*1800px*/
    .sub {
      padding: 5rem 16rem;
    }
  }
  header.scrolled .sub {
    top: 7rem;
  }
  header nav .sub .sub {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    display: block;
  }
  .sub-image {
    width: 28%;
  }
  .sub-menu {
    width: 68%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .sub .sub .sub-menu li a {
    font-size: 1.5rem;
    font-weight: 300;
  }
  .sub li {
    width: 50%;
  }
  .sub .sub .sub-menu li {
    width: 100%;
  }

  nav li.menu-item-has-children > a {
    background-image: url(images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8rem;
  }
  nav li .menu-item-has-children > a {
    background-image: url(images/arrow-right2.svg);
    background-position: right 2rem center;
    background-size: 0.5rem;
  }
  nav li .menu-item-has-children > a:hover {
    background-image: url(images/arrow-right2-white.svg);
  }
  /* 
  nav .menu-item-has-children:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
    display: block;
    top: 3.5rem;
  } */

  nav .menu-item-has-children .sub-menu .sub-menu {
    left: 100%;
    top: -1rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  nav li a,
  nav li p {
    padding: 1rem;
  }
}
@media only screen and (min-width: 90em) {
  /*1440px*/
  .sub-image {
    width: 32%;
  }
  .sub-menu {
    width: 64%;
  }
}
@media only screen and (max-width: 80em) {
  /*1280px*/
  nav {
    color: #000;
    padding: 3rem;
    padding-top: 8rem;
  }
  nav li a,
  nav li p {
    font-size: 1.8rem;
  }
  .sub {
    display: block !important;
  }
  .sub-image {
    display: none;
  }
  .sub-menu {
    width: 100%;
    display: none;
  }
  .sub-menu li a {
    font-weight: 300;
  }
}
.header-pages .header-logo img.logo-img-scrolled {
  opacity: 1;
  visibility: visible;
}
header.scrolled .header-logo img.logo-img {
  opacity: 0;
  visibility: hidden;
}
/*---------------*/
.top-nav ul li {
  display: inline-block;
}
.top-nav ul li a {
  display: inline-block;
  font-size: 1.2rem;
  color: #ffff;
  padding: 0 1rem;
  /* text-transform: uppercase; */
  letter-spacing: 0;
}

.header-top {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header-search {
  width: 3.6rem;
  height: 3.6rem;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
  cursor: pointer;
}
.header-search img {
  display: block;
  width: 1.6rem;
  height: auto;
  filter: brightness(0) invert(100);
}
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  display: none;
}
.search-popup.open {
  display: flex;
}
.search-popup input {
  padding: 2rem;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.7);
}
.search-popup form {
  display: flex;
  flex-direction: row;
}
.search-popup button {
  background-color: #eb2027;
  border-color: #eb2027;
  color: #fff;
  width: 13rem;
  font-weight: 600;
}
.search-popup .container {
  position: static;
}
.close-search {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 5rem;
  cursor: pointer;
}
.header-top {
  padding: 0.8rem 0;
  background-color: #23262d;
}
.header-top .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .header-top {
    display: flex;
  }
  .close-search {
    right: 5rem;
  }
}
nav .mobile-info ul li a {
  text-transform: none;
  opacity: 0.6;
}
/* ================================================================================== 
15. Services
===================================================================================== */
.services {
  background-color: #f8f8f8;
}
/* .services-home{
    background-color: #23262d;
} */
.text-center {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

.service-box {
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 50rem;
  padding: 3rem;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.service-box.premium-box::before {
  background: linear-gradient(
    to right,
    rgba(218, 161, 76, 0.2) 0%,
    rgba(94, 75, 47, 0.6) 100%
  );
}

.service-box.premium-box::after {
  content: "Premium  proizvod";
  position: absolute;
  right: 0;
  bottom: 0;
  background: #bb9167;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 0.2rem 2rem;
  font-weight: 600;
  border-top-left-radius: 60rem;
  width: 14rem;
  height: 14rem;
  padding-left: 5rem;
  padding-top: 3rem;
  line-height: 1.3;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .service-box.premium-box::after {
    width: 17rem;
    height: 17rem;
  }
}
.service-box:last-child {
  margin-bottom: 0;
}
.service-image {
  display: block;
  margin-bottom: 2rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.2s ease-in-out;
}
.service-box:hover .service-image {
  transform: scale(1.02);
}
.service-box img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.btn-sm {
  color: #eb2027;
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
}
.btn-sm-white {
  color: #fff;
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
}

.btn-sm:hover {
  color: #000;
}
.bottom-btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.service-box h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
}
.service-box p {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-top: auto;
  transition: all 0.4s ease-in-out;
}
.service-box p {
  transform: translateY(10px);

  opacity: 0;
}
.service-box:hover p {
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .services-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
    justify-content: center;
  }
  .service-box {
    width: 48.5%;
  }
  .service-box:last-child {
    margin-bottom: 3rem;
  }
  .service-box {
    height: 57rem;
    padding: 5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .service-box {
    width: 31.3%;
  }
}
/*---------*/
@media only screen and (max-width: 64em) {
  /*1024px*/
  .service-box {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
  }
}

/* ================================================================================== 
16. Banner
===================================================================================== */
.banner {
  background-color: #eb2027;
  color: #fff;
  padding: 3rem;
}

.banner-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2rem 0;
  border: 1px solid #fff;
  border-radius: 10rem;
  background-color: transparent;
}
.banner-title img {
  display: block;
  width: 3rem;
  height: auto;
  filter: brightness(0) invert(100);
  margin-right: 3rem;
}
.banner-title p {
  margin-bottom: 0;
}
.banner p {
  margin-bottom: 0;
}
.btn-arrow {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.btn-arrow img {
  display: block;
  width: 2rem;
  height: auto;
}
.banner-text {
  display: none;
  margin-left: auto;
}
.banner .btn-arrow {
  display: none;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .banner .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .banner .btn-arrow {
    display: flex;
  }
  .banner {
    background-color: #232323;
  }
  .banner-title {
    padding: 2rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .banner-text {
    display: block;
  }
}
/* ================================================================================== 
17. About
===================================================================================== */
.about-gold {
  background-color: #23262d;
  color: #fff;
  position: relative;
}
.image-link {
  display: block;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  position: relative;
  background-image: url(images/arrow-right-gold.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3rem;
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0;
}
.image-link:hover {
  filter: brightness(0) invert(100);
}
.image-link::before {
  top: 0;
  left: 0;
  padding: 0;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
}
.image-link::after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: 3;
  border-top: 2px solid #daa14c;
  animation: infiniteRotation 2s linear infinite;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
}
.about-images {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.about-images div {
  width: 48%;
  position: relative;
}
.about-images img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/3;
}
.about-images div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.about-text {
  width: 100%;
  position: relative;
  margin-bottom: 5rem;
}
.about-text h3 {
  font-size: 2.4rem;
}
.about-text .btn {
  margin-top: 2.7rem;
}
strong {
  color: #daa14c;
}

.about-text img {
  display: block;
  width: 27rem;
  height: auto;
  margin-bottom: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(100);
}
.about-gold .btn {
  background: linear-gradient(
    to right,
    rgba(218, 161, 76, 1) 0%,
    rgb(94, 75, 47) 100%
  );
  border: none;
}
.about-gold .btn:hover {
  color: #fff;
  background: linear-gradient(
    to left,
    rgba(218, 161, 76, 1) 0%,
    rgb(94, 75, 47) 100%
  );
}
@keyframes infiniteRotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rotating-element {
  animation: infiniteRotation 2s linear infinite;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .about-wrapper {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .about-images {
    width: 48%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .about-text {
    width: 48%;
    padding-left: 15rem;
    margin-bottom: 0;
  }
  .about-text img {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: rotate(-90deg);
    transform-origin: 20% 0;
    margin-bottom: 0;
  }
  .about-images div:nth-of-type(1) {
    margin-top: -14rem;
  }
  .about-gold {
    padding: 7rem 0;
  }
}
@media only screen and (min-width: 90.0625em) {
  /*1441x*/
  .about-gold {
    padding: 10rem 0;
  }
}
@media only screen and (min-width: 100em) {
  /*1600px*/
  .about-gold {
    padding: 15rem 0;
  }
}
/* ================================================================================== 
18. Why Us
===================================================================================== */
.whyus {
  /* background-color: #f8f8f8; */
}

.why-box {
  width: 100%;
  margin-bottom: 3rem;
  background-color: #fff;
  padding: 2.5rem;
  box-shadow: 0 0 23px 14px rgba(0, 0, 0, 0.03);
}
.why-icon {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  margin-bottom: 3rem;
}
.why-box img {
  display: block;
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}
.why-box h3 {
  font-size: 2.6rem;
}
.why-box .btn-secondary {
  margin-top: 2rem;
  width: 100%;
}
.why-box .btn {
  margin-top: 2rem;
}
.why-box:last-child {
  background-color: #fff;
  width: 100%;
}

.why-box .btn-primary {
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .why-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
    margin-top: 5rem;
  }
  .why-box {
    width: 48.5%;
    padding: 5rem;
  }
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .why-box h3 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .why-box {
    width: 31.3%;
  }
  .why-box:last-child {
    width: 31.3%;
  }
}
/* ================================================================================== 
19. Reviews
===================================================================================== */
.reviews {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.reviews-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.reviews-text {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
.reviews-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.reviews-slider .swiper-slide {
  padding: 2rem 2rem;
  background-color: #f8f8f8;
  box-sizing: border-box;
}
.review-author {
  text-align: right;
}
.reviews .reviews-text p {
  display: none;
}
.reviews .swiper-button-next1,
.reviews .swiper-button-prev1 {
  display: none;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .reviews-slider .swiper-slide {
    padding: 5rem 10rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .reviews .reviews-text {
    display: block;
    margin-bottom: 5rem;
  }
  .reviews-slider .swiper-slide {
    padding: 5rem 5rem;
  }
  .reviews .swiper-button-next1,
  .reviews .swiper-button-prev1 {
    display: block;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .text-mobile {
    display: none;
  }
  .reviews {
    background-attachment: fixed;
  }
  .reviews-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .reviews-text {
    width: 30%;
    margin-bottom: 0;
    text-align: left;
  }
  .reviews-slider {
    width: 60%;
  }
}
/* ================================================================================== 
20. References
===================================================================================== */
.references-content {
  color: #fff;
  background-color: #23262d;
}
.references-slider .swiper-slide {
  position: relative;
  box-sizing: border-box;
}
.references-slider {
  overflow: hidden;
}
.references-slider img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1.4;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.references-slider .swiper-slide a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );

  z-index: 1;
}
.references-slider .swiper-slide a:hover img {
  transform: scale(1.05);
}
.references-slider .swiper-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
.swiper-slide h3 {
  position: absolute;
  width: 100%;
  bottom: 5rem;
  padding: 0 5rem;
  text-align: center;
  color: #fff;
  margin: 0;
  z-index: 2;
  font-size: 2.1rem;
  font-weight: 600;
}
.swiper-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
.references-content .swiper-button-next2,
.references-content .swiper-button-prev2 {
  filter: brightness(0) invert(100);
}
.references .text-center {
  display: none;
}
.ref-relative {
  position: relative;
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .references-slider img {
    aspect-ratio: 2/ 2.4;
  }
  .references .text-center {
    display: block;
  }
}
/* ================================================================================== 
21. Partners
===================================================================================== */
.partners-slider {
  overflow: hidden;
}
.partners-slider .swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 6rem;
  object-fit: contain;
}
.partners-slider .swiper-button-next,
.partners-slider .swiper-button-prev {
  filter: none;
}

.partners-content {
  position: relative;
}
.partners-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.partner-box {
  width: 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-box a {
  display: block;
}
.partner-box img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: contain;
  padding: 3rem;
  transition: all 0.4s ease-in-out;
    filter: grayscale(100);
}
.partner-box:hover img {
  filter: grayscale(100);
}
.partner-box:hover {
  box-shadow: 0 0 27px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .partner-box {
    width: 33.33%;
  }
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .partner-box {
    width: 16.6666%;
  }
  .partner-box img {
    height: 12rem;
  }
}
@media only screen and (min-width: 90.0625em) {
  /*1441x*/
  .partners-slider .swiper-button-next {
    right: -5rem;
  }
  .partners-slider .swiper-button-prev {
    left: -5rem;
  }
}
/* ================================================================================== 
22. Footer
===================================================================================== */
footer {
  background-color: #23262d;
  line-height: 1.7;
  color: #fff;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
.footer-logo img {
  display: block;
  width: 18rem;
  height: auto;
}
.footer-logo {
  display: block;
  margin-bottom: 3rem;
}
.eu img {
  display: block;
  width: 25rem;
  height: auto;
}

.footer-box {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}
.footer-box:last-child {
  margin-bottom: 0;
}
.copyright {
  padding: 1rem 0;
  background-color: #23262d;
  font-size: 1.4rem;
  color: #fff;
}
.copyright .container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}
footer .social {
  justify-content: center;
  filter: brightness(0) invert(100);
}
.footer-box h3 {
  font-size: 2.6rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .footer-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-box {
    width: 48%;
    margin-bottom: 3rem;
    text-align: left;
  }
  .footer-box:last-child {
    margin-bottom: 3rem;
  }
  .copyright .container {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    justify-content: space-between;
  }
  .footer-logo img {
    width: 24rem;
  }
  .eu img {
    width: 30rem;
  }
  footer .social {
    justify-content: flex-start;
  }
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-logo {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .footer-box {
    width: auto;
    margin: 0;
  }
  .footer-box:last-child {
    margin-bottom: 0;
  }
  .footer-box h3 {
    font-size: 3rem;
  }
}
/*---------*/
.fixed-btns {
  position: fixed;
  bottom: 10rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}
.fixed-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 5.5rem;
  height: 5.5rem;
  text-align: center;
  background-color: #31343e;
  font-weight: 400;
  border-radius: 1rem;
}
.fixed-btns a img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  filter: brightness(0) invert(100);
  margin-bottom: 5px;
}
.fixed-btns a span {
  color: #fff;
  font-size: 0.8rem;
}

@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .fixed-btns a {
    width: 7rem;
    height: 7rem;
  }
  .fixed-btns a span {
    font-size: 1rem;
  }
  .fixed-btns a img {
    width: 1.8rem;
    height: 1.8rem;
  }
  .fixed-btns {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* ================================================================================== 
23. References Page
===================================================================================== */
.ref-box {
  width: 100%;
  margin-bottom: 3rem;
  display: block;
  position: relative;
  overflow: hidden;
}
.ref-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.ref-box:last-child {
  margin-bottom: 0;
}
.ref-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/18;
  transition: all 0.4s ease-in-out;
}
.ref-box:hover img {
  transform: scale(1.1);
}
.ref-box h3 {
  position: absolute;
  width: 100%;
  bottom: 5rem;
  padding: 0 5rem;
  text-align: center;
  color: #fff;
  margin: 0;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 500;
}

@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .ref-box {
    width: 48.5%;
  }
  .references-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
  }
  .ref-box:last-child {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .ref-box {
    width: 31.3%;
  }
}
/*-----*/

.single-reference-text {
  width: 100%;
  margin-bottom: 5rem;
}
.single-reference-images {
  width: 100%;
  position: relative;
}
.images-slider {
  overflow: hidden;
}
.images-slider img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 12/9;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .single-reference-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .single-reference-text {
    width: 48%;
    margin-bottom: 0;
  }
  .single-reference-images {
    width: 48%;
  }
}
/* ================================================================================== 
24. Contact Page
===================================================================================== */
.contact-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
}
.contact-form {
  width: 100%;
  margin-bottom: 3rem;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 2rem;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 23px 14px rgba(0, 0, 0, 0.03);
}
.contact-text h3 {
  font-size: 2.1rem;
}
.contact-text p {
  margin-bottom: 3rem;
}
.contact-btn {
  text-align: left;
}
.contact-btn input {
  width: auto;
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .contact-text {
    width: 48%;
  }
  .contact-form {
    width: 48%;
    padding: 5rem;
  }
}

@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .contact-text h3 {
    font-size: 2.4rem;
  }
}
.bg {
  background-color: #f8f8f8;
}
/* ================================================================================== 
25. About Page
===================================================================================== */
.top-image {
  width: 100%;
  height: 40rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.about-page-image {
  width: 100%;
}
.about-page-image img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.about-page-text {
  width: 100%;
  position: relative;
  margin-bottom: 5rem;
}
.about-page-wrapper2 {
  padding: 5rem 0;
}

.about-box {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
  padding: 5rem;
  background-color: #23262d;
  color: #fff;
  box-shadow: 0 0 23px 14px rgba(0, 0, 0, 0.03);
}
.about-box h3 {
  font-size: 2.4rem;
}
.about-box:last-child {
  margin-bottom: 0;
}
.about-box img {
  display: block;
  width: 5rem;
  height: auto;
  margin: 0 auto;
  margin-bottom: 3rem;
  filter: brightness(0) invert(1000);
}
.about-page-wrapper3 .btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .about-page-wrapper2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
  }
  .about-box {
    width: 48.5%;
  }
  .about-box:last-child {
    margin-bottom: 3rem;
  }
  .about-box img {
    width: 5rem;
  }
  .about-box h3 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .about-page-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .about-page-wrapper3 {
    flex-direction: row-reverse;
  }
  .about-page-image {
    width: 48%;
  }
  .about-page-text {
    width: 48%;
    margin-bottom: 0;
  }
  .about-page-wrapper2 {
    padding: 10rem 0;
  }
  .top-image {
    background-attachment: fixed;
  }
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .top-image {
    margin-top: -7.86rem;
    display: none;
  }
}
/* ================================================================================== 
26. Blog Page
===================================================================================== */
.blog-box {
  width: 100%;
  margin-bottom: 4rem;
}
.blog-box h3 {
  font-size: 2.1rem;
}
.blog-box:last-child {
  margin-bottom: 0;
}
.blog-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.4s ease-in-out;
  aspect-ratio: 1/1;
}
.blog-image:hover img {
  transform: scale(1.1);
}
.blog-image {
  display: block;
  width: 100%;
  margin-bottom: 3rem;
  overflow: hidden;
}
.article-image {
  margin-bottom: 5rem;
}
.article-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .blog-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
  }
  .blog-box {
    width: 48.5%;
  }
  .blog-box:last-child {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .blog-box {
    width: 31.3%;
  }
  .blog-box h3 {
    font-size: 2.4rem;
  }
}
/* ================================================================================== 
27. Downloads Page
===================================================================================== */
.downloads-wrapper {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  gap: 1%;
}
.download-box {
  width: 49.5%;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 0 23px 14px rgba(0, 0, 0, 0.03);
  border-radius: 2rem;
}
.download-box:hover {
  border-color: #eb2027;
}
.download-box img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  height: auto;
  object-fit: cover;
  margin-bottom: 2rem;
}
.downloads-filter {
  margin-bottom: 5rem;
}
.download-box h3 {
  font-size: 1.8rem;
  border-top: 1px solid #e7e7e7;
  padding-top: 2rem;
  margin-bottom: 0;
  font-weight: 400;
}

.downloads-filter fieldset {
  width: 100%;
  margin-bottom: 2rem;
}
.downloads-filter fieldset:last-child {
  margin-bottom: 0;
}
.downloads-filter fieldset select {
  width: 100%;
}
.d-btn button {
  width: 100%;
  height: 6.3rem;
  text-align: right;
  background-image: url(images/search-white.svg);
  background-position: left 2rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.d-btn button:hover {
  background-image: url(images/search2.svg);
}

@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .downloads-filter form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 3%;
  }
  .downloads-filter fieldset {
    width: 48.5%;
  }
  .downloads-filter fieldset:last-child {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .download-box {
    width: 32.6%;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .download-box {
    width: 24.2%;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .downloads-filter fieldset {
    width: 22.7%;
  }
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .download-box {
    width: 19.2%;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .download-box {
    width: 15.8%;
  }
}
/*--------*/
.downloads-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 22;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}
.downloads-popup.open {
  opacity: 1;
  visibility: visible;
}

.downloads-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.downloads-inner {
  width: 40rem;
  height: 100%;
  padding: 5rem;
  padding-top: 8rem;
  background-color: #fff;
  box-shadow: 0 0 8px 9px rgba(0, 0, 0, 0.03);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  z-index: 1;
}
.downloads-popup.open .downloads-inner {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.close-downloads {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #000;
  font-size: 5rem;
  cursor: pointer;
  z-index: 2;
}
.downloads-popup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.downloads-popup ul li {
  display: block;
}
.downloads-popup ul li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 5px 0;
  padding-left: 4rem;
  background-image: url(images/downloads.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2rem;
}
.downloads-popup ul li a:hover {
  color: #eb2027;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/

  .close-downloads {
    right: 5rem;
  }
}
/* ================================================================================== 
28. Single Page
===================================================================================== */
.single-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-images {
  width: 100%;
  overflow: hidden;
}
.single-text {
  width: 100%;
  margin-top: 5rem;
}
.thumbs-gallery img {
  display: block;
  height: auto;
  width: 100%;
}
.thumbs-gallery .swiper-slide {
  cursor: pointer;
}
.single-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.single-price {
  font-size: 2.6rem;
  margin: 3rem 0;
}
.single-selection {
  padding-top: 3rem;
  border-top: 1px solid #e7e7e7;
}
.single-link {
  padding: 2.5rem;
  background-color: #eef2ee;
  margin-top: 2.5rem;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.thumbs-gallery {
  margin-top: 2rem;
}
.thumbs-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.single-category {
  opacity: 0.57;
  margin-bottom: 2rem;
}
.single-text .btn {
  margin-top: 2rem;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .single-wrapper {
    flex-direction: row;
  }
  .single-images {
    width: 50%;
  }
  .single-text {
    width: 50%;
    padding-left: 5rem;
    margin-top: 0;
  }
  .single-link {
    padding: 5rem;
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
}
/*---------*/

/* ================================================================================== 
29. Intro Home
===================================================================================== */
.intro {
  position: relative;
  height: auto;
  color: #fff;
  overflow: hidden;
  display: block;
}
.intro-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.intro-btns {
  margin-top: 4rem;
}
.intro-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: kenburns-top 16s ease-out infinite alternate both;
  animation: kenburns-top 16s ease-out infinite alternate both;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.intro .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.intro-text {
  max-width: 70rem;
  width: 100%;
}
.kenburns-top {
  -webkit-animation: kenburns-top 5s ease-out infinite alternate both;
  animation: kenburns-top 5s ease-out infinite alternate both;
}
@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .intro-image {
    background-attachment: fixed;
  }
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .intro {
    margin-top: -7.86rem;
  }
}
/*------------*/

.intro-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  padding: 8rem 2rem;
}
.intro-box .intro-text {
  z-index: 1;

  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.intro-box .intro-text .btn {
  margin-top: auto;
}
.intro-box:first-child {
  padding-top: 14rem;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .intro-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
  }
  .intro-box {
    width: 50%;
  }
  .intro-box .intro-text {
    min-height: 36rem;
    max-width: 80%;
  }
  .intro-box {
    padding: 2rem 5rem;
  }
  .intro {
    height: 100vh;
  }
  .intro-box:first-child {
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 100.0625em) {
  /*1601px*/
  .intro-box .intro-text {
    max-width: 70rem;
  }
  .intro-box {
    justify-content: center;
  }
}
/* ================================================================================== 
30. Products Page
===================================================================================== */

.page-aside {
  display: none;
}
.page-aside h3 {
  background-image: url(images/arrow-down2.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.8rem;
  font-size: 2rem;
  font-weight: 400;
  cursor: pointer;
}

.products-box {
  width: 100%;
  margin-bottom: 3rem;
}
.products-box:last-child {
  margin-bottom: 0;
}
.products-image {
  display: block;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
.products-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/11;
  transition: all 0.4s ease-in-out;
}
.products-image:hover img {
  transform: scale(1.1);
}
.products-box-text {
  padding: 2rem;
  width: 90%;
  margin-left: auto;
  margin-top: -8rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
  border: 1px solid #fff;
}
.products-box-text h3 {
  font-size: 2.8rem;
}
.products-box.premium .products-box-text {
  border-color: #e0bb7f;
}
.products-box.premium .btn-sm {
  color: #e0bb7f;
}
.products-box.premium .products-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18rem;
  height: 6rem;
  background-image: url(images/logo-bach-premium-white.png);
  background-repeat: no-repeat;
  background-size: 15rem;
  z-index: 1;
  padding: 1rem;
  background-position: center;
}
.page-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-aside ul li a {
  display: block;
  padding: 0.6rem 1rem;
  padding-right: 2rem;
  padding-right: 0;
  font-size: 1.6rem;
  border-bottom: 1px solid #e7e7e7;
}
.page-aside .sub-menu {
  display: none;
  opacity: 1;
  visibility: visible;
  position: static;
  top: auto;
  left: auto;
  width: auto;
  background-color: transparent;
  background-color: #f8f8f8;
}
.page-aside .sub-menu li a {
  font-size: 1.4rem;
}
.page-aside .sub-menu .sub-menu {
  display: none;
  opacity: 1;
  visibility: visible;
  position: static;
  top: auto;
  left: auto;
  width: auto;
  background-color: transparent;
}
.page-aside > ul > li:first-child > .sub-menu {
  display: block;
}
.page-aside > ul > li > a {
  font-weight: 600;
}

.text-left {
  margin-bottom: 5rem;
  max-width: 80rem;
  width: 100%;
}
@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .products-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3%;
  }
  .products-box {
    width: 48.5%;
  }
  .products-box:last-child {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 61.3125em) {
  /*981px*/
  .page-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-aside {
    width: 30rem;
    display: block;
  }
  .page-content {
    width: calc(100% - 35rem);
    margin-top: 0;
  }
  .page-aside h3 {
    font-size: 2.3rem;
  }
}

/*-------*/
.premium-page{
  padding-top: 5rem;
}
.pages-no-image{
  padding-top: 15rem;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .premium-page{
    padding-top: 10rem;
  }
  .pages-no-image{
    padding-top: 10rem;
  }
}
.premium-page .btn-primary {
  background-color: #e0bb7f;
  border-color: #e0bb7f;
}
/*-------*/
.premium-page .btn-primary:hover {
  border-color: #e0bb7f;
  background-color: transparent;
  color: #e0bb7f;
}
.premium-page .tabs a:hover,
.premium-page .tabs a.active-tab {
  border-color: #e0bb7f;
  color: #e0bb7f;
}
.premium-page .title img {
  display: block;
  width: 20rem;
  height: auto;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.premium-page .title {
  margin-bottom: 5rem;
}
/*----*/
.lg-slider {
  overflow: hidden;
  position: relative;
}
.lg-slider img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/4;
  object-fit: cover;
}
.premium-image img {
  display: block;
  width: 100%;
  height: auto;
}
.premium-page .single-wrapper {
  flex-direction: column-reverse;
}
.premium-page .single-wrapper2 {
  margin-top: 5rem;
}
.premium-page .single-text {
  margin-top: 0;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .premium-page .single-wrapper {
    flex-direction: row-reverse;
    align-items: center;
  }
  .premium-page .single-wrapper2 {
    flex-direction: row;
  }
  .premium-page .single-text {
    padding-left: 0;
    padding-right: 5rem;
  }
  .premium-page .single-wrapper2 .single-text {
    padding-left: 5rem;
    padding-right: 0;
  }
  .premium-page .single-text {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .premium-page .title {
    margin-bottom: 10rem;
  }
}
/*-------*/
.hidden {
  opacity: 0;
}
.visible {
  opacity: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* ================================================================================== 
31. New Products Page
===================================================================================== */

.tabs {
  width: 100%;
}
.tabs-contents {
  width: 100%;
  margin-top: 3rem;
}
.tabs a {
  display: block;
  border-radius: 10rem;
  font-weight: 600;
  padding: 2rem;
  width: 100%;
  background-color: #0e1619;
  color: #fff;
  margin-bottom: 1rem;
  padding-left: 8.6rem;
  background-repeat: no-repeat;
  background-position: left 3.5rem center;
  background-size: 3.4rem;
  font-size: 1.8rem;
}
.tabs a.link1 {
  background-image: url(images/opis.svg);
}
.tabs a.link2 {
  background-image: url(images/tehnoloske-karakteristike.svg);
}
.tabs a.link3 {
  background-image: url(images/preuzimanja.svg);
}
.tabs a:hover,
.tabs a.active-tab {
  background-color: #eb2027;
}
.tabs-container h2 {
  font-size: 2.4rem;
}
.tabs-container {
  width: 100%;
  display: none;
}
.tabs-container,
.tabs-containerv {
  width: 100%;
  display: none;
}
.tabs-container.active-tab {
  display: block;
}
.tabs-containerv.active-tabv {
  display: block;
}
.single-bottom {
  margin-top: 5rem;
}

.docs a {
  background-image: url(images/downloads.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2rem;
  padding-left: 4rem;
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.docs a:hover {
  color: #eb2027;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
}

@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .docs {
    column-count: 2;
    gap: 2rem;
  }
}

@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .section-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;

    justify-content: space-between;
  }
  .tabs {
    width: 40rem;
    position: sticky;
    top: 10rem;
    left: 0;
  }
  .tabs-contents {
    width: calc(100% - 50rem);
    margin-top: 0;
  }
  .tabs a {
    font-size: 2rem;
  }
  .tabs-container h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 90.0625em) {
  /*1441x*/
  .tabs-container {
    padding-right: 30rem;
  }
  .tabs-container h2 {
    font-size: 4rem;
  }
}
/*---------*/
.section-wrap {
  margin-bottom: 5rem;
}
.section-text {
  width: 100%;
  padding: 0 0 5rem 0;
}
.section-image {
  width: 100%;
}
.section-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.section-text .btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .section-wrap {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10rem;
  }
  .section-text {
    width: 50%;
    padding: 0 5rem;
  }
  .section-image img {
    height: 50rem;
  }
  .section-image {
    width: 50%;
  }
}
@media only screen and (min-width: 90em) {
  /*1440px*/
  .section-text {
    width: 45%;
    padding: 0 10rem;
  }
  .section-image {
    width: 55%;
  }
  .section-image img {
    height: auto;
  }
}
/*--------*/
.section-wrap2 {
  margin-bottom: 5rem;
}
.section-text2 {
  width: 100%;
  padding: 0 0 5rem 0;
  padding-left: 0;
}
.section-image2 {
  width: 100%;
}

.section-image2-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 2rem;
}

.section-image2-text {
  background-color: #23262d;
  padding: 5rem 3rem;
  margin-top: 5rem;
}
.section-image2-text h3 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .section-image2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section-image2-box {
    width: 47%;
  }
  .section-image2-box img {
    margin-bottom: 0;
  }
  .section-image2-box:first-child img {
    aspect-ratio: 16/23;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .section-wrap2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10rem;
  }
  .section-image2 {
    width: 55%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section-text2 {
    width: 45%;
    padding: 0 10rem;
  }
  .section-image2-box:last-child {
    margin-top: -8rem;
  }
}
/*---------*/

.product-section-image {
  width: 100%;
}
.product-section-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-section-text {
  width: 100%;
  background-color: #0e1619;
  padding: 5rem 3rem;
  color: #fff;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .product-section-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product-section-image {
    width: 45%;
  }
  .product-section-image img {
    height: 100%;
  }
  .product-section-text {
    width: 55%;
    padding: 5rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .product-section-text {
    padding: 10rem;
  }
}
@media only screen and (min-width: 100.0625em) {
  /*1601px*/

  .product-section-text {
    padding: 20rem;
  }
}
/*---------*/
.version-tabs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 5rem 0 5rem 0;
}

.version-tabs a {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-weight: 600;
  border-radius: 10rem;
  border: 1px solid #23262d;
  background-color: #fff;
  color: #23262d;
  background-image: url(images/arrow-right3.svg);
  background-position: right 2.6rem center;
  background-size: 2rem;
  background-repeat: no-repeat;
  padding-right: 6rem;
}
.version-tabs a:hover,
.version-tabs a.active-tabv {
  border: 1px solid #23262d;
  background-color: #23262d;
  color: #fff;
  background-image: url(images/arrow-right3-white.svg);
}
.version-inner-wrap {
  margin-bottom: 5rem;
}
.version-inner-text {
  width: 100%;
  margin-bottom: 5rem;
}
.version-inner-image {
  width: 100%;
}
.version-inner-text h3 {
  font-size: 2.6rem;
}
.version-inner-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.version-inner-text .btn {
  margin-top: 3rem;
}
.section-tabs2 {
  background-color: #f9f9f9;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .version-tabs {
    flex-direction: row;
    gap: 3rem;
  }
  .version-tabs a {
    padding: 2.3rem 5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .version-inner-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10rem;
  }
  .version-inner-text {
    width: 55%;
    margin-bottom: 0;
  }
  .version-inner-image {
    width: 40%;
  }
}
/*-------------*/

.premium-product .btn-primary {
  background: linear-gradient(
    to right,
    rgba(218, 161, 76, 1) 0%,
    rgb(94, 75, 47) 100%
  );
  border: none;
}
.premium-product .btn-primary:hover {
  color: #fff;
  background: linear-gradient(
    to left,
    rgba(218, 161, 76, 1) 0%,
    rgb(94, 75, 47) 100%
  );
}
.premium-product .section-image2-text,
.premium-product .product-section-text {
  background: linear-gradient(
    to right,
    rgba(218, 161, 76, 1) 0%,
    rgb(94, 75, 47) 100%
  );
}
.premium-product .tabs a:hover,
.premium-product .tabs a.active-tab {
  background-color: rgba(218, 161, 76, 1);
}
