/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
:root {
  --font-inter: 'Inter', Arial, Helvetica, sans-serif;
  --font-avenir: 'Avenir', Arial, Helvetica, sans-serif;
  --color-blue: 0, 78, 162;
  --color-light-blue: 238, 245, 252;
  --color-dark-blue: 24, 26, 45;
  --color-red: 199, 55, 58;
  --color-black: 24, 26, 45;
  --default-transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  scroll-behavior: auto;
}
html {
  color: rgba(var(--color-black),0.6);
  font-size: 16px;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
a {
  outline: none;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2rem;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  font-family: var(--font-avenir);
  font-size: 14px;
  padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-home {
  padding-top: 0;
}
.header {
  background-color: white;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  padding: 25px 0;
  transition: var(--default-transition);
}
.header.transparent {
  background-color: transparent;
  box-shadow: none;
}
.header.transparent .logo img {
  filter: grayscale(1) brightness(100);
}
.header.transparent .main-menu li a {
  color: white;
}
.header.transparent .menu-icon {
  border-color: rgba(255,255,255,0.3);;
}
.header.transparent .menu-icon .btn-cart,
.header.transparent .menu-icon .btn-user,
.header.transparent .btn-menu  {
  filter: grayscale(1) brightness(100) !important;
}
.header.transparent .dropdown-toggle {
  color: white !important;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-height: 50px;
}
.main-menu {
  padding: 0;
  margin: 0;
}
.main-menu li {
  position: relative;
  list-style: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.main-menu li a {
  margin: 0;
  display: block;
  color: rgba(var(--color-black),0.6);
  text-decoration: none;
  padding: 0 0.5rem;
  transition: var(--default-transition);
}
.main-menu li a:hover,
.main-menu li a:focus {
  color: rgb(var(--color-red))!important;
}
.main-menu li.active a {
  color: rgb(var(--color-red))!important;
}
.main-menu li.active::after {
  position: absolute;
  width: 18px;
  height: 14px;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu-item .dropdown-menu li {
  display: block;
}
.main-menu-item .dropdown-menu .dropdown-item {
  text-transform: capitalize;
  font-size: 0.875rem;
  color: rgb(var(--color-black)) !important;
  padding: 8px 0;
}
.main-menu-item .dropdown-menu .dropdown-item:hover,
.main-menu-item .dropdown-menu .dropdown-item.active {
  color: rgb(var(--color-blue)) !important;
  background-color: transparent !important;
}

.menu-icon {
  padding: 0 0.75rem;
}
.menu-lang {
  padding: 0;
  margin: 0;
}
.menu-lang .menu-lang-item {
  list-style: none;
  border-bottom: 1px solid #eee;
}
.menu-lang .menu-lang-item:last-child {
  border-bottom: none;
}
.menu-lang .menu-lang-item a {
  display: block;
  color: rgba(var(--color-black),0.6);
  text-decoration: none;
  padding: 10px 0;
  transition: var(--default-transition);
}
.menu-lang .menu-lang-item a:hover {
  color: rgb(var(--color-blue));
}
.menu-lang .menu-lang-item.active a {
  color: rgb(var(--color-blue));
  font-weight: 500;
}

.social-header {
  display: flex;
  gap: 16px;
}
.social-header a:hover {
  opacity: 0.8;
  transition: all 250ms;
}
.header:not(.transparent) .social-header a img {
  filter: invert();
}

.cart-list-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--color-black),0.2);
}
.cart-list-item:last-child {
  border-bottom: none;
}
.cart-list-image,
.cart-list-image img {
  width: 80px;
  height: 80px;
}
.cart-list-info {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
}
.cart-list-title {
  font-size: 16px;
  font-weight: 500;
  padding-left: 16px;
}
.cart-list-title a {
  color: rgb(var(--color-black));
  text-decoration: none;
  transition: var(--default-transition);
}
.cart-list-title a:hover,
.cart-list-title a:focus {
  color: rgb(var(--color-blue));
}
.hamburger {
  display: none;
  padding-left: 10px;
}
.box-blue {
  padding: 20px;
  background-color: rgb(var(--color-light-blue));
  border-radius: 8px;
}
.box-newsletter {
  position: relative;
  background-color: rgb(var(--color-blue));
  padding: 50px 30px;
  border-radius: 8px;
  background-image: url('../img/icons/bg-arrow.svg');
  background-repeat: no-repeat;
  background-position: top left;
  top: -100px;
  margin-bottom: -70px;
}
.bg-light-blue {
  background-color: rgb(var(--color-light-blue)) !important;
}
.bg-blue {
  background-color: rgb(var(--color-blue)) !important;
}
.hero-wrap {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 6rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 25%, rgba(0, 0, 0, 0.49) 50%, rgba(0, 0, 0, 0.12) 100%);
}
.hero-title {
  font-family: var(--font-inter);
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}
.pills-image {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 32px;
  background-color: rgba(var(--color-black), 0.5);
  margin-bottom: 20px;
}
.pills-image img {
  height: 42px;
}
.card-product {
  position: relative;
  padding: 40px;
  background: #FFFFFF;
  box-shadow: 0px 40px 100px rgba(24, 26, 45, 0.1);
  border-radius: 8px;
  margin-top: -110px;
  z-index: 1;
}
#product-tabContent {
  padding: 0 60px;
}
.product-grid-item {
  width: 150px;
  margin: auto;
  margin-bottom: 30px;
}
.product-grid-item .product-grid-wrap {
  display: block;
  text-decoration: none;
  width: 150px;
  text-align: center;
}
.product-grid-item .product-thumb {
  margin-bottom: 16px;
}
.product-grid-item .product-thumb img {
  width: 150px;
  height: 150px;
  transition: var(--default-transition);
}
.product-grid-item:hover .product-thumb img ,
.product-grid-item:focus .product-thumb img {
  transform: scale(1.1);
}
.product-grid-item .product-grid-wrap .product-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 160%;
}
.product-grid-item .product-grid-wrap .product-title {
  color: rgb(var(--color-black));
  text-decoration: none;
  transition: var(--default-transition);
}
.product-grid-item:hover .product-grid-wrap .product-title,
.product-grid-item:focus .product-grid-wrap .product-title {
  color: rgb(var(--color-blue));
}
.main-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.content-last {
  padding-bottom: 200px;
}
.card-banner {
  background: #FFFFFF;
  box-shadow: 0px 10px 40px rgba(24, 26, 45, 0.1);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: rgb(var(--color-black));
  transition: var(--default-transition);
  height: 100%;
}
.card-banner:hover,
.card-banner:focus {
  color: rgb(var(--color-blue));
}
.banner-title {
  font-weight: 800;
  font-size: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  width: 50%;
}
.banner-image {
  width: 50%;
}
.card-news {
  position: relative;
  margin-bottom: 30px;
  text-decoration: none;
}
.card-news .news-thumb {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 30px;
}
.card-news .news-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  
}
.card-news .title {
  color: rgb(var(--color-black));
  margin-bottom: 16px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-news .news-desc {
  font-size: 14px;
  color: rgba(var(--color-black),0.6);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-news .news-desc.large {
  font-size: 18px;
}
.card-news .news-overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(73, 69, 65, 0.1);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--default-transition);
  transform: none;
}
.card-news:hover .news-overlay,
.card-news:focus .news-overlay {
  visibility: visible;
  opacity: 1;
}
.video-wrapper {
  position: relative;
  overflow: hidden;
}
.video-cover {
  position: relative;
  z-index: 2;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: all 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.play-button:hover,
.play-button:focus {
  cursor: pointer;
  opacity: 0.75;
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cover-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-black), 0.35);
  z-index: 1;
  cursor: pointer;
}
.cover-wrapper {
  position: relative;
  padding-bottom: 56.2%;
}
.cover-wrapper img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#testimonialSlider {
  padding-top: 50px;
  padding-bottom: 50px;
}
#testimonialSlider .swiper-slide {
  opacity: 0.4;
}
#testimonialSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.box-testimony {
  max-width: 780px;
  padding: 0 16px;
}
.image-testimony {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
}
.image-testimony img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.testimony-name {
  font-weight: 500;
  font-size: 20px;
}
.testimony-title {
  font-weight: 500;
  font-size: 14px;
  color: rgba(var(--color-black),0.6)
}
.testimony-desc {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgb(var(--color-blue));
  border-left: 10px solid rgb(var(--color-blue));
  box-shadow: 0px 40px 100px rgba(24, 26, 45, 0.1);
  border-radius: 8px;
  padding: 20px 30px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 200%;
  color: rgba(var(--color-black),0.6);
  margin-left: -70px;
  z-index: 1;
}
.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
.side-menu {
  margin: 30px 0 0;
  padding: 0;
}
.side-menu .side-menu-item {
  list-style: none;
  font-size: 18px;
  margin-bottom: 4px;
}
.side-menu .side-menu-item a {
  display: block;
  color: rgba(var(--color-black),0.6);
  text-decoration: none;
  padding: 16px 20px 12px 40px;
  border-top-right-radius: 64px;
  border-bottom-right-radius: 64px;
  transition: var(--default-transition);
}
.side-menu .side-menu-item a:hover,
.side-menu .side-menu-item a:focus,
.side-menu .side-menu-item.active a {
  position: relative;
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-light-blue));
}
.side-menu .side-menu-item a:hover::before,
.side-menu .side-menu-item a:focus::before,
.side-menu .side-menu-item.active a::before {
  position: absolute;
  width: 10px;
  height: 10px;
  content: '';
  top: 50%;
  left: 20px;
  border-radius: 100%;
  background-color: rgb(var(--color-blue));
  transform: translateY(-50%);
}
.page-cover {
  position: relative;
  padding-bottom: 42.86%;
  height: 0;
  margin-bottom: 30px;
}
.page-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
#sliderCover .swiper-button-next,
#sliderCover .swiper-button-prev,
#newsSlider .swiper-button-next,
#newsSlider .swiper-button-prev,
#afterSlider .swiper-button-next,
#afterSlider .swiper-button-prev {
  visibility: hidden;
  opacity: 0;
  transition: var(--default-transition);
}
#sliderCover:hover .swiper-button-next,
#sliderCover:hover .swiper-button-prev,
#newsSlider:hover .swiper-button-next,
#newsSlider:hover .swiper-button-prev,
#afterSlider:hover .swiper-button-next,
#afterSlider:hover .swiper-button-prev {
  visibility: visible;
  opacity: 1;
}
#sliderCover .swiper-button-next,
#newsSlider .swiper-button-next,
#afterSlider .swiper-button-next {
  right: 16px;
}
#sliderCover .swiper-button-prev,
#newsSlider .swiper-button-prev,
#afterSlider .swiper-button-prev {
  left: 16px;
}
.homenews-slider {
  position: absolute;
  width: 100%;
  top: calc(50% - 25px);
}
.homenews-slider .swiper-button-next {
  right: -72px;
}
.homenews-slider .swiper-button-prev {
  left: -72px;
}
.homenews-wrapper {
  position: relative;
}
.main-article blockquote {
  font-size: 30px;
  color: rgb(var(--color-blue));
  font-weight: 500;
  font-style: italic;
  padding: 16px 0;
}
.box-highlight {
  background-color: rgb(var(--color-light-blue));
  padding: 40px 60px;
  border-radius: 8px;
  margin: 30px 0;
}
.highlight-title {
  font-size: 50px;
  margin-bottom: 20px;
}
.highlight-content {
  font-size: 20px;
  line-height: 200%;
}
.title-icon {
  position: relative;
  top: 6px;
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  margin-right: 30px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}
.table-flex {
  margin-bottom: 30px;
}
.table-flex-header {
  background-color: rgb(var(--color-blue));
  padding: 16px 20px;
  display: flex;
  color: rgb(255, 255, 255);
  font-weight: 600;
  border-radius: 8px;
}
.table-flex-list {
  display: flex;
  padding: 16px 20px;
  border-radius: 8px;
}
.table-flex-list:nth-child(2n+1) {
  background-color: rgb(var(--color-light-blue));
}
.table-flex-item {
  padding: 0 20px;
}
.table-flex-item .data-header {
  display: none;
  font-weight: 600;
  margin-bottom: 6px;
}
.location-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.card-location {
  background: rgb(223,223,223);
  background: linear-gradient(0deg, rgba(223,223,223,1) 0%, rgba(255,255,255,1) 100%);
  transition: var(--default-transition);
  margin: 5px;
  width: calc(20% - 10px);
  border: 2px solid #dfdfdf;
}
.card-location:hover,
.card-location:focus {
  box-shadow: 0px 4px 32px rgba(24, 26, 45, 0.07);
  transform: translateY(-5px);
}
.card-location a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(var(--color-blue));
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.certificate-list {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}
.certificate-list::after {
  position: absolute;
  width: 110%;
  height: 2px;
  content: '';
  left: -12px;
  bottom: -1px;
  border-bottom: 2px solid #fff;
}
.col-bordered {
  padding: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.col-bordered:nth-child(4n+4),
.col-bordered:last-child {
  border-right: none;
}
.product-image {
  margin-bottom: 16px;
}
.product-image img {
  width: 100%;
}
#productThumb {
  margin-bottom: 30px;
}
#productThumb .product-thumb {
  border: 1px solid rgba(var(--color-dark-blue), 0.2);
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
}
#productThumb .swiper-slide-thumb-active .product-thumb {
  border: 1px solid rgba(var(--color-blue), 1);
}
#productThumb .swiper-button-next {
  border-radius: 4px;
  transform: scale(0.6);
  right: -12px;
}
#productThumb .swiper-button-prev {
  border-radius: 8px;
  transform: scale(0.5);
  left: -12px;
}
.link-file {
  position: relative;
  display: table;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
  padding-left: 2.5rem;
  color: rgb(var(--color-blue));
}
.link-file span {
  display: table-cell;
  vertical-align: middle;
}
.link-file::before {
  position: absolute;
  background-image: url('../img/icons/ico-pdf.svg');
  background-repeat: no-repeat;
  left: 0;
  content: '';
  width: 23px;
  height: 30px;
}
.link-file img {
  float: left;
  padding-right: 10px;
}
.download-items {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(var(--color-dark-blue), 0.1);
  padding: 0.75rem;
}
.default-list li {
  line-height: 200%;
}
.color-gray {
  color: rgba(var(--color-black), 0.6);
}
.form-wrap {
  position: relative;
  margin-bottom: 30px;
}
.form-wrap::before {
  position: absolute;
  width: 1px;
  height: 100%;
  left: -24px;
  top: 0;
  content: '';
  border-left: 1px solid rgba(var(--color-black),0.2);;
}
.heading {
  position: relative;
  margin-bottom: 30px;
}
.heading-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.heading-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: -moz-linear-gradient(45deg, rgba(var(--color-blue),1) 0%, rgba(var(--color-blue),0) 100%);
  background: -webkit-linear-gradient(45deg, rgba(var(--color-blue),1) 0%,rgba(var(--color-blue),0) 100%);
  background: linear-gradient(45deg, rgba(var(--color-blue),1) 0%,rgba(var(--color-blue),0) 100%);
}
.heading-title {
  font-size: 80px;
}
.heading-desc {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
}
.career-list {
  margin-top: 30px;
}
.career-list-item {
  background: #fff;
  box-shadow: 0px 10px 40px rgba(24, 26, 45, 0.1);
  border-radius: 8px;
  padding: 34px;
  margin-bottom: 40px;
}
.career-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.career-meta {
  padding: 0;
  margin: 0;
}
.career-meta li {
  position: relative;
  display: inline-block;
  list-style: none;
  padding: 0 8px 0 16px;
}
.career-meta li::before {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 7px;
  left: 0;
  content: '';
  border-radius: 100%;
  background-color: rgb(var(--color-black));
}
.career-meta li:first-child {
  padding-left: 0;
}
.career-meta li:first-child::before {
  display: none;
}
.career-meta.large li {
  font-size: 18px;
}
.career-meta.large li::before {
  top: 9px;
}
.line-separator {
  width: 100%;
  height: 1px;
  background-color: rgba(var(--color-black), 0.2);
  margin: 30px 0;
}
.news-slider-item {
  width: 350px;
}
.news-slider-item img {
  width: 350px;
  height: 350px;
  object-fit: cover;
}
.contact-table {
  margin: 0 -4px;
}
.contact-table tr td {
  padding: 2px 4px;
}
.contact-table a {
  color: rgb(var(--color-black));
  text-decoration: none;
  transition: var(--default-transition);
}
.contact-table a:hover {
  color: rgb(var(--color-red));
}
.sitemap,
.sitemap li ul,
.sitemap li ul li ol {
  padding: 0;
  margin: 0;
}
.sitemap {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 100%;
}
.sitemap li ul {
  margin-top: 10px;
}
.sitemap li ul li ol {
  margin-top: 10px;
  padding-left: 16px;
}
.sitemap li {
  position: relative;
  font-weight: 800;
  font-size: 16px;
  list-style: none;
  padding: 8px 0 8px 30px;
}
.sitemap li::before {
  position: absolute;
  width: 20px;
  height: 7px;
  content: ' ';
  top: 15px;
  left: 0;
  border-radius: 14px;
  background-color: rgb(var(--color-blue));
}
.sitemap li a {
  color: rgb(var(--color-blue));
  transform: var(--default-transition);
  text-decoration: none;
}
.sitemap li a:hover,
.sitemap li a:focus {
  color: rgb(var(--color-red));
}
.sitemap li ul li {
  font-weight: 500;
  padding: 8px 0 8px 16px;
}
.sitemap li ul li:last-child {
  padding-bottom: 0;
}
.sitemap li ul li::before {
  width: 6px;
  height: 6px;
  top: 15px;
  border-radius: 100%;
  background-color: rgba(var(--color-black));
}
.sitemap li ul li a {
  color: rgba(var(--color-black));
}
.sitemap li ul li ol li {
  color: rgba(var(--color-black), 0.6);
  list-style-type: decimal;
  padding-left: 0;
}
.sitemap li ul li ol li::before {
  display: none;
}
.sitemap li ul li ol li a {
  color: rgba(var(--color-black), 0.6);
}
.user-profile img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
}
.user-profile a {
  transition: var(--default-transition);
}
.user-profile a:hover,
.user-profile a:focus {
  opacity: 0.7;
}
.user-name {
  font-weight: 500;
  font-size: 16px;
}
.user-email {
  font-size: 12px;
  color: rgba(var(--color-black), 0.6);
}
.img-stack {
  margin: -4px -2px;
}
.img-stack img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  margin: 4px 2px;
  border-radius: 4px;
}
.slider-image img {
  width: 100%;
}
#sliderSpec .swiper-button-prev,
#sliderSpec .swiper-button-next {
  transform: scale(0.75);
  opacity: 0.7;
}
#sliderSpec .swiper-button-prev {
  left: 1rem;
}
#sliderSpec .swiper-button-next {
  right: 1rem;
}

