@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #a21133 !important;
  --secondary: #b91f44 !important;
  --dark: #333333 !important;
  --dark-grey: #4d4d4d !important;
  --light-grey: #d8d8d8 !important;
  --light: #f2f2f2 !important;
  --whatsapp: #6bce72 !important;
  --gradient: linear-gradient(
    to bottom,
    var(--secondary),
    #ea1f37,
    var(--secondary)
  ) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

.bg-dark-grey {
  background: var(--dark-grey);
}

.bg-light-grey {
  background: var(--light-grey);
}

.text-dark-grey {
  color: var(--dark-grey);
}

body {
  font-family: "Albert Sans", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.pointer {
  cursor: pointer;
}

a,
a:hover {
  text-decoration: none !important;
  transition: 400ms !important;
}

.mobile-header {
  display: none;
}

.btn-theme {
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  height: 45px;
  width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
}

.primary-bg {
  background: var(--primary);
}

.secondary-bg {
  background: var(--secondary);
}

/**** header-begin ****/
/* .header-top {
    display: flex;
    justify-content: space-between;
    font-size:14px;
}

.left-side {
    width: 248px;
    height: 42px;
    background: var(--secondary);
    display:flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 0px 10px;
    color: #fff;
}

.right-side {
    width: 1392px;
    height: 42px;
    background: var(--primary);
    border-radius: 0px 0px 10px 0px;
    display:flex;
    align-items:center;
    padding-right: 45px;
    justify-content:flex-end
}

.header-top a, .header-top span, .header-top i {
    color: #fff;
}
.right-side .header-contact {
    margin-right: 25px;
}
.right-side a.header-contact i{
    transition: 400ms;
}
.right-side a.header-contact:hover,
.right-side a.header-contact:hover i {
    color: var(--secondary);
} */

.socials {
  display: flex;
  flex-direction: row;
  margin-right: 20px;
}

a.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  /* border: 1px solid #fff; */
  border-radius: 5px;
  margin: 0px 4px;
  font-size: 14px;
}

a.social:hover {
  border-color: var(--secondary);
  background: var(--secondary);
}

.header-links ul {
  margin-bottom: 0;
}

.header-languages img {
  border-radius: 100%;
  object-fit: cover;
  width: 24px;
  height: 24px;
}

.other-languages {
  position: absolute;
  display: flex;
  background: var(--light);
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  transform: translate(0px, -30px);
  opacity: 0;
  transition: 400ms;
  flex-direction: column;
  width: 50px;
  z-index: 9;
}

.other-languages a {
  transition: 400ms;
}

.other-languages a:hover {
  transition: 400ms;
  color: var(--light) !important;
  background: var(--secondary);
}

.header-languages:hover .other-languages {
  transform: translate(0px, -5px);
  opacity: 1;
  transition: 400ms;
}

.other-languages a {
  padding: 0px 5px;
}

li.header-menu-other {
  display: flex;
}

.menu-other-links a {
  margin-right: 20px;
}

a.header-language.active-language {
  width: 50px;
  height: 35px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.other-languages span {
  font-size: 14px;
}

.other-languages a {
  text-align: center;
}

.header-languages:hover .active-language {
  border-radius: 10px 10px 0 0 !important;
}

.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
}

.header-menu .header-logo {
  width: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu .header-logo img {
  object-fit: contain;
  width: 215px;
}

.header-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin-right: 25px;
}

.header-links ul li {
  margin-left: 45px;
  position: relative;
  white-space: nowrap;
}

.header-links ul li a {
  font-size: 18px;
  color: var(--primary);
  font-weight: 400;
  transition: 400ms;
}

.header-links ul li a:hover {
  color: var(--secondary);
  transition: 400ms;
}

.header-links ul li .menu-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: 400ms;
  padding-top: 35px;
  z-index: 99;
  left: 50%;
  transform: translate(-50%, 0);
}

.header-links ul li .menu-dropdown:after {
  content: url(images/icons/triangle.svg);
  display: flex;
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 9;
  top: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  align-items: center;
  justify-content: center;
  transition: 400ms;
}

.header-links ul li:hover .menu-dropdown:after {
  top: 5px;
  transition: 400ms;
}

.header-links ul li ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 400ms;
  padding: 10px 0;
  background: var(--secondary);
  border-radius: 10px;
}

.header-links ul li ul li {
  margin: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-links ul li .menu-dropdown ul {
  margin: 0;
}

.header-links ul li .menu-dropdown a {
  height: 40px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0 20px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.header-links ul li .menu-dropdown a:hover {
  background: #c96609;
}

.header-links ul li:hover .menu-dropdown {
  opacity: 1;
  pointer-events: unset;
}

.header-right-top {
  display: flex;
  background: var(--light);
  height: 50px;
  align-items: center;
  justify-content: end;
  position: relative;
}

.header-right-top:after {
  content: "";
  background: var(--light);
  width: 100%;
  height: 50px;
  position: absolute;
  left: 100%;
  top: 0;
}

.desktop-header {
  display: flex;
}

.header-left {
  width: 260px;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left:after {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  top: 0;
}

.header-right {
  width: 100%;
}

a.header-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 150px;
  font-size: 14px;
  transition: 400ms;
}

a.header-top-link:hover {
  background: var(--primary);
  color: #fff !important;
}

a.header-top-link.bg-dark-grey {
  color: #fff;
}

a.header-top-link.bg-light-grey {
  color: var(--dark-grey);
}

.header-right-top a,
.header-right-top i {
  color: var(--dark-grey);
  transition: 400ms;
}

.header-right-top .header-contact:hover {
  color: var(--primary);
  transition: 400ms;
}

.header-right-top .socials a:hover i {
  color: #fff;
  transition: 400ms;
}

a.header-contact {
  margin: 0px 20px;
}

a.header-email.header-contact {
  margin-right: 35px;
}

.bg-red {
  background: var(--primary) !important;
  color: #fff !important;
}
.bg-red:hover {
  background: var(--light-grey) !important;
  color: var(--dark-grey) !important;
}

/**** header-end ****/

/**** footer-begin ****/
.bottom-contact {
  padding-top: 45px;
  padding-bottom: 50px;
}

.bottom-contact-content {
  display: flex;
  align-items: center;
  height: 220px;
  position: relative;
  justify-content: center;
}

.bottom-contact-content .content-center {
  background: var(--secondary);
  border-radius: 15px;
  height: 100%;
  margin: 0 15px;
  width: 700px;
  padding: 50px;
  display: flex;
  align-items: center;
}

.bottom-contact-content .content-right img {
  width: 315px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

.bottom-contact-content a.content-phone {
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  width: 135px;
  white-space: break-spaces;
  display: block;
  line-height: 57px;
}

.bottom-contact-content a.content-mail {
  font-size: 47px;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 57px;
  margin-left: 50px;
}

.bottom-contact-content .content-center a {
  transition: 400ms;
}

.bottom-contact-content .content-center a:hover {
  transition: 400ms;
  color: var(--primary);
}

.bottom-contact-content .content-left span {
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
  width: 420px;
  color: var(--primary);
  font-size: 76px;
  font-weight: 700;
  line-height: 91px;
}

.bottom-contact-content .content-left span:first-line {
  font-size: 38px;
  color: var(--secondary);
  font-weight: 500;
  line-height: 46px;
}

.bottom-contact-content .content-left {
  text-align: end;
}

.footer-top {
  display: flex;
  height: 160px;
  background: var(--grey);
  background: linear-gradient(
    to bottom,
    var(--secondary),
    #ea1f37,
    var(--secondary)
  );
}

.footer-top .container {
  display: flex;
}

.footer-top .footer-logo {
  width: 342px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
}

.footer-top .footer-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-top .footer-logo img {
  height: 65px;
  object-fit: contain;
}

.logo-text {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

span.newsletter-title {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

form.newsletter-form .input-group {
  margin-top: 10px;
  background: var(--secondary);
  height: 50px;
  display: flex;
}

form.newsletter-form .input-group * {
  border: none;
  background: none;
  outline: none;
}

form.newsletter-form .input-group input::placeholder {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff8f;
}

form.newsletter-form .input-group input {
  width: 350px;
  color: #fff;
  padding-left: 25px;
  transition: 400ms;
}

form.newsletter-form .input-group input:focus {
  padding-left: 10px;
  background: var(--primary);
  transition: 400ms;
}

form.newsletter-form .input-group button {
  width: 125px;
  color: #fff;
  font-weight: 700;
  transition: 400ms;
}

form.newsletter-form .input-group button:hover {
  background: var(--primary);
}

.footer-top .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1298px;
  padding: 30px 35px;
}

.footer-top .footer-content .footer-text {
  width: 175px !important;
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
  font-size: 27px;
  line-height: 33px;
  color: var(--primary);
  font-weight: 800;
}

.footer-top .footer-content .footer-text::first-line {
  color: var(--secondary);
  font-weight: 500;
}

.footer-top .content-right {
  display: flex;
  align-items: center;
}

.footer-socials a.social {
  font-size: 20px;
  color: var(--secondary);
  background: none !important;
  margin-left: 0 !important;
  margin-right: 10px !important;
}

.footer-socials a.social i {
  transition: 400ms;
}

.footer-socials a.social:hover i {
  color: var(--secondary) !important;
  transition: 400ms;
}

footer {
  margin-top: 100px;
  background: var(--light);
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(5deg);
  }

  20% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(5deg);
  }

  60% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(0deg);
  }

  90% {
    transform: rotate(5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.footer-whatsapp:hover .content img {
  animation: tilt-shaking 1.5s forwards;
}

.footer-whatsapp .content .text {
  display: flex;
  text-align: end;
  flex-direction: column;
}

.footer-whatsapp .content img {
  margin-left: 20px;
}

.footer-whatsapp .content {
  display: flex;
  align-items: center;
}

.footer-whatsapp .content .text {
  color: #fff;
}

.footer-whatsapp .content .text span {
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
}

.footer-whatsapp .content .text strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}

.footer-whatsapp {
  background: var(--whatsapp);
  height: 160px;
  width: 350px;
}

.footer-menu {
  min-height: 382px;
  overflow: hidden;
  display: flex;
}

.footer-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-menu-items {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 35px 0;
}

h3.footer-menu-title {
  color: #8b8b8b;
  font-size: 27px;
  line-height: 33px;
  font-weight: 700;
  height: 85px;
  border-bottom: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.footer-menu-item {
  width: 284px;
}

.footer-menu-item ul {
  list-style: none;
  padding: 0;
}

.footer-menu-item ul li a,
.footer-menu-item p {
  font-size: 16px;
  line-height: 36px;
  color: #8b8b8b;
  font-weight: 400;
  transition: 400ms;
}

.footer-menu-item ul li a:hover {
  color: var(--secondary);
  transition: 400ms;
}

.footer-contact li a i {
  margin-right: 10px;
}

.footer-contact .footer-socials a i {
  font-size: 22px;
  color: #8b8b8b;
}

.copyright span {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #cbcbcb;
  height: 60px;
  display: flex;
  align-items: center;
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 60px;
  padding: 0 20px;
  border-top: 1px solid #d6d6d6;
}

/**** footer-end ****/

/**** main-slider-begin ****/

.main-slider .slider-item {
  height: 100dvh;
  background-repeat: no-repeat;
  background-size: cover !important;
  margin-top: -150px;
  padding: 325px 0 150px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main-slider .slider-item h4 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}

.main-slider .slider-item h2 {
  font-size: 50px;
  font-weight: 800;
}

.main-slider .owl-dots button {
  background: #dbdbdb !important;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 5px;
  position: relative;
  transition: 400ms;
}

.main-slider .owl-dots button.active {
  width: 150px;
  transition: 400ms;
}

.main-slider .owl-dots button:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 6px;
  border-radius: 6px;
  background: var(--primary);
}

.main-slider .owl-dots button.active:after {
  width: 100%;
  transition: 5000ms ease-in-out;
}

.main-slider .owl-dots {
  position: absolute;
  z-index: 99;
  top: 300px;
  padding-left: 150px;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 400ms;
}

.owl-nav button:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transition: 400ms;
}

.owl-nav {
  display: flex;
  position: absolute;
  left: 150px;
  top: 100px;
}

/**** main-slider-end ****/

/**** main-about-begin ****/

.main-about .about-image {
  /* background: url(images/main-about-bg.jpg); */
  height: 760px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px 60px 70px 140px;
}

.main-about .row {
  margin: 0 !important;
  /* padding: 0 !important; */
}

a.main-btn {
  min-width: 196px;
  padding: 22px 42px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  transition: 400ms;
}

a.main-btn.bordered {
  border: 1px solid var(--primary);
}

a.main-btn i {
  margin-left: 30px;
}

a.main-btn:hover {
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 300;
  transition: 400ms;
}

.main-about .about-image-title {
  text-align: end;
  width: 100%;
  display: flex;
  justify-content: end;
  color: #fff;
}

.main-about .about-image-title span {
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}

.main-about .about-image-title span strong {
  font-size: 75px;
  font-weight: 900;
}

.main-about .about-text {
  background: #fafafa;
  padding: 75px 140px 75px 75px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.main-about .about-text-content p {
  color: #333333;
  font-size: 15px;
  line-height: 32px;
}

.main-about .about-text-title {
  display: flex;
  flex-direction: column;
}

.main-about .about-text-title span {
  font-size: 28px;
  color: #333333;
  font-weight: 400;
}

.main-about .about-text-title strong {
  color: #333333;
  font-size: 42px;
  font-weight: 900;
}

/**** main-about-end ****/

/**** main-counter-begin ****/

.main-counter-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-counter-top-text {
  display: flex;
  flex-direction: column;
  margin-right: 85px;
}

.main-counter-top-text .text-lg {
  font-size: 30px;
  font-weight: 300;
}

.main-counter-top-text .text-sm {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}

.counter-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.counter-left span {
  text-align: end;
}

.counter-left span.text-dark {
  color: #333333;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.counter-left span.text-red {
  color: var(--secondary);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
}

.counter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem !important;
}

.main-counter-content {
  height: 600px;
  display: flex;
  align-items: center;
}

.counter-item {
  position: relative;
  border-radius: 50%;
  background: #fff;
  z-index: 1000;
}

.counter-item.circle-lg {
  width: 350px;
  height: 350px;
}

.counter-item.circle-sm {
  width: 275px;
  height: 275px;
}

svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 25;
  stroke-linecap: round;
}

svg circle {
  stroke-dasharray: 845;
  stroke-dashoffset: 845;
}

.counter-item:nth-child(1) * {
  color: #3b3b3b;
}

.counter-item:nth-child(1) svg circle {
  filter: drop-shadow(3px 5px 2px rgb(59 59 59 / 0.5));
  stroke-dashoffset: calc(845 - (845 * 0) / 100);
  stroke: #3b3b3b !important;
  transition: 4000ms;
}

.counter-item:nth-child(2) * {
  color: var(--secondary) !important;
}

.counter-item:nth-child(2) svg circle {
  filter: drop-shadow(3px 5px 2px rgb(230 2 25 / 0.5));
  stroke-dashoffset: calc(845 - (845 * 0) / 100);
  stroke: var(--secondary);
  transition: 4000ms;
}

.counter-item:nth-child(3) * {
  color: var(--primary) !important;
}

.counter-item:nth-child(3) svg circle {
  filter: drop-shadow(3px 5px 2px rgb(124 7 15 / 0.5));
  stroke-dashoffset: calc(845 - (845 * 0) / 100);
  stroke: var(--primary);
  transition: 4000ms;
}

.counter-content.animate .counter-item:nth-child(1) svg circle {
  stroke-dashoffset: calc(845 - (845 * 65) / 100);
}

.counter-content.animate .counter-item:nth-child(2) svg circle {
  stroke-dashoffset: calc(845 - (845 * 90) / 100);
}

.counter-content.animate .counter-item:nth-child(3) svg circle {
  stroke-dashoffset: calc(845 - (845 * 65) / 100);
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-item.circle-lg svg {
  position: absolute;
  transform: rotate(120deg);
}

.counter-item.circle-sm svg {
  position: absolute;
  transform: rotate(200deg);
}

.counter-item .counter-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.counter-item-content .number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.3;
  color: #3b3b3b;
}

.counter-item-content .counter-item-title {
  font-size: 18px;
  font-weight: 300;
  color: #3b3b3b;
}

/**** main-counter-end ****/

/**** main-attached-area-begin ****/

.main-attached-area {
  background: url(images/fixed-image.jpg);
  height: 575px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
}

.product-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 575px;
}