#scroll-top {
  position: fixed;
  width: 48px;
  height: 48px;
  color: #fff;
  background-color: rgb(var(--color-blue));
  background-image: url('../img/icons/ico-arrow-top.svg');
  background-repeat: no-repeat;
  background-position: 14px 10px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  bottom: -48px;
  right: 30px;
  transition: all 300ms ease;
  cursor: pointer;
  z-index: 99;
}
#scroll-top.sticky {
  bottom: 30px;
}
#scroll-top span {
  position: absolute;
  bottom: 8px;
  left: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.list-result {
  padding: 30px 0;
  border-bottom: 1px solid #d9d9d9;
}
.list-result-cat {
  font-weight: 600;
  font-size: 14px;
  color: rgb(var(--color-red));
}
.list-result-title {
  color: rgb(var(--color-black));
  font-size: 16px;
  font-weight: 600;
  display: block;
  text-decoration: none;
}
.list-result-title:hover,
.list-result-title:focus {
  color: rgb(var(--color-blue));
}
.btn-text {
  text-decoration: none;
  color: rgb(var(--color-blue));
  font-weight: 500;
}

/* =========== Loader =========== */
.ldBar{
  position: relative;
}
.ldBar-label {
  font-size: 18px;
  text-align: center;
  padding: 30px 0;
  white-space: nowrap;
}
.ldBar-label:before{
  content: "Loading ";
  display: inline;
}
.ldBar-label:after{
  content: "%";
  display: inline;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1031;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.is-loading {
  overflow: hidden;
}
.an-loading *,
.an-loading *:before,
.an-loading *:after {
  animation-play-state: paused !important;
}

/* =========== Typography =========== */

.title {
  font-weight: 800;
  line-height: 140%;
}
.title a {
  color: rgb(var(--color-black));
  text-decoration: none;
  transition: var(--default-transition);
}
.title a:hover,
.title a:focus {
  color: rgb(var(--color-blue))
}
.title-arrow {
  position: relative;
  display: inline;
}
.title-arrow::before {
  position: absolute;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  left: 0;
  top: -4px;
}
h1.title {
  font-size: 40px;
}
h1.title.title-arrow {
  padding-left: 70px;
}
h1.title.title-arrow::before {
  width: 60px;
  height: 45px;
  background-size: 60px 45px;
}
h2.title {
  font-size: 30px;
}
h2.title.title-arrow {
  padding-left: 46px;
}
h2.title.title-arrow::before {
  width: 33px;
  height: 25px;
  background-size: 33px 25px;
  top: 0px;
}
h3.title {
  font-size: 20px;
}
h3.title.title-arrow {
  padding-left: 40px;
}
h3.title.title-arrow::before {
  width: 33px;
  height: 25px;
  background-size: 33px 25px;
}

.body-1 {
  font-size: 20px;
}
.body-2 {
  font-size: 18px;
}
.body-3 {
  font-size: 16px;
}
.body-4 {
  font-size: 14px;
}
.body-5 {
  font-size: 12px;
}
.sub-title {
  font-size: 18px;
  color: rgba(var(--color-black),0.6);
}

/* =========== Button =========== */

.btn-reset {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none;
}
.btn {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 8px;
}
.btn-sm {
  padding: 12px 22px;
}
.btn-dl {
  font-size: 12px;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  align-self: flex-start
}
.btn-action {
  font-size: 12px;
  padding: 4px 14px;
}
.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
}
.btn-primary {
  color: #fff;
  background-color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}