span.area-product-title {
  color: var(--primary);
  font-weight: 900;
  font-size: 46px;
  font-style: italic;
}

.area-title span {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  background: var(--primary);
  padding: 0 15px;
  margin: 2px 0;
}

.area-title {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
}

/**** main-attached-area-end ****/

/**** main-media-begin ****/

.main-media {
  margin-top: 100px;
}

a.main-media-item {
  height: 475px;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 45px 50px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  position: relative;
  transition: 400ms;
}

a.main-media-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  opacity: 0;
  left: 0;
  bottom: 0;
  transition: 400ms;
}

a.main-media-item:hover:after {
  content: "";
  display: block;
  position: absolute;
  width: 85%;
  height: 85%;
  opacity: 1;
  left: 7.5%;
  bottom: 7.5%;
  transition: 400ms;
}

a.main-media-item img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  transition: 400ms;
}

a.main-media-item:hover img {
  filter: grayscale(1);
  transition: 400ms;
}

a.main-media-item span {
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
  display: table;
  padding: 0 10px;
  transition: 400ms;
}

a.main-media-item:hover span {
  background: var(--primary);
  filter: unset !important;
}

a.main-media-item:hover {
  padding: 65px 70px;
  color: #fff;
  transition: 400ms;
}

.main-media-button {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.main-media-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 45px 0;
}