.btn-primary:hover {
  color: #fff;
  background-color: rgba(var(--color-blue), 0.8);
  border-color: rgba(var(--color-blue), 0.8);
}
.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-blue), 0.25);
}
.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}
.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-blue), 0.25);
}
.btn-secondary {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(255, 255, 255);
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgba(var(--color-red), 0.8);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-red), 0.25);
}
.btn-check:checked+.btn-secondary,
.btn-check:active+.btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(var(--color-red));
  border-color: rgb(var(--color-red));
}
.btn-check:checked+.btn-secondary:focus,
.btn-check:active+.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-red), 0.25);
}
.btn-outline {
  color: #fff;
  background-color: transparent;
  border-color: rgb(255, 255, 255);
}
.btn-outline:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-check:focus+.btn-outline,
.btn-outline:focus {
  color: rgb(var(--color-blue));
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 0 0 0.1875rem rgba(255, 255, 255, 0.25);
}
.btn-check:checked+.btn-outline,
.btn-check:active+.btn-outline,
.btn-outline:active,
.btn-outline.active,
.show>.btn-outline.dropdown-toggle {
  color: rgb(var(--color-blue));
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.btn-check:checked+.btn-outline:focus,
.btn-check:active+.btn-outline:focus,
.btn-outline:active:focus,
.btn-outline.active:focus,
.show>.btn-outline.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.1875rem rgba(255, 255, 255, 0.25);
}
.btn-outline-primary {
  color: rgb(var(--color-blue));
  background-color: transparent;
  border-color: rgb(var(--color-blue));
}
.btn-outline-primary:hover {
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-light-blue));
  border-color: rgb(var(--color-blue));
}
.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-light-blue));
  border-color: rgb(var(--color-blue));
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-blue), 0.25);
}
.btn-check:checked+.btn-outline-primary,
.btn-check:active+.btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show>.btn-outline-primary.dropdown-toggle {
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-light-blue));
  border-color: rgb(var(--color-blue));
}
.btn-check:checked+.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.1875rem rgba(var(--color-blue), 0.25);
}
.btn-cart {
  position: relative;
}
.btn-cart.show::after {
  position: absolute;
  width: 18px;
  height: 14px;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  background-repeat: no-repeat;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}
.btn-delete {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 6px;
}
.btn-delete::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background-image: url('../img/icons/ico-close.svg');
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-close {
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.8782 11.9977L19.606 6.28325C19.8568 6.03242 19.9977 5.69222 19.9977 5.3375C19.9977 4.98277 19.8568 4.64257 19.606 4.39174C19.3552 4.14091 19.015 4 18.6602 4C18.3055 4 17.9653 4.14091 17.7145 4.39174L12 10.1195L6.28552 4.39174C6.03469 4.14091 5.6945 4 5.33977 4C4.98504 4 4.64485 4.14091 4.39402 4.39174C4.14319 4.64257 4.00227 4.98277 4.00227 5.3375C4.00227 5.69222 4.14319 6.03242 4.39402 6.28325L10.1218 11.9977L4.39402 17.7122C4.26917 17.836 4.17007 17.9834 4.10244 18.1457C4.03482 18.308 4 18.4821 4 18.658C4 18.8338 4.03482 19.0079 4.10244 19.1702C4.17007 19.3326 4.26917 19.4799 4.39402 19.6037C4.51785 19.7286 4.66517 19.8277 4.8275 19.8953C4.98982 19.9629 5.16392 19.9977 5.33977 19.9977C5.51562 19.9977 5.68972 19.9629 5.85204 19.8953C6.01437 19.8277 6.16169 19.7286 6.28552 19.6037L12 13.8759L17.7145 19.6037C17.8383 19.7286 17.9856 19.8277 18.148 19.8953C18.3103 19.9629 18.4844 19.9977 18.6602 19.9977C18.8361 19.9977 19.0102 19.9629 19.1725 19.8953C19.3348 19.8277 19.4822 19.7286 19.606 19.6037C19.7308 19.4799 19.8299 19.3326 19.8976 19.1702C19.9652 19.0079 20 18.8338 20 18.658C20 18.4821 19.9652 18.308 19.8976 18.1457C19.8299 17.9834 19.7308 17.836 19.606 17.7122L13.8782 11.9977Z' fill='%23C7373A'/%3E%3C/svg%3E%0A");
  background-size: 20px;
  opacity: 1;
  box-shadow: none !important;
}
.btn-close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
}
.btn-close-modal.light img {
  filter: grayscale(1) brightness(100);
}
.btn-eye {
  position: absolute;
  padding: 10px;
  top: 50%;
  right: 1rem;
  cursor: pointer;
  transform: translateY(-50%);
}
.btn-eye {
  width: 24px;
  height: 24px;
  content: ' ';
  background-image: url('../img/icons/ico-eye.svg');
  background-repeat: no-repeat;
}
.btn-eye.toggled {
  background-image: url('../img/icons/ico-eye-off.svg');
}