.main-media-text .txt-lg {
  font-size: 46px;
  font-weight: 800;
}

.main-media-text .txt-sm {
  color: var(--secondary);
  font-size: 18px;
  letter-spacing: 2px;
}

/**** main-media-end ****/

/**** corporate-page-begin ****/

.corporate-counter {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.corporate-section-content {
  width: 765px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.corporate-page-content p {
  font-size: 16px;
  color: #333333;
  font-weight: 300;
}

.corporate-section-content p {
  margin-bottom: 60px;
}

/**.corporate-text-section .row:first-child p { **/
.corporate-text-section .row:nth-child(odd) p {
  color: #fff !important;
}

.corporate-section-content .text-sm {
  font-size: 18px;
  color: var(--secondary);
  letter-spacing: 1px;
  font-weight: 400;
}

.corporate-page-content .text-lg {
  font-size: 48px;
  color: #333333;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 55px;
}

.corporate-section-content .text-lg {
  margin-bottom: 55px;
}

.corporate-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 85px;
}

.corporate-gallery-content img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.corporate-gallery-content a {
  width: 100%;
  height: 565px;
  transition: 400ms;
  position: relative;
}

.corporate-gallery-content a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  opacity: 0;
  left: 0;
  bottom: 0;
  transition: 400ms;
}

.corporate-gallery-content a:hover:after {
  width: 80%;
  height: 90%;
  opacity: 1;
  left: 10%;
  bottom: 5%;
  transition: 400ms;
}

.corporate-gallery-content a:hover img {
  filter: grayscale(1);
  transition: 400ms;
}

.corporate-text-section {
  margin: 125px 0;
}

.corporate-text-section .image-area img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.corporate-text-section .text-area:nth-child(1) {
  background: var(--secondary);
}

.corporate-text-section .image-area {
  position: relative;
  /** height: 385px; **/
  width: 100%;
}

.text-area,
.image-area {
  min-height: 385px;
}

.corporate-text-section .text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.corporate-text-section .text-area .text-lg {
  margin-top: 10px !important;
  margin-bottom: 30px !important;
  line-height: 48px;
}

.corporate-text-section .text-area p {
  color: #333333;
  font-size: 16px;
  font-weight: 300;
}

.corporate-text-section .text-area:nth-child(2) {
  align-items: end;
  text-align: end;
}

.corporate-text-section .text-area {
  padding: 0px 40px;
}

.history-slider .item {
  height: 735px;
  background-size: cover;
}

.history-slider-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 735px;
}

.history-slider-content p {
  width: 700px;
  color: #fff;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
}

.slider-top {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.slider-top .slider-title-1 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
}

.slider-top .slider-title-2 {
  font-size: 31px;
  line-height: 41px;
  font-weight: 900;
  color: #fff;
}

span.slider-date {
  font-size: 130px;
  line-height: 173px;
  font-weight: 400;
  color: #fff;
  margin-top: 85px;
  margin-bottom: 115px;
}

.history-slider-years {
  display: flex;
  flex-direction: column;
  padding-left: 140px;
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
}

.history-slider {
  position: relative;
  height: 735px;
}

.history-slider-years a {
  height: 40px;
  display: flex;
  align-items: center;
  color: #fff;
  margin: 5px 0;
  transition: 400ms;
}

.history-slider-years a.active {
  font-size: 24px;
  transition: 400ms;
}

.history-slider-years a:hover {
  color: #fff;
  transition: 400ms;
}

.year-circle {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.year-circle span {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 100%;
  transition: 400ms;
}

.history-slider-years a.active .year-circle span {
  width: 20px;
  height: 20px;
  background: #fff;
}

.history-slider-years a:not(:last-child) .year-circle:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 10px);
  height: 40px;
  width: 1px;
  background: white;
}

/* .year-circle:last-child:after {
    display: none;
} */

/**** corporate-page-end ****/

/**** detail-news-begin ****/
section.news-detail {
  margin-bottom: 100px;
}

section.news-detail .detail-content {
  padding-right: 25px;
}

section.news-detail .detail-content h1 {
  color: var(--primary);
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 40px;
  margin-top: 20px;
}

section.news-detail .detail-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-grey);
  line-height: 32px;
}

section.news-detail .detail-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 550px;
}

/**** detail-page-end ****/

/**** news-page-begin ****/

section.news-page .news-item-content {
  position: absolute;
}

section.news-page .news-item {
  margin: 15px 0;
}

section.news-page .news-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.news-page .news-item-content {
  z-index: 9;
  color: #fff;
}

section.news-page .news-item a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 305px;
  background: #000000;
  opacity: 0.5;
  z-index: 0;
}

section.news-page .news-item a {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

section.news-page .news-item-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
}

section.news-page .item-info span {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  margin: 0px 25px;
}

section.news-page .item-info span i {
  margin-right: 5px;
}

.news-item a:hover img {
  transition: 800ms;
  scale: 1.05;
}