/* =========== Dropdown =========== */

.dropdown-menu {
  top: calc(100% + 16px) !important;
  padding: 16px 16px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 40px 100px rgba(24, 26, 45, 0.1);
}
.dropdown-menu-center {
  right: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.dropdown-toggle {
  display: block;
  color: rgb(var(--color-black));
  transition: var(--default-transition);
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0em;
  content: "";
  border-top: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-bottom: 0;
  border-left: 0.5em solid transparent;
}
.main-menu-item .dropdown-toggle::after {
  margin-left: 0.25em;
  vertical-align: 0.25em;
  content: "";
  border-top: 0.25em solid;
  border-right: 0.25em solid transparent;
  border-bottom: 0;
  border-left: 0.25em solid transparent;
}
.drop-cart-title {
  font-weight: 800;
  font-size: 16px;
  color: rgba(var(--color-black),0.6);
}
.dropdown-cart {
  width: 440px;
  padding-left: 16px;
  padding-right: 16px;
}
.dropdown-cart .cart-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}
.dropdown-cart .cart-list::-webkit-scrollbar-track {
	background-color: rgba(var(--color-black),0.05);
}
.dropdown-cart .cart-list::-webkit-scrollbar {
	width: 6px;
	background-color: rgba(var(--color-black),0.05);
}
.dropdown-cart .cart-list::-webkit-scrollbar-thumb {
	background-color: rgb(var(--color-blue));
}
.drop-cart-count {
  font-size: 20px;
  font-weight: 500;
}
.drop-cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
}
.img-invert {
  filter: grayscale(1) brightness(100);
}
.user-profile.dropdown .dropdown-menu {
  top: calc(100% - 10px) !important;
  min-width: 200px;
}

/* =========== Form & Input =========== */

.form-control,
.form-select {
  padding: 17px 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgb(var(--color-black));
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #93B4D8;
  border-radius: 10px;
}
.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-black));
  background-color: #fff;
  border-color: rgb(var(--color-blue));
  outline: 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: rgba(var(--color-black), 0.5);
}
.form-control::placeholder {
  color: rgba(var(--color-black), 0.5);
}
.form-label {
  font-size: 14px;
  color: rgb(var(--color-black));
  letter-spacing: 3px;
}
.input-search {
  font-family: var(--font-inter);
  letter-spacing: normal;
  background-image: url('../img/icons/ico-search.svg');
  background-repeat: no-repeat;
  background-position: 20px 15px;
  padding-left: 58px;
}
.select-dept {
  font-family: var(--font-inter);
  letter-spacing: normal;
}
.form-search {
  border-radius: 32px;
  box-shadow: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.55rem 1rem 0.45rem 2.6rem;
  width: 100%;
  color: #fff !important;
  background-image: url('../img/icons/ico-search.svg');
  background-repeat: no-repeat;
  background-position: 1rem;
  background-size: 18px;
}
.group-search {
  border: 1px solid #fff;
  border-radius: 8px;
}
.group-search .form-control {
  background-color: transparent;
  border: none;
  color: #fff;
}
.group-search .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 1);
}
.group-search .form-control::placeholder {
  color: rgba(255, 255, 255, 1);
}
.group-search .btn {
  border-left: 1px solid #fff;
}

/* =========== Modal =========== */

.modal {
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  padding: 40px;
}
.modal-content.transparent {
  background-color: transparent;
  border: none;
}

/* =========== Offcanvas =========== */

.offcanvas {
  background-color: rgb(var(--color-dark-blue));
  color: rgba(255, 255, 255, 0.8);
}
.offcanvas-header {
  padding: 30px 16px;
}
.offcanvas-menu {
  padding: 0;
}
.offcanvas-menu .offcanvas-menu-item {
  list-style: none;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas-menu .offcanvas-menu-item a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 16px 0;
  transition: var(--default-transition);
}
.offcanvas-menu .offcanvas-menu-item a:hover,
.offcanvas-menu .offcanvas-menu-item a:focus,
.offcanvas-menu .offcanvas-menu-item.active a {
  padding: 16px 0 16px 24px;
  color: rgb(var(--color-red));
}
.offcanvas-menu .offcanvas-menu-item a::before {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 18px;
  height: 14px;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--default-transition);
}
.offcanvas-menu .offcanvas-menu-item a:hover::before,
.offcanvas-menu .offcanvas-menu-item a:focus::before,
.offcanvas-menu .offcanvas-menu-item.active a::before {
  visibility: visible;
  opacity: 1;
}

/* =========== Tabs =========== */
.tab-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.tab-wrap::-webkit-scrollbar {
	display: none;
}
.nav-product {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-product .nav-link {
  background: white;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--color-black),0.6);
  transition: var(--default-transition);
  min-width: 150px;
  padding-bottom: 20px;
}
.nav-product .nav-link:hover,
.nav-product .nav-link:focus {
  color: rgb(var(--color-red));
  outline: none;
  box-shadow: none;
}
.nav-product .nav-link.active {
  position: relative;
  color: rgb(var(--color-blue));
}
.nav-product .nav-link.active::before {
  position: absolute;
  width: 18px;
  height: 14px;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  background-repeat: no-repeat;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.nav-product .nav-link .image-tab {
  display: block;
  margin-bottom: 10px;
}
.tab-product-list .nav-product {
  justify-content: flex-start;
}
.tab-product-list .nav-item {
  min-width: 200px;
}
.nav-default {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 16px;
  margin: 0 -16px;
}
.nav-default::-webkit-scrollbar {
	display: none;
}
.nav-default .nav-link {
  background-color: transparent;
  border: none;
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  color: rgba(var(--color-black), 0.6);
  padding: 10px 40px;
  border-bottom: 4px solid transparent;
  transition: var(--default-transition);
  white-space: nowrap;
}
.nav-default .nav-link:hover,
.nav-default .nav-link:focus {
  color: rgb(var(--color-blue));
  outline: none;
  box-shadow: none;
}
.nav-default .nav-link.active {
  color: rgb(var(--color-blue));
  border-color: rgb(var(--color-blue));
}
.tab-content.border-top {
  border-top: 1px solid rgba(var(--color-black), 0.2);
}
.tab-product-home .nav-product {
  flex-wrap: wrap;
}

#sliderTab {
  margin: 0 3rem;
}
#sliderTab .swiper-slide {
  height: auto;
}
#sliderTab .swiper-wrapper {
}
.slider-tab-items {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  color: rgba(var(--color-black), 0.7);
  padding:6px 16px;
  transition: var(--default-transition);
}
.slider-tab-items:hover,
.slider-tab-items:focus {
  color: rgb(var(--color-red));
}
.swiper-slide.activeTab .slider-tab-items {
  color: rgb(var(--color-blue));
}
.swiper-slide.activeTab .slider-tab-items::before {
  position: absolute;
  width: 18px;
  height: 14px;
  content: ' ';
  background-image: url('../img/icons/red-arrow.svg');
  background-repeat: no-repeat;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}
.slider-tab-items .image-tab {
  margin-bottom: 0.5rem;
}
.sliderTab-nav {
  position: absolute;
  width: 100%;
  top: calc(50% - 1.4rem);
}
.sliderTab-nav .swiper-button-prev,
.sliderTab-nav .swiper-button-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}
.sliderTab-nav .swiper-button-prev:after,
.sliderTab-nav .swiper-button-next:after {
  background-size: 10px;
}
.sliderTab-nav .swiper-button-prev {
  left: 0;
}
.sliderTab-nav .swiper-button-next {
  right: 0;
}
.scroll-down {
  position: absolute;
  display: block;
  bottom: 140px;
  left: calc(50% - 34px);
  z-index: 1;
}
.icon-scroll {
  font-size: 10px;
  color: #fff;
  letter-spacing: 1px;
  -webkit-animation-name: mouse-scroll;
  animation-name: mouse-scroll;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 1;
}
.icon-scroll::before {
  content: url(../img/icons/mouse.svg);
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
}
@-webkit-keyframes mouse-scroll {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.25;
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  } 
}
@keyframes mouse-scroll {
  from {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.25;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  } 
}

/* =========== breadcrumb =========== */