.news-item a img {
  transition: 800ms;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/**** news-page-end ****/

/**** page-top-begin ****/

.page-top h4 {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}

.page-top h2 {
  color: #333333;
  font-size: 44px;
  font-weight: 800;
  margin-top: 10px;
}

.page-top {
  align-items: center;
  margin-bottom: 3rem !important;
}

.page-top .col-md-6:last-child {
  display: flex;
  align-items: center;
  justify-content: end;
}

.breadcrumb {
  justify-content: flex-end;
  background: none !important;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.breadcrumb * {
  color: #aaaaaa;
  font-size: 14px;
}

.breadcrumb a {
  margin-left: 5px;
  transition: 400ms;
}

.breadcrumb a:hover:not(span) {
  color: var(--secondary);
  transition: 400ms;
}

/**** page-top-end ****/

/**** contact-page-begin ****/

section.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 30px;
}

section.contact-page .contact-form form input,
section.contact-page .contact-form form select,
section.contact-page .contact-form form textarea {
  margin-bottom: 15px;
  border: none;
  background: #ecf4f7;
  height: 55px;
  width: 100%;
  border-radius: 10px;
  padding-left: 25px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  transition: 400ms;
}

section.contact-page .contact-form form input:focus,
section.contact-page .contact-form form select:focus,
section.contact-page .contact-form form textarea:focus {
  background: #f07a0b42;
  transition: 400ms;
}

section.contact-page .contact-form form input::placeholder,
section.contact-page .contact-form form textarea::placeholder {
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
}

section.contact-page .contact-form form textarea {
  min-height: 200px;
  padding-top: 15px;
}

section.contact-page .contact-right-content {
  height: 620px;
  background-size: cover !important;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px 35px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 55px;
  color: #fff;
  line-height: 66px;
}

section.contact-page .contact-right-content span {
  font-weight: 300;
}

section.contact-page .contact-right-content strong {
  font-weight: 800;
}

section.contact-page .contact-map {
  margin-top: 50px;
  border-radius: 15px;
  overflow: hidden;
}

section.contact-page .contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

section.contact-page .contact-item i {
  color: var(--secondary);
  font-size: 45px;
  line-height: 56px;
  margin-bottom: 20px;
}

section.contact-page .contact-item p,
section.contact-page .contact-item a {
  color: var(--dark-grey);
  font-size: 47px;
  font-weight: 500;
  line-height: 57px;
}

section.contact-page .contact-item a.content-mail {
  width: min-intrinsic;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: table-caption;
  display: -ms-grid;
  -ms-grid-columns: min-content;
  display: flex;
  flex-direction: column;
}

.contact-item.mail-item .content-mail span {
  font-weight: 400;
}

.contact-item.mail-item .content-mail strong {
  font-weight: 800;
}

.contact-item.phone-item a {
  font-weight: 800 !important;
}

.contact-item.address-item p {
  font-weight: 400 !important;
}

/**** contact-page-end ****/

/**** media-page-begin ****/

.media-slider-content {
  border-radius: 10px;
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  padding: 25px;
}

.media-page .owl-stage-outer {
  border-radius: 10px !important;
  overflow: hidden !important;
}

.photos-slider .slider-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.photos-slider {
  margin-bottom: 25px;
}

.photos-slider .media-slider-content {
  height: 280px;
}

.videos-slider {
  margin-bottom: 25px;
}

.videos-slider .media-slider-content {
  height: 380px;
  background: var(--dark-grey);
}

.videos-slider .slider-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
}

.media-slider-content span {
  font-size: 38px;
  line-height: 48px;
  font-weight: 400;
  color: #fff;
}

.media-slider-content strong {
  font-size: 38px;
  line-height: 48px;
  font-weight: 800;
  color: #fff;
}