.breadcrumb { 
  --bs-breadcrumb-divider: ' ';
  margin-bottom: 40px;
  flex-wrap: nowrap;
  width: 100%;
}
.breadcrumb-item+.breadcrumb-item {
  padding-left: 5px;
  padding-right: 10px;
}
.breadcrumb-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb-item a {
  display: block;
  text-decoration: none;
  color: rgba(var(--color-black),0.6);
  transition: var(--default-transition);
  white-space: nowrap;
}
.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: rgb(var(--color-red));
}
.breadcrumb-item.active {
  font-weight: 500;
  color: rgb(var(--color-blue));
}
.breadcrumb-item + .breadcrumb-item::before  {
  position: relative;
  top: 5px;
  left: -3px;
  padding-right: 10px;
  width: 4px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='9' viewBox='0 0 5 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.821128 8.91699C0.691988 8.91699 0.562276 8.87356 0.455421 8.78442C0.213141 8.5827 0.18057 8.22213 0.38228 7.97984L2.93994 4.91066L0.474278 1.84662C0.276568 1.6009 0.315425 1.2409 0.561133 1.04318C0.807414 0.845465 1.16683 0.884323 1.36512 1.13004L4.12391 4.55865C4.29419 4.77066 4.29191 5.07352 4.11763 5.28266L1.26055 8.71128C1.14741 8.84671 0.985124 8.91699 0.821128 8.91699' fill='%23222B45'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}

/* =========== Swiper =========== */

.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgb(var(--color-blue));
  border-radius: 100%;
}
#heroSlider .swiper-button-next, #heroSlider .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.2);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 40px;
  right: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 40px;
  left: auto;
}
.swiper-button-next:after, .swiper-button-prev:after {
  width: 15px;
  height: 24px;
  content: ' ';
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='22' viewBox='0 0 12 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.05975e-07 11L11.25 0.607697L11.25 21.3923L9.05975e-07 11Z' fill='white'/%3E%3C/svg%3E%0A");
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='22' viewBox='0 0 12 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11L0.75 21.3923L0.75 0.607696L12 11Z' fill='white'/%3E%3C/svg%3E%0A");
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 140px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgb(255, 255, 255);
  opacity: 1;
  border-radius: 10px;
  transition: var(--default-transition);
}
.swiper-pagination-bullet-active {
  background-color: rgb(var(--color-red));
  width: 24px;
}

/* =========== Badge =========== */
.badge {
  border-radius: 36px;
  font-size: 14px;
  font-weight: 400;
  padding: 9px 16px 7px 16px;
  line-height: 100%;
}
.badge.badge-blue {
  color: rgb(var(--color-blue));
  background-color: rgba(var(--color-blue), 0.1);
  border: 1px solid rgb(var(--color-blue));
}
.badge.badge-orange {
  color: rgb(240, 115, 0);
  background-color: rgba(240, 115, 0, 0.1);
  border: 1px solid rgb(240, 115, 0);
}

/* =========== Pagination =========== */
.pagination {
  border: 1px solid rgba(var(--color-black), 0.2);
  display: inline-flex;
  border-radius: 8px;
}
.page-link {
  position: relative;
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(var(--color-black), 0.6);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: none;
  border-radius: 8px;
}
.page-link:hover {
  color: rgba(var(--color-black));
  background-color: rgba(var(--color-blue), 0.1);
  border-color: transparent;
}
.active>.page-link,
.page-link.active {
  color: #fff;
  background-color: rgb(var(--color-blue));
  border-color: var(--bs-pagination-active-border-color);
}

/* =========== Footer =========== */