.media-slider-content .slider-button {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-slider-content .slider-button button {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.media-slider-content.primary-bg .slider-button button {
  height: 50px;
  width: 50px;
  border: 2px solid var(--secondary);
  border-radius: 100%;
}

.media-slider-content.light-bg strong,
.media-slider-content.light-bg span {
  color: var(--dark-grey);
}

.media-slider-content.light-bg {
  background: var(--light);
  /* height: 380px; */
}

.media-slider-content.light-bg .slider-button button:first-child {
  color: var(--dark-grey);
  border: 2px solid var(--dark-grey);
  background: none !important;
}

.media-slider-content.light-bg .slider-button button:last-child {
  background: var(--dark-grey) !important;
  color: #fff;
  border: 2px solid var(--dark-grey);
}

.photos-slider
  .media-slider-content.primary-bg
  .slider-button
  button:first-child {
  color: #fff;
  border-color: #fff !important;
  background: none !important;
}

.photos-slider
  .media-slider-content.primary-bg
  .slider-button
  button:last-child {
  background: #fff !important;
  color: var(--secondary);
  border-color: #fff !important;
}

.media-slider-content.secondary-bg .slider-button button {
  height: 50px;
  width: 50px;
  border: 2px solid var(--primary);
  border-radius: 100%;
}

.media-slider-content.secondary-bg .slider-button button:first-child {
  background: none;
  color: var(--primary);
}

.media-slider-content.secondary-bg .slider-button button:last-child {
  background: var(--primary) !important;
  color: #fff;
}

.media-page .videos-slider .item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.media-page .videos-slider .item a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #4b4b4b;
  mix-blend-mode: multiply;
  content: "";
  left: 0;
}

.media-page .videos-slider .item a i {
  position: absolute;
  z-index: 9;
  color: #fff;
  font-size: 50px;
}

.news-slider .item a {
  height: 380px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background-size: cover !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

span.news-title {
  font-size: 22px;
  z-index: 9;
}

span.news-date {
  font-size: 14px;
  z-index: 9;
}

.news-slider .item a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000009e;
  z-index: 0;
}

.media-documents {
  height: 165px;
  background: var(--light);
  border-radius: 10px;
  margin-top: 25px;
}

.catalog-col {
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
}

.documents-title {
  display: flex;
  flex-direction: column;
}

span.documents-text-sm {
  color: var(--secondary);
  font-size: 16px;
}

span.documents-text-lg {
  color: var(--secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 43px;
}

a.catalog-download {
  margin-left: 50px;
  height: 65px;
  width: 200px;
}

.logos-col {
  display: flex;
  height: 165px;
  align-items: center;
}

.logos-col .logos {
  margin-left: 100px;
}

.logos-col .logos a {
  margin-right: 25px;
  transition: 400ms;
}

.logos-col .logos a img {
  transition: 400ms;
}

.logos-col .logos a:hover img {
  transform: scale(1.12);
  transition: 400ms;
}

/**** media-page-end ****/

/**** product-list-page-begin ****/

/* .products-list-page .aside {
    border-radius: 15px;
    background: #EDF4F8;
    padding: 20px 0px 20px 70px;
}

.products-list-page .aside h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom:30px;
}

.products-list-page .aside ul {
    list-style: none;
    padding: 0;
    margin-left:-10px;
}

.products-list-page .aside ul li {
    height: 50px;
    display: flex;
    align-items: center;
    border-radius:10px 0 0 10px;
    transition:400ms;
    padding-left:10px;
}

.products-list-page .aside li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.products-list-page .aside h2 i {
    font-size: 24px;
    margin-right: 10px;
    margin-left: -43px;
}

.products-list-page .aside ul li:hover {
    background: var(--secondary);
    transition:400ms;
}

.products-list-page .aside ul li:hover a {
    color: #fff;
} */

.aside-top {
  height: 65px;
  background: #dbdbdb;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 20px;
}

.aside-top span {
  color: var(--secondary);
}

.row.products-top {
  margin-bottom: 15px;
}

.list-top {
  height: 65px;
  display: flex;
  justify-content: flex-end;
}

.list-top button {
  width: 75px;
  height: 65px;
  border: none;
  margin-left: 15px;
  transition: 400ms;
}

.list-top button:hover,
.list-top button.active {
  background: var(--secondary);
  color: #fff;
  transition: 400ms;
}

.aside {
  margin-bottom: 50px;
}

.aside ul {
  list-style: none;
  padding: 0;
}

li.aside-main-link button,
li.aside-main-link a {
  width: 100%;
  height: 80px;
  text-align: center;
  background: #f8f8f8;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 20px;
  transition: 400ms;
  white-space: initial;
}

.aside .accordion a {
  font-size: 14px;
}

li.aside-main-link button:hover,
li.aside-main-link button[aria-expanded="true"],
li.aside-main-link a:hover,
li.aside-main-link.active a {
  background: var(--secondary);
  color: #fff;
  transition: 400ms;
}

.aside .aside-submenu {
  background: var(--secondary);
  padding: 15px 0;
  border-top: 1px solid #f8f8f8;
}

.aside .aside-submenu a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 5px 0;
  transition: 400ms;
}

.aside .aside-submenu a:hover {
  background: var(--primary);
  transition: 400ms;
}

.aside-image {
  position: relative;
}

.aside-image-text {
  position: absolute;
  bottom: 0;
  height: 135px;
  width: 100%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 45px;
}

.aside-image-text span {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  text-align: end;
}

.product-list-header {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ecf4f7;
  border-radius: 15px;
  padding: 0 20px;
  margin-bottom: 25px;
}

.products-list-page .product-list-header .list-counter span {
  color: var(--primary);
  font-size: 16px;
}

.products-list-page .product-list-header .list-counter span.count {
  font-weight: 800;
}

.products-list-page .product-list-header .list-counter span.count-title {
  font-weight: 400;
}

.products-list-page .product-list-header .list-style button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 22px;
}

.product-card {
  border: 1px solid #ecf4f7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.product-card img {
  height: 280px;
  object-fit: contain;
}

.product-card {
  transition: 400ms;
}

.product-card:hover {
  background: var(--secondary);
}

.product-card:hover * {
  color: #fff !important;
}

.product-card a.product-button i {
  position: absolute;
  left: 35% !important;
  transition: 400ms;
  color: #fff;
  font-size: 14px;
}

.product-card a.product-button {
  overflow: hidden;
}

.product-card:hover a.product-button {
  background-color: var(--primary);
  border-color: var(--primary);
}

.product-card:hover a.product-button i {
  position: absolute;
  left: 42% !important;
  transform: translate(-50%, 0);
  color: #fff;
  transition: 400ms;
}

.product-card:hover a.product-button span {
  left: 100%;
  transform: translate(25%, 0);
  transition: 400ms;
}

.product-card a.product-button span {
  transition: 400ms;
}

a.product-title {
  color: var(--primary);
  font-size: 25px;
  font-weight: 800;
  line-height: 72px;
  text-align: center;
}

span.product-code {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 300;
}

a.product-button {
  border: 1px solid #9cc1d0;
  border-radius: 10px;
  width: 140px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9cc1d0;
  font-size: 18px;
  font-weight: 400;
  margin: 25px 0;
}

.bar-list .product-list-item .product-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
  transition: 400ms;
}

.bar-list .product-list-item .product-card img {
  height: 125px;
  aspect-ratio: 1 / 1;
}

.bar-list .product-list-item .product-card a i {
  display: none;
}

.bar-list .product-list-item .product-card:hover a.product-button span {
  transform: translate(0, 0);
}

.product-list-item {
  transition: 600ms;
  margin-bottom: 30px;
}

.bar-list a.product-title {
  width: 55%;
}

.bar-list .product-code {
  width: 15%;
}

.bar-list .product-button {
  margin-right: 35px;
}

/**** product-list-page-end ****/

/**** categories-begin ****/

.categories-items {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0 100px 0;
}

a.category-item {
  width: calc((100% / 5) - 15px);
  height: 565px;
  position: relative;
  overflow: hidden;
  transition: 400ms;
}

a.category-item:hover {
  overflow: unset;
  transition: 400ms;
}

.categoy-item-hover img {
  transform: scale(0);
  transform-origin: left top;
  transition: 400ms;
}

a.category-item:hover .categoy-item-hover img {
  transform: scale(1);
  transition: 400ms;
}

.categoy-item-hover img {
  margin-left: -50px;
  margin-right: 50px;
}

.categoy-item-hover {
  display: flex;
  width: 100%;
  position: relative;
  padding-right: 35px;
  align-items: center;
  justify-content: center;
}

.categoy-item-hover i {
  font-size: 22px;
  color: #fff;
}

a.category-item img.bg-image {
  height: 565px;
  object-fit: cover;
}

.category-item-content {
  position: absolute;
  bottom: 0;
  background: var(--gradient);
  height: 120px;
  transition: 400ms;
}

.category-item-content .category-item-title {
  height: 120px;
  display: flex;
  align-items: center;
  padding: 30px;
}

.category-item-content .category-item-title span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

a.category-item:hover .category-item-content {
  height: 240px;
  transition: 400ms;
}

/**** categories-end ****/

/**** product-detail-page-begin ****/

.product-summary-col {
  padding-top: 75px;
}

span.product-detail-category {
  font-size: 20px;
  color: var(--secondary);
  letter-spacing: 1px;
}

.product-summary-col h1.product-detail-title {
  color: var(--dark);
  font-size: 54px;
  font-weight: 800;
  margin: 25px 0 50px 0;
}

.product-summary-col h3.product-detail-code {
  color: var(--secondary);
  font-size: 29px;
  font-weight: 400;
}

.product-detail-summary {
  color: #aaaaaa;
  font-size: 18px;
  font-weight: 200;
}

.product-features .product-feature-box {
  color: var(--secondary);
  background: #f0f0f0;
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  padding: 15px 20px;
  line-height: 1;
  align-content: center;
  margin-right: 15px;
  transition: 400ms;
}

.product-features .product-feature-box:hover {
  background: var(--primary);
  transition: 400ms;
}

.product-features .product-feature-box:hover img {
  filter: invert(1) brightness(5);
  transition: 400ms;
}

.product-features .product-feature-box:hover span {
  color: #fff;
  transition: 400ms;
}

.product-features {
  display: flex;
  margin: 50px 0;
}

.product-features .product-feature-box span {
  height: 35px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}

.product-detail-buttons a {
  width: 175px;
  height: 45px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  border: 1px solid var(--primary);
  border-radius: 10px;
  margin-right: 15px;
}

.product-detail-buttons {
  display: flex;
}

a.back-products {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: 400ms;
}

a.back-products:hover i {
  margin-right: 5px;
  transition: 400ms;
}

a.back-products i {
  font-size: 14px;
  margin-right: 15px;
  margin-bottom: 1px;
  transition: 400ms;
}

.product-big-image .image {
  border: 1px solid #cbcbcb;
  height: 535px !important;
  display: flex;
  align-items: center;
}

.product-big-image .image img {
  height: 500px;
  object-fit: contain;
}

.product-big-image .image .item.slider-item {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-big-image {
  margin-top: 50px;
}

.item.slider-item:has(.active) {
  border-color: var(--primary) !important;
}

.product-big-image .thumbnails .slider-item {
  background: #fff !important;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #cbcbcb;
}

.product-big-image .thumbnails {
  padding: 20px 0;
}

.product-detail-top {
  margin-bottom: 75px;
}

.product-detail-page .features table tr:nth-child(1),
table tr:nth-child(2) {
  background: var(--secondary) !important;
  color: #fff !important;
}

.product-detail-page .features table tr:nth-child(even) {
  background: #dddede;
}

.product-detail-page .features table tr {
  height: 30px !important;
  font-size: 12px !important;
  color: #5a5a5a;
  font-weight: 500 !important;
}

.product-detail-page .features table {
  border: none !important;
  width: 100% !important;
}

.product-detail-page .features table tr td {
  padding: 0 10px !important;
  border: 0.5px dotted #b5b5b5 !important;
}

.product-detail-page .features table tr:first-child td {
  border-top: 0 !important;
}

.product-detail-page .features table tr td:first-child {
  border-left: 0 !important;
}

.product-detail-page .features table tr td:last-child {
  border-right: 0 !important;
}

.product-detail-page .features table tr:last-child td {
  border-bottom: 0 !important;
}
.product-detail-descriptions .features {
  padding-bottom: 30px;
}

/**** product-detail-page-end ****/

/**** ik-banner-begin ****/

/*.ik-banner .row {
    width: 100% !important;
}*/

.ik-banner .banner-content {
  background: var(--primary);
  display: flex;
  height: 160px;
  align-items: center;
  padding: 45px 60px;
  justify-content: space-between;
}

.ik-banner .banner-content .banner-text {
  display: flex;
  flex-direction: column;
}

.ik-banner .banner-content .banner-text .text-sm {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}

.ik-banner .banner-content .banner-text .text-lg {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 0 !important;
}

.ik-banner .banner-image img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.ik-banner a {
  height: 65px;
  width: 200px;
  transition: 400ms;
}

.ik-banner a:hover {
  background: #fff !important;
  transition: 400ms;
}

.ik-banner a:hover i {
  color: var(--secondary) !important;
  transition: 400ms;
}

/**** ik-banner-end ****/

/**** aside-dropdown-menu-begin ****/

.aside-dropdown {
  left: 100%;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  padding-left: 40px;
  z-index: 99;
  top: 50%;
  transform: translate(10%, -50%);
  transition: 400ms;
}

.aside-dropdown ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--secondary);
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: 400ms;
}