.footer {
  background-color: rgb(var(--color-dark-blue));
  font-family: var(--font-inter);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.25px;
}
.footer-widget {
  padding: 70px 0 70px;
}
.footer-menu {
  padding: 0;
  margin: -10px 0;
}
.footer-menu .footer-menu-item {
  list-style: none;
  font-family: var(--font-inter);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-menu .footer-menu-item a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 0;
  transition: var(--default-transition);
}
.footer-menu .footer-menu-item a:hover,
.footer-menu .footer-menu-item a:focus {
  color: rgb(var(--color-red));
}
.footer-widget-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-list {
  padding: 0 0 0 1rem;
  margin: 0;
}
.footer-list li {
  margin-bottom: 0.5rem;
  font-size: 12px;
  line-height: 180%;
}
.footer-table {
  font-size: 12px;
  margin: 0 -4px;
}
.footer-table tr td {
  padding: 2px 4px;
}
.footer-table a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--default-transition);
}
.footer-table a:hover {
  color: rgb(var(--color-red));
}
.social-menu {
  padding: 0;
  margin: 20px 0 0 0;
}
.social-menu .social-menu-item {
  list-style: none;
  padding: 16px 0;
}
.social-menu .social-menu-item a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--default-transition);
}
.social-menu .social-menu-item:first-child {
  padding-top: 0;
}
.social-menu .social-menu-item a:hover,
.social-menu .social-menu-item a:focus {
  color: rgba(255, 255, 255, 1);
}
.social-menu .social-menu-item a img {
  margin-right: 10px;
}
.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
.hide-on-desktop {
  display: none;
}
.r-8 {
  border-radius: 8px;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media only screen and (max-width: 1399px) {
  .main-menu li a {
    padding: 0px 6px;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .hero-title {
    font-size: 52px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .banner-icon img {
    width: 75px;
    height: 75px;
  }
}
@media only screen and (min-width: 992px) {
  .modal-lg {
      --bs-modal-width: 680px;
  }
}
@media only screen and (max-width: 991px) {
  .tab-wrap {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: -40px;
    margin-right: -40px;
  }
  .tab-product-home .nav-product {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .tab-product-home .nav-product .nav-item {
    width: 33.3334%;
  }
  .tab-product-home .nav-product .nav-link {
    width: 100%;
    white-space: normal;
  }
  #product-tabContent {
    padding: 0;
  }
  .card-banner {
    margin-bottom: 30px;
    height: auto;
  }
  .banner-icon img {
    width: 100px;
    height: 100px;
  }
  .sidebar {
    position: static;
    top: auto;
  }
  .side-menu {
    display: flex;
    overflow-x: auto;
    margin-bottom: 30px;
  }
  .side-menu::-webkit-scrollbar {
    display: none;
  }
  .side-menu .side-menu-item {
    font-size: 16px;
    white-space: nowrap;
    padding: 0 6px;
  }
  .side-menu .side-menu-item:first-child {
    padding-left: 0;
  }
  .side-menu .side-menu-item a {
    border-radius: 32px;
    border: 1px solid rgba(var(--color-blue), 0.2);
    padding: 12px 24px 12px 24px;
  }
  .side-menu .side-menu-item a::before {
    display: none;
  }
  .sitemap {
    border: none;
  }
  .hero-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 82px;
  }
  .logo img {
    max-height: 30px;
  }
  .menu-icon {
    padding: 0 8px;
  }
  .dropdown-menu {
    top: calc(100% + 6px) !important;
  }
  .dropdown-cart {
    width: 300px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .drop-cart-count {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .drop-cart-footer {
    display: block;
  }
  .drop-cart-footer .btn {
    width: 100%;
  }
  .dropdown-cart .cart-list {
    max-height: 300px;
  }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0em;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
  }
  .cart-list-image,
  .cart-list-image img {
    width: 50px;
    height: 50px;
  }
  .btn {
    font-size: 14px;
    padding: 14px 24px;
  }
  .btn-sm {
    padding: 10px 24px;
  }
  .btn-dl {
    padding: 0.25rem 0.75rem;
  }
  .offcanvas-header {
    padding: 27px 16px;
  }
  .offcanvas.offcanvas-start {
    border-right: none;
  }
  .modal-content {
    padding: 30px;
  }
  h1.title {
    font-size: 28px;
  }
  h1.title.title-arrow {
    padding-left: 50px;
  }
  h1.title.title-arrow::before {
    width: 40px;
    height: 30px;
    background-size: 40px 30px;
    top: 4px;
  }
  h3.title.title-arrow::before {
    top: 0;
  }
  h2.title {
    font-size: 24px;
  }
  h2.title.title-arrow {
    padding-left: 40px;
  }
  h2.title.title-arrow::before {
    top: 4px;
  }
  .form-control,
  .form-select {
    padding: 14px 24px;
  }
  .box-newsletter {
    padding: 30px;
    margin-bottom: -100px;
  }
  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .pills-image {
    margin-bottom: 16px;
  }
  .pills-image img {
    height: 28px;
  }
  #heroSlider .swiper-button-next, #heroSlider .swiper-button-prev {
    display: none;
  }
  .card-product {
    padding: 30px 16px;
  }
  .tab-wrap {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .product-grid-item .product-thumb img {
    width: 100px;
    height: 100px;
  }
  .nav-product .nav-link {
    white-space: nowrap;
  }
  .nav-product .nav-link img {
    width: 50px;
    height: 50px;
  }
  .card-product {
    margin-top: -80px;
  }
  .main-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content-last {
    padding-bottom: 120px;
  }
  .content-last.bg-light-blue {
    padding-top: 60px;
  }
  .card-banner {
    margin-bottom: 16px;
  }
  .card-news .title {
    min-height: 0;
  }
  .card-news .news-desc.large {
      font-size: 16px;
  }
  #testimonialSlider {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .image-testimony {
    margin-bottom: 24px;
  }
  .testimony-desc {
    margin-left: 0;
  }
  #testimonialSlider .swiper-button-next, #testimonialSlider .swiper-button-prev {
    top: 20%;
  }
  .play-button {
    width: 50px;
    height: 50px;
  }
  .ldBar {
    transform: scale(0.7);
  }
  .testimony-desc {
    box-shadow: 0px 40px 50px rgba(24, 26, 45, 0.1);
  }
  .box-highlight {
    padding: 30px;
  }
  .main-article blockquote {
    font-size: 20px;
  }
  .highlight-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .highlight-content {
    font-size: 18px;
  }
  .title-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .title-icon img {
    max-height: 36px;
  }
  .side-menu {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .table-flex-header {
    display: none;
  }
  .table-flex-list {
    display: flex;
    padding: 20px 30px;
    border-radius: 8px;
    flex-direction: column;
    background-color: rgba(var(--color-blue), 0.03);
  }
  .table-flex-item {
    width: 100% !important;
    padding: 0;
    margin-bottom: 10px;
  }
  .table-flex-item .data-header {
    display: block;
    padding: 8px 0;
  }
  .card-location {
    width: calc(50% - 10px);
  }
  .input-search {
    padding-left: 54px;
  }
  .heading-content {
    height: 160px;
  }
  .heading-image img {
    height: 160px;
  }
  .heading-desc {
    font-size: 16px;
  }
  .heading-title {
    font-size: 36px;
  }
  .career-list-item {
    padding: 20px;
  }
  .career-title {
    font-size: 20px;
  }
  .career-meta {
    margin-bottom: 16px;
  }
  .career-list-item .btn {
    width: 100%;
  }
  .career-meta.large li {
    font-size: 16px;
  }
  .breadcrumb {
    margin-bottom: 30px;
  }
  .news-slider-item {
    width: 300px;
  }
  .news-slider-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
  }
  .header-nav .user-profile img {
    width: 30px;
    height: 30px;
  }
  #newsSlider,
  #afterSlider {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .tab-product-home {
    margin-bottom: 30px;
  }
  .tab-product-home .nav-product .nav-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tab-product-home .nav-product .nav-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tab-product-list .nav-item {
    min-width: auto;
  }
  #scroll-top {
    bottom: -48px;
    right: 16px;
  }
  #scroll-top.sticky {
    bottom: 16px;
  }
  .homenews-slider {
    position: relative;
    width: 100%;
    top: auto;
  }
  .homenews-slider .swiper-button-next {
    right: calc(50% - 60px);
  }
  .homenews-slider .swiper-button-prev {
    left: calc(50% - 60px);
  }

  .hide-on-desktop {
    display: block;
  }
  .hide-on-mobile {
    display: none;
  }  
  .footer-logo img {
    height: 50px;
  }
  .footer-widget {
    padding: 70px 0 32px;
  }
}

@media only screen and (max-height: 800px) {
  .hero-image img {
    height: 800px;
  }
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}