.aside-dropdown ul li {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0 !important;
  height: 40px !important;
}

.aside-dropdown ul {
  margin: 0;
}

.aside-dropdown a {
  height: 40px !important;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px !important;
  font-weight: 400;
  padding: 0 20px;
  width: 100%;
}

.aside-dropdown a:hover {
  background: #c96609;
}

.aside ul li:hover .aside-dropdown {
  opacity: 1;
  pointer-events: unset;
  transform: translate(0, -50%);
}

.aside-dropdown:after {
  content: url(images/icons/triangle.svg);
  display: flex;
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 9;
  left: 5px;
  top: 50%;
  transform: translate(0, -50%) rotate(-90deg);
  align-items: center;
  justify-content: center;
  transition: 400ms;
}

/* .aside ul li:hover .aside-dropdown:after {
    left: 5px;
    transition:400ms;
} */

.aside ul li {
  position: relative;
  white-space: nowrap;
}

/**** aside-dropdown-menu-end ****/

/**** btn-hover-effect-begin ****/

.btn-theme-hover {
  position: relative;
}

.btn-theme-hover:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff !important;
}

.btn-theme-hover.hover-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-theme-hover.hover-light:hover {
  background-color: #fff;
  border-color: #fff;
}

.btn-theme-hover.hover-light i {
  color: var(--primary) !important;
}

.btn-theme-hover i {
  position: absolute;
  left: -15px;
  transition: 400ms;
  color: #fff;
  font-size: 14px;
}

.btn-theme-hover {
  overflow: hidden;
}

.btn-theme-hover:hover i {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transition: 400ms;
  color: #fff;
}

.btn-theme-hover:hover span {
  left: 100%;
  transform: translate(100%, 0);
  opacity: 0;
  transition: 400ms;
}

.btn-theme-hover span {
  transition: 400ms;
}

/**** btn-hover-effect-end ****/

/**** hr-page-begin ****/

label[for="cv"] {
  background: var(--light);
  width: 100%;
  height: 140px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 30px;
  margin: 15px 0;
}

label[for="cv"] input {
  background: none !important;
  margin: 10px 0 0 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: absolute;
  opacity: 0;
}

label[for="cv"] span {
  font-size: 16px;
  color: var(--dark-grey);
  font-weight: 400;
}

.input-col {
  display: flex;
  flex-direction: column;
}

.input-col .cv-button {
  margin-top: 10px;
  width: 175px;
  border: none;
  background: var(--dark-grey);
  height: 40px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

section.hr-page .hr-right-content {
  height: 425px;
  width: 100%;
  border-radius: 15px;
}

/**** hr-page-end ****/

section.main-media-slider .slider-item img {
  height: 435px;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
}

/**** review-page-end ****/

.review-big {
  height: 535px;
  width: 100%;
  border: 1px solid #cbcbcb;
  margin-bottom: 15px;
}

.review-big img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbs-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbcbcb;
  cursor: pointer;
  transition: 400ms;
}

.thumbs-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transition: 400ms;
}

a.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbcbcb;
  height: 450px;
  transition: 400ms;
}

a.product-item:hover {
  border: 1px solid var(--primary);
  background: var(--primary);
  transition: 400ms;
}

a.product-item:hover * {
  color: #fff !important;
  transition: 400ms;
}

.product-items {
  margin-top: 35px;
}

a.product-item .title {
  font-size: 30px;
  color: #333333;
  font-weight: bold;
}

span.product-list-category {
  margin-bottom: 15px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  text-align: center;
}

a.product-item span:not(.title) {
  font-size: 16px;
  color: #aaaaaa;
  font-weight: 200;
}

a.product-item i {
  font-size: 20px;
  margin: 15px 0;
  color: #fff;
}

a.product-item img {
  height: 250px;
  width: 100%;
  object-fit: contain;
}

/**** review-page-end ****/

.corporate-page-banner {
  background: url("images/corporate-banner.jpg");
  height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.corporate-page-banner h1 {
  font-size: 65px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0 !important;
  line-height: 1;
}

.corporate-page-banner span {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

/*
.product-feature-item {
    margin: 2px 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
*/

.product-feature-item {
  margin: 2px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  background: #95001612;
  align-items: center;
  align-content: center;
  padding: 10px 20px;
}

.product-feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-feature-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
}

.product-feature-item img {
  filter: invert(19%) sepia(89%) saturate(2225%) hue-rotate(327deg)
    brightness(72%) contrast(98%);

  width: 36px;
  height: 25px;
  object-fit: contain;
}

.offer-button {
  position: fixed;
  left: 25px;
  bottom: 45dvh;
  display: flex;
  z-index: 9999;
}

.offer-button a {
  transform: rotate(90deg);
  transform-origin: left;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  padding: 22px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  transition: 400ms;
}

.offer-button a:hover {
  background: #fff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 300;
  transition: 400ms;
}

.desc-content {
  background: #f0f0f073;
  height: 100%;
  padding: 25px;
  border-radius: 10px;
}

.desc-content * {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
}

.desc-content ol {
  padding-left: 20px;
  list-style: disc;
  margin-top: 5px;
}

.desc-content ol li::marker {
  color: #ababab !important;
}

span.desc-content-title {
  font-size: 24px;
  font-weight: 800;
}

.p-summary {
  display: flex;
}

.p-summary p {
  margin: 0;
  font-weight: 500;
  color: #575757;
}

.p-summary span {
  color: red;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  margin-right: 5px;
}

.p-summary * {
  font-size: 18px;
}

