﻿/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #b80000
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2b2d42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2b2d42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: #b80000;
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #b80000;
  border: none;
  border-radius: 40px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
  opacity: 0.9;
  color: #fff;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
  background-color: #e4e7ed;
  color: #b80000;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #e4e7ed;
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label,
.input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"] + label span,
.input-checkbox input[type="checkbox"] + label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #e4e7ed;
  background: #fff;
}

.input-radio input[type="radio"] + label span {
  border-radius: 50%;
}

.input-radio input[type="radio"] + label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"] + label span:after {
  content: "âœ”";
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked + label span,
.input-checkbox input[type="checkbox"]:checked + label span {
  background-color: #b80000;
  border-color: #b80000;
}

.input-radio input[type="radio"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked ~ .caption,
.input-checkbox input[type="checkbox"]:checked ~ .caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8d99ae;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #b80000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #b80000;
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Company sections
\*----------------------------*/

.company-overview,
.quick-fact,
.value-card,
.certificate-card,
.gallery-tile,
.contact-panel,
.page-note {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.company-overview {
  position: relative;
  padding: 34px 32px 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-left: 4px solid #b80000;
}

.company-overview h2,
.company-overview h3,
.value-card h4,
.certificate-card h4,
.contact-panel h4 {
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #b80000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.overview-actions {
  margin-top: 24px;
}

.overview-chips {
  margin: 18px 0px -8px;
}

.stat-chip {
  display: inline-block;
  margin: 0px 8px 8px 0px;
  padding: 10px 14px;
  background-color: #fbfbfc;
  border: 1px solid #e4e7ed;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.quick-fact {
  position: relative;
  min-height: 130px;
  padding: 24px 24px 24px 90px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.quick-fact .icon-badge,
.value-card .icon-badge,
.icon-widget .icon-badge,
.certificate-card .icon-badge,
.contact-panel .icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 22px;
  line-height: 54px;
  text-align: center;
}

.quick-fact .icon-badge {
  position: absolute;
  left: 20px;
  top: 24px;
}

.quick-fact h4 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.quick-fact p {
  margin-bottom: 0px;
}

.value-card {
  min-height: 220px;
  padding: 28px 24px;
  margin-bottom: 30px;
}

.value-card .icon-badge,
.certificate-card .icon-badge {
  margin-bottom: 18px;
}

.value-card h4,
.certificate-card h4,
.contact-panel h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
}

.value-card p:last-child,
.certificate-card p:last-child,
.page-note p:last-child {
  margin-bottom: 0px;
}

.page-note {
  padding: 20px 24px;
  margin-bottom: 30px;
}

.icon-widget .product-img {
  width: 60px;
  height: 60px;
}

.icon-widget .product-img .icon-badge {
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 58px;
}

.icon-widget .product-body {
  min-height: 60px;
}

.icon-widget .product-body .product-price {
  font-size: 13px;
  line-height: 1.5;
}

.certificate-card {
  min-height: 200px;
  padding: 24px;
  margin-bottom: 30px;
}

.certificate-card .meta {
  display: inline-block;
  margin-bottom: 10px;
  color: #8d99ae;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solution-note {
  margin: 0px;
  font-size: 14px;
  color: #2b2d42;
}

.gallery-page-section {
  padding-top: 40px;
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.gallery-page-header,
.gallery-page-canvas {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.gallery-page-header {
  padding: 34px 32px 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
  text-align: center;
}

.gallery-page-header h1 {
  margin-top: 0px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.gallery-page-header p {
  max-width: 860px;
  margin: 0px auto;
  font-size: 14px;
  line-height: 1.8;
}

.gallery-page-story-card {
  max-width: 980px;
  margin: 0px auto 30px;
  text-align: center;
}

.gallery-page-story-card h3 {
  text-transform: uppercase;
}

.gallery-page-story-card p {
  max-width: 820px;
  margin: 0px auto;
  line-height: 1.8;
}

.gallery-mosaic-shell {
  padding: 16px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 88px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-mosaic-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e4e7ed;
  border-radius: 22px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 22px rgba(21, 22, 29, 0.06);
  box-shadow: 0px 10px 22px rgba(21, 22, 29, 0.06);
  cursor: zoom-in;
}

.gallery-mosaic-card:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  height: 72px;
  background: linear-gradient(180deg, rgba(21, 22, 29, 0.12) 0%, rgba(21, 22, 29, 0) 100%);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease;
  transition: 0.2s opacity ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-mosaic-card:hover:before {
  opacity: 1;
}

.gallery-mosaic-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-hover-preview {
  position: fixed;
  inset: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 36px;
  background: rgba(21, 22, 29, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.2s opacity ease, 0.2s visibility ease;
  transition: 0.2s opacity ease, 0.2s visibility ease;
  z-index: 999;
  cursor: zoom-out;
}

.gallery-hover-preview.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-hover-preview-frame {
  width: min(72vw, 920px);
  max-height: 80vh;
  padding: 18px;
  border: 1px solid rgba(228, 231, 237, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0px 24px 48px rgba(21, 22, 29, 0.18);
  box-shadow: 0px 24px 48px rgba(21, 22, 29, 0.18);
  cursor: default;
}

.gallery-hover-preview-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(80vh - 36px);
  margin: 0px auto;
  -o-object-fit: contain;
  object-fit: contain;
}

body.gallery-preview-open {
  overflow: hidden;
}

.gallery-mosaic-card:nth-child(10n + 1) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-mosaic-card:nth-child(10n + 2),
.gallery-mosaic-card:nth-child(10n + 6) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-mosaic-card:nth-child(10n + 4),
.gallery-mosaic-card:nth-child(10n + 7) {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-mosaic-card:nth-child(10n + 5),
.gallery-mosaic-card:nth-child(10n + 10) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-mosaic-card:nth-child(10n + 9) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-page-canvas {
  padding: 18px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fbfbfc 0%, #fff 100%);
}

.gallery-page-image {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-summary {
  margin-bottom: 30px;
}

.gallery-tile {
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-thumb {
  display: block;
}

.gallery-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-caption {
  padding: 22px 22px 20px;
}

.gallery-caption .section-tag {
  margin-bottom: 10px;
}

.gallery-caption h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gallery-caption p {
  margin-bottom: 0px;
}

.contact-panel {
  padding: 24px;
  margin-bottom: 30px;
}

.about-media-card,
.about-copy-panel,
.about-focus-card {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.about-media-card {
  overflow: hidden;
  margin-bottom: 30px;
}

.about-media-image {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  padding: 8px;
}

.about-media-image img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-media-note {
  padding: 26px 28px;
  background: linear-gradient(135deg, #2b2d42 0%, #1e1f29 100%);
}

.about-media-note .section-tag {
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  letter-spacing: 1.4px;
}

.about-media-note h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.about-media-note p {
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.about-copy-panel {
  padding: 34px 32px 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
}

.about-copy-panel h2 {
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-copy-panel p {
  margin-bottom: 14px;
}

.about-inline-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e4e7ed;
}

.about-inline-fact {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 170px;
  flex: 1 1 170px;
  padding-right: 18px;
  margin-bottom: 10px;
}

.about-inline-fact span {
  display: block;
  margin-bottom: 8px;
  color: #b80000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-inline-fact p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.6;
}

.about-focus-card {
  min-height: 198px;
  padding: 26px 24px 22px;
  margin-bottom: 30px;
}

.about-focus-card .icon-badge {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 22px;
  line-height: 54px;
  text-align: center;
}

.about-focus-card h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
}

.about-focus-card p:last-child {
  margin-bottom: 0px;
}

.about-focus-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 4px;
}

.about-focus-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-focus-row .about-focus-card {
  width: 100%;
  min-height: 184px;
  padding: 24px 22px 20px;
}

.about-focus-row .about-focus-card p {
  font-size: 13px;
  line-height: 1.7;
}

.about-focus-stack {
  display: block;
  margin-top: 4px;
}

.about-focus-stack > [class*="col-"] {
  float: none;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0px auto;
}

.about-focus-stack .about-focus-card {
  min-height: 0px;
  padding: 28px 28px 24px;
}

.about-focus-stack .about-focus-card p {
  max-width: 740px;
  line-height: 1.8;
}

.about-page-hero-section {
  padding-top: 40px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.about-page-hero-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.about-page-hero-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-page-hero-copy,
.about-page-story-card,
.about-page-side-card,
.about-page-detail-card {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.about-page-hero-copy {
  width: 100%;
  padding: 40px 36px 34px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
}

.about-page-hero-copy h1 {
  margin-top: 0px;
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-page-hero-copy p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.about-page-hero-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.about-page-hero-media .about-media-image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 270px;
  padding: 12px;
}

.about-page-fact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 28px -10px 0px;
}

.about-page-fact {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 180px;
  flex: 1 1 180px;
  padding: 0px 10px;
  margin-bottom: 18px;
}

.about-page-fact span {
  display: block;
  margin-bottom: 10px;
  color: #b80000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-page-fact p {
  margin-bottom: 0px;
  padding-top: 12px;
  border-top: 1px solid #e4e7ed;
  font-size: 13px;
  line-height: 1.6;
}

.about-page-pill-list {
  margin: 8px -6px 0px;
}

.about-page-pill {
  display: inline-block;
  margin: 0px 6px 10px;
  padding: 10px 14px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  color: #2b2d42;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.about-page-summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 4px;
}

.about-page-summary-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-page-summary-row .about-focus-card {
  width: 100%;
  min-height: 184px;
  padding: 24px 22px 20px;
}

.about-page-summary-row .about-focus-card p {
  font-size: 13px;
  line-height: 1.7;
}

.about-page-summary-row.about-focus-stack {
  display: block;
}

.about-page-summary-row.about-focus-stack > [class*="col-"] {
  float: none;
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 0px auto;
}

.about-page-summary-row.about-focus-stack .about-focus-card {
  min-height: 0px;
  padding: 28px 28px 24px;
}

.about-page-summary-row.about-focus-stack .about-focus-card p {
  max-width: 740px;
  line-height: 1.8;
}

.about-page-story-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.about-page-story-card,
.about-page-side-card,
.about-page-detail-card {
  padding: 32px 30px;
  margin-bottom: 30px;
}

.about-page-story-card,
.about-page-side-card {
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.about-page-story-card {
  border-top: 4px solid #b80000;
}

.about-page-story-card h3,
.about-page-side-card h4,
.about-page-detail-card h4 {
  margin-top: 0px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-page-story-card > p {
  margin-bottom: 0px;
}

.about-service-block {
  min-height: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e4e7ed;
}

.about-service-block .icon-badge {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 22px;
  border: 1px solid rgba(184, 0, 0, 0.12);
  background: linear-gradient(135deg, #fff 0%, #fff4f4 100%);
  color: #b80000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 12px 24px rgba(184, 0, 0, 0.08);
  box-shadow: 0px 12px 24px rgba(184, 0, 0, 0.08);
}

.about-service-block .icon-badge i,
.about-service-icon {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
}

.about-service-block h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.about-service-block p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.7;
}

.about-page-side-card .contact-list,
.about-page-detail-card .contact-list {
  margin-bottom: 0px;
}

.about-page-side-card .contact-list li,
.about-page-detail-card .contact-list li {
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-page-side-card .contact-list li:last-child,
.about-page-detail-card .contact-list li:last-child {
  margin-bottom: 0px;
}

.about-page-detail-card {
  min-height: 100%;
}

.solutions-page-hero {
  padding-top: 40px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.solutions-hero-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.solutions-hero-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.solutions-hero-copy,
.solutions-hero-image-frame,
.solutions-hero-note,
.solutions-detail-copy,
.solutions-detail-media,
.solution-service-card,
.solutions-support-card,
.solutions-contact-card,
.solutions-contact-side {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.solutions-hero-copy,
.solutions-detail-copy,
.solutions-contact-card {
  padding: 34px 32px 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
}

.solutions-hero-copy h1 {
  margin-top: 0px;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.12;
  text-transform: uppercase;
}

.solutions-hero-copy {
  width: 100%;
}

.solutions-hero-copy p,
.solutions-detail-copy p,
.solutions-contact-card p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}

.solutions-hero-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e4e7ed;
}

.solutions-hero-fact {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 170px;
  flex: 1 1 170px;
  padding-right: 18px;
  margin-bottom: 12px;
}

.solutions-hero-fact span {
  display: block;
  color: #b80000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.solutions-hero-fact p {
  margin: 8px 0px 0px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.solutions-jump-links {
  margin-top: 8px;
}

.solutions-jump-links .primary-btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.solutions-jump-pill,
.solutions-outline-btn {
  display: inline-block;
  padding: 11px 18px;
  margin: 0px 10px 10px 0px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  color: #2b2d42;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.solutions-jump-pill:hover,
.solutions-jump-pill:focus,
.solutions-outline-btn:hover,
.solutions-outline-btn:focus {
  border-color: #b80000;
  color: #b80000;
}

.solutions-hero-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.solutions-hero-image-frame,
.solutions-detail-media {
  padding: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fbfbfc 0%, #fff 100%);
}

.solutions-hero-image-frame img,
.solutions-detail-media img {
  width: 100%;
  height: 320px;
  -o-object-fit: contain;
  object-fit: contain;
}

.solutions-hero-image-frame {
  padding: 12px;
  margin-bottom: 16px;
}

.solutions-hero-image-frame img {
  height: 248px;
}

.solutions-hero-note {
  padding: 24px 26px;
  background: linear-gradient(135deg, #2b2d42 0%, #1e1f29 100%);
}

.solutions-hero-note .section-tag {
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.solutions-hero-note h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.solutions-hero-note p {
  margin-bottom: 0px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.solutions-detail-section-alt,
.solutions-contact-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.solutions-detail-copy h3,
.solutions-contact-card h3 {
  margin-top: 0px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.solutions-detail-copy-compact,
.solutions-contact-side {
  min-height: 100%;
}

.solutions-point-list {
  margin-top: 26px;
}

.solutions-point {
  position: relative;
  min-height: 56px;
  padding-left: 72px;
  margin-bottom: 22px;
}

.solutions-point:last-child {
  margin-bottom: 0px;
}

.solutions-point .icon-badge {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 21px;
  line-height: 50px;
  text-align: center;
}

.solutions-point-copy h4 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.solutions-point-copy p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.7;
}

.solutions-financing-image {
  max-width: 860px;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-financing-image .feature-image {
  max-width: 640px;
  max-height: 250px;
}

.partner-strip-card {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 6px 6px;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.partner-strip-copy {
  max-width: 720px;
  margin: 0px auto 22px;
  text-align: center;
}

.partner-strip-copy h3 {
  margin: 8px 0px 8px;
  font-size: 22px;
  color: #2b2d42;
}

.partner-strip-copy p {
  margin-bottom: 0px;
  color: #6b7280;
  line-height: 1.8;
}

.partner-strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px 34px;
}

.partner-strip-item {
  -webkit-box-flex: 1;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(228, 231, 237, 0.95);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  -webkit-transition: -webkit-transform 0.24s ease;
  transition: -webkit-transform 0.24s ease;
  transition: transform 0.24s ease;
  transition:
    transform 0.24s ease,
    -webkit-transform 0.24s ease;
  -webkit-animation: partner-logo-float 4.8s ease-in-out infinite;
  animation: partner-logo-float 4.8s ease-in-out infinite;
  -webkit-box-shadow: 0px 10px 22px rgba(21, 22, 29, 0.08);
  box-shadow: 0px 10px 22px rgba(21, 22, 29, 0.08);
}

.partner-strip-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82px;
  margin: 0px auto;
  -webkit-animation: partner-logo-breathe 3.8s ease-in-out infinite;
  animation: partner-logo-breathe 3.8s ease-in-out infinite;
  -o-object-fit: contain;
  object-fit: contain;
}

.partner-strip-item:nth-child(2) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.partner-strip-item:nth-child(3) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.partner-strip-item:nth-child(4) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

.partner-strip-item:nth-child(5) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.partner-strip-item:nth-child(2) img {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.partner-strip-item:nth-child(3) img {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.partner-strip-item:nth-child(4) img {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.partner-strip-item:nth-child(5) img {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.partner-strip-item:hover {
  -webkit-transform: translateY(-4px) scale(1.04);
  -ms-transform: translateY(-4px) scale(1.04);
  transform: translateY(-4px) scale(1.04);
}

@-webkit-keyframes partner-logo-float {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes partner-logo-float {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes partner-logo-breathe {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes partner-logo-breathe {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@media only screen and (max-width: 991px) {
  .partner-strip-card {
    padding: 8px 0px 4px;
    max-width: 100%;
    overflow: hidden;
  }

  .partner-strip {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px 24px;
  }
}

@media only screen and (max-width: 767px) {
  #device-financing-partners,
  #hot-deal.section {
    overflow: hidden;
  }

  .partner-strip-card {
    padding: 6px 0px 0px;
  }

  .partner-strip {
    gap: 14px 16px;
  }

  .partner-strip-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 96px;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    padding: 8px;
  }

  .partner-strip-item img {
    max-height: 56px;
  }

  #hot-deal.section {
    margin: 20px 0px;
    min-height: 0px;
    aspect-ratio: 1782 / 465;
    background-size: 100% auto;
    background-position: center center;
  }
}

.solutions-service-grid {
  margin-top: 10px;
}

.solution-service-card {
  min-height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.solution-service-image {
  padding: 14px;
  border-bottom: 1px solid #e4e7ed;
  background-color: #fff;
}

.solution-service-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
  object-fit: contain;
}

.solution-service-copy {
  padding: 24px 24px 22px;
}

.solution-service-copy h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.solution-service-copy p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.7;
}

.solution-service-card-icon {
  padding: 28px 26px 24px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solution-service-card-icon .solution-service-copy {
  padding: 0px;
}

.solution-service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 26px;
  line-height: 62px;
  text-align: center;
}

.solutions-support-grid {
  margin-top: 8px;
}

.solutions-support-card {
  min-height: 100%;
  padding: 24px 22px 20px;
  margin-top: 18px;
}

.solutions-support-card .icon-badge {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 22px;
  line-height: 52px;
  text-align: center;
}

.solutions-support-card h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.solutions-support-card p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.7;
}

.solutions-contact-side {
  padding: 34px 32px 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solutions-contact-side h4 {
  margin-top: 0px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.solutions-contact-side .contact-list {
  margin-bottom: 0px;
}

.solutions-contact-side .contact-list li {
  margin-bottom: 16px;
}

.solutions-contact-actions {
  margin-top: 24px;
}

.solutions-contact-actions .primary-btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.solutions-feature-card,
.solutions-vodacom-shell,
.solutions-tech-shell,
.solutions-tech-visual,
.solutions-tech-copy,
.solutions-tech-card,
.solutions-faq-column {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.solutions-feature-card,
.solutions-vodacom-shell,
.solutions-tech-shell {
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solutions-feature-card,
.solutions-vodacom-shell,
.solutions-tech-shell,
.solutions-contact-card {
  border-top: 4px solid #b80000;
}

.solutions-feature-card {
  padding: 18px;
}

.solutions-feature-media {
  padding: 12px;
  background-color: #fff;
}

.solutions-feature-media img {
  width: 100%;
  height: 260px;
  -o-object-fit: contain;
  object-fit: contain;
}

.solutions-feature-media-devices {
  padding: 0px;
  overflow: hidden;
}

.solutions-feature-media-devices img {
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.solutions-feature-copy {
  padding: 18px 18px 12px 10px;
}

.solutions-feature-copy h3,
.solutions-vodacom-intro h3,
.solutions-tech-copy h3 {
  margin-top: 0px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.solutions-feature-copy p:last-of-type,
.solutions-vodacom-intro p:last-of-type,
.solutions-tech-copy p:last-of-type {
  margin-bottom: 0px;
}

.solutions-feature-tags {
  margin-top: 20px;
}

.solutions-feature-tags span {
  display: inline-block;
  margin: 0px 10px 10px 0px;
  padding: 10px 14px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  color: #2b2d42;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.solutions-vodacom-shell {
  padding: 30px 30px 24px;
}

.solutions-vodacom-intro {
  max-width: 760px;
}

.solutions-service-grid-compact {
  margin-top: 0px;
}

.solutions-service-grid-compact > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.solutions-service-col {
  margin-bottom: 30px;
}

.solution-service-card-tile {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  -webkit-transition:
    0.2s transform ease,
    0.2s box-shadow ease;
  transition:
    0.2s transform ease,
    0.2s box-shadow ease;
  cursor: pointer;
}

.solution-service-card-tile:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0px 18px 34px rgba(21, 22, 29, 0.08);
  box-shadow: 0px 18px 34px rgba(21, 22, 29, 0.08);
}

.solution-service-card-tile:focus {
  outline: none;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0px 18px 34px rgba(21, 22, 29, 0.08);
  box-shadow: 0px 18px 34px rgba(21, 22, 29, 0.08);
}

.solution-service-card-tile .solution-service-image {
  padding: 0px;
  border-bottom: 1px solid #e4e7ed;
  background: linear-gradient(180deg, #fbfbfc 0%, #fff 100%);
  overflow: hidden;
}

.solution-service-card-tile .solution-service-image img {
  display: block;
  width: 100%;
  height: 220px;
  padding: 0px;
  -o-object-fit: cover;
  object-fit: cover;
}

.solution-service-card-tile .solution-service-image-contained {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 220px;
  padding: 8px;
}

.solution-service-card-tile .solution-service-image-contained img {
  width: 100%;
  height: 100%;
  padding: 0px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.solution-service-card-tile .solution-service-copy {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 22px 22px 20px;
}

.solution-service-card-tile .solution-service-copy p {
  min-height: 66px;
}

#m-pesa-services .solution-service-card-tile,
#lipa-kwa-simu .solution-service-card-tile,
#sme-bundles .solution-service-card-tile {
  background: linear-gradient(180deg, #b80000 0%, #9e0000 100%);
  border-color: #8c0000;
}

#m-pesa-services .solution-service-card-tile .solution-service-image,
#lipa-kwa-simu .solution-service-card-tile .solution-service-image,
#sme-bundles .solution-service-card-tile .solution-service-image {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

#m-pesa-services .solution-service-card-tile .solutions-service-meta,
#lipa-kwa-simu .solution-service-card-tile .solutions-service-meta,
#sme-bundles .solution-service-card-tile .solutions-service-meta {
  color: rgba(255, 255, 255, 0.72);
}

#m-pesa-services .solution-service-card-tile .solution-service-copy h4,
#m-pesa-services .solution-service-card-tile .solution-service-copy p,
#m-pesa-services .solution-service-card-tile .solution-service-hover-hint,
#lipa-kwa-simu .solution-service-card-tile .solution-service-copy h4,
#lipa-kwa-simu .solution-service-card-tile .solution-service-copy p,
#lipa-kwa-simu .solution-service-card-tile .solution-service-hover-hint,
#sme-bundles .solution-service-card-tile .solution-service-copy h4,
#sme-bundles .solution-service-card-tile .solution-service-copy p,
#sme-bundles .solution-service-card-tile .solution-service-hover-hint {
  color: #fff;
}

#m-pesa-services .solution-service-card-tile .solution-service-hover-hint,
#lipa-kwa-simu .solution-service-card-tile .solution-service-hover-hint,
#sme-bundles .solution-service-card-tile .solution-service-hover-hint {
  opacity: 0.82;
}

.solution-service-hover-hint {
  display: inline-block;
  margin-top: 14px;
  color: #8d99ae;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.solution-service-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 24px 22px 20px;
  background: linear-gradient(
    180deg,
    rgba(20, 23, 27, 0.98) 0%,
    rgba(43, 45, 66, 0.97) 100%
  );
  color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: 0.22s all ease;
  transition: 0.22s all ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.solution-service-card-tile:hover .solution-service-modal,
.solution-service-card-tile:focus .solution-service-modal,
.solution-service-card-tile:focus-within .solution-service-modal {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.solution-service-modal-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solution-service-modal h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.solution-service-modal p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.7;
}

.solution-service-modal p:last-child {
  margin-bottom: 0px;
}

.solution-service-card-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 236px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solution-service-card-horizontal .solution-service-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  min-width: 240px;
  padding: 0px;
  border-right: 0px;
  border-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.solution-service-card-horizontal .solution-service-image img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  -o-object-fit: cover;
  object-fit: cover;
}

.solution-service-card-horizontal .solution-service-copy {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px 24px 22px;
}

.solutions-service-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: #8d99ae;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solutions-tech-shell {
  padding: 18px;
}

.solutions-tech-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 2px;
}

.solutions-tech-card-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.solutions-tech-card-row .solutions-tech-card {
  margin-bottom: 0px;
}

.solutions-tech-visual {
  padding: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fbfbfc 0%, #fff 100%);
}

.solutions-tech-visual img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
  object-fit: contain;
}

.solutions-tech-copy {
  padding: 28px 30px 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solutions-tech-card {
  width: 100%;
  min-height: 100%;
  padding: 22px 20px 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.solutions-tech-card .icon-badge {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 21px;
  line-height: 50px;
  text-align: center;
}

.solutions-tech-card h4 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.solutions-tech-card p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.7;
}

.solutions-tech-card-secondary {
  margin-bottom: 0px;
}

.solutions-faq-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.solutions-faq-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.solutions-faq-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.solutions-faq-column {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 8px 24px;
  margin-bottom: 30px;
}

.solutions-faq-item {
  min-height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 18px 0px;
  border-top: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: default;
}

.solutions-faq-item:first-child {
  border-top: 0px;
}

.solutions-faq-item:focus {
  outline: none;
}

.solutions-faq-question {
  position: relative;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 28px;
  color: #2b2d42;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.solutions-faq-question:after {
  content: "+";
  position: absolute;
  right: 0px;
  top: 0px;
  color: #b80000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.solutions-faq-answer {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.solutions-faq-answer p {
  margin: 0px;
  padding-top: 0px;
  font-size: 13px;
  line-height: 1.75;
}

.solutions-faq-item:hover .solutions-faq-question,
.solutions-faq-item:focus .solutions-faq-question {
  color: #b80000;
}

.solutions-faq-item:hover .solutions-faq-question:after,
.solutions-faq-item:focus .solutions-faq-question:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.solutions-faq-item:hover .solutions-faq-answer,
.solutions-faq-item:focus .solutions-faq-answer {
  max-height: 180px;
  opacity: 1;
}

.solutions-faq-item:hover .solutions-faq-answer p,
.solutions-faq-item:focus .solutions-faq-answer p {
  padding-top: 12px;
}

.floating-chat-widget {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 999;
}

.floating-chat-panel {
  width: 320px;
  margin: 0px 0px 14px auto;
  padding: 24px 22px 20px;
  border: 1px solid rgba(228, 231, 237, 0.9);
  border-top: 4px solid #b80000;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(251, 251, 252, 0.96) 100%
  );
  -webkit-box-shadow: 0px 18px 40px rgba(21, 22, 29, 0.16);
  box-shadow: 0px 18px 40px rgba(21, 22, 29, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(16px) scale(0.94);
  -ms-transform: translateY(16px) scale(0.94);
  transform: translateY(16px) scale(0.94);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    -webkit-transform 0.28s ease;
}

.floating-chat-panel[hidden] {
  display: none;
}

.floating-chat-widget.is-open .floating-chat-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0px) scale(1);
  -ms-transform: translateY(0px) scale(1);
  transform: translateY(0px) scale(1);
}

.floating-chat-panel h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.floating-chat-panel p {
  margin-bottom: 16px;
  color: #2b2d42;
  line-height: 1.7;
}

.floating-chat-textarea {
  width: 100%;
  min-height: 110px;
  padding: 0px 0px 12px;
  border: none;
  border-bottom: 1px solid rgba(84, 93, 116, 0.35);
  background: transparent;
  color: #15161d;
  font-size: 14px;
  line-height: 1.6;
  resize: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.floating-chat-textarea:focus {
  border-bottom-color: #b80000;
  outline: none;
}

.floating-chat-actions {
  margin-top: 16px;
}

.floating-chat-toggle {
  width: 74px;
  height: 74px;
  margin-left: auto;
  border: none;
  border-radius: 28px;
  background: #b80000;
  -webkit-box-shadow: 0px 18px 36px rgba(184, 0, 0, 0.28);
  box-shadow: 0px 18px 36px rgba(184, 0, 0, 0.28);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition:
    0.2s box-shadow ease,
    0.2s border-radius ease,
    0.2s background ease;
  transition:
    0.2s box-shadow ease,
    0.2s border-radius ease,
    0.2s background ease;
  -webkit-animation: floating-chat-bounce 2.6s ease-in-out infinite;
  animation: floating-chat-bounce 2.6s ease-in-out infinite;
}

.floating-chat-toggle:hover,
.floating-chat-toggle:focus {
  -webkit-box-shadow: 0px 22px 42px rgba(184, 0, 0, 0.34);
  box-shadow: 0px 22px 42px rgba(184, 0, 0, 0.34);
  outline: none;
}

.floating-chat-widget.is-open .floating-chat-toggle {
  border-radius: 24px;
  -webkit-animation: none;
  animation: none;
}

.floating-chat-logo {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes floating-chat-bounce {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  15% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  30% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  45% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@keyframes floating-chat-bounce {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  15% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  30% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  45% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@media only screen and (max-width: 991px) {
  .about-page-hero-row {
    display: block;
  }

  .about-page-hero-row > [class*="col-"] {
    display: block;
  }

  .about-page-summary-row .about-focus-card {
    min-height: 0px;
  }

  .solutions-hero-row {
    display: block;
  }

  .solutions-hero-row > [class*="col-"] {
    display: block;
  }

  .solution-service-card-horizontal {
    min-height: 0px;
  }

  .solution-service-card-horizontal .solution-service-image {
    min-width: 190px;
  }

  .solutions-feature-media img,
  .solutions-tech-visual img {
    height: 240px;
  }

  .solutions-feature-media-devices img {
    height: 252px;
  }

  .certificate-section-row,
  .leadership-section-row,
  .solutions-tech-card-row {
    display: block;
  }

  .solutions-service-grid-compact > [class*="col-"] {
    display: block;
  }

  .certificate-section-row > [class*="col-"],
  .leadership-section-row > [class*="col-"],
  .solutions-tech-card-row > [class*="col-"] {
    display: block;
  }

  .solutions-faq-row {
    display: block;
  }

  .solutions-faq-row > [class*="col-"] {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .about-focus-row {
    display: block;
  }

  .about-focus-row > [class*="col-"] {
    display: block;
  }

  .about-page-summary-row {
    display: block;
  }

  .about-page-summary-row > [class*="col-"] {
    display: block;
  }

  .about-page-hero-row {
    display: block;
  }

  .solutions-hero-row {
    display: block;
  }

  .solution-service-card-horizontal {
    display: block;
  }

  .solution-service-card-horizontal .solution-service-image {
    min-width: 0px;
    border-right: 0px;
    border-bottom: 1px solid #e4e7ed;
  }

  .solution-service-card-horizontal .solution-service-image img {
    height: 220px;
    min-height: 0px;
  }

  .solutions-feature-media img,
  .solutions-tech-visual img {
    height: 220px;
  }

  .solutions-feature-media-devices img {
    height: 228px;
  }

  .solutions-feature-copy,
  .solutions-vodacom-shell,
  .solutions-tech-copy,
  .solutions-faq-column {
    padding-left: 20px;
    padding-right: 20px;
  }

  .solutions-tech-card-secondary {
    margin-bottom: 18px;
  }

  .solutions-service-card-tile .solution-service-image img {
    height: 210px;
  }

  .solution-service-card-tile .solution-service-image-contained {
    height: 210px;
  }

  .solution-service-card-tile .solution-service-copy p {
    min-height: 0px;
  }

  .about-focus-stack > [class*="col-"] {
    max-width: none;
  }

  .solutions-faq-item {
    min-height: 0px;
  }

  .solutions-faq-question {
    min-height: 0px;
  }

  .floating-chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .floating-chat-panel {
    width: calc(100vw - 32px);
    max-width: 320px;
  }

  .floating-chat-toggle {
    width: 66px;
    height: 66px;
  }

  .floating-chat-logo {
    width: 42px;
    height: 42px;
  }
}

.service-request-card,
.service-request-side {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.service-request-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 32px 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
}

.service-request-card::after {
  content: "";
  position: absolute;
  top: calc(50% + 6.5cm);
  right: calc(3cm - 12px);
  width: 140px;
  height: 140px;
  background: url("../img/mayzon-red.png") no-repeat center center;
  background-size: contain;
  opacity: 0.35;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.service-request-card > * {
  position: relative;
  z-index: 1;
}

.service-request-card h3 {
  margin-top: 0px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-request-form {
  margin-top: 24px;
}

.service-request-form .form-group {
  margin-bottom: 18px;
}

.service-request-form .input,
.service-request-form .input-select {
  width: 100%;
  height: auto;
  padding: 0px 0px 12px;
  border: none;
  border-bottom: 1px solid rgba(84, 93, 116, 0.35);
  border-radius: 0px;
  background: transparent;
  color: #15161d;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.service-request-form .input::-webkit-input-placeholder,
.service-request-form .input-select::-webkit-input-placeholder {
  color: #6b7280;
}

.service-request-form .input::-moz-placeholder,
.service-request-form .input-select::-moz-placeholder {
  color: #6b7280;
}

.service-request-form .input:-ms-input-placeholder,
.service-request-form .input-select:-ms-input-placeholder {
  color: #6b7280;
}

.service-request-form .input::placeholder,
.service-request-form .input-select::placeholder {
  color: #6b7280;
}

.service-request-form .input:focus,
.service-request-form .input-select:focus {
  border-bottom-color: #b80000;
}

.service-request-form input.input {
  padding-top: 6px;
}

.service-request-form .request-select {
  display: block;
  width: 100%;
  border-radius: 0px;
  padding-right: 28px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% - 1px),
    calc(100% - 7px) calc(50% - 1px);
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.service-request-form textarea.input {
  min-height: 110px;
  padding-top: 10px;
  resize: vertical;
}

.service-request-form .input-checkbox {
  margin-top: 8px;
}

.service-request-form .primary-btn {
  margin-top: 22px;
}

.service-request-side {
  min-height: 100%;
  padding: 32px 30px;
}

.service-request-side h4 {
  margin-top: 0px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.request-item {
  position: relative;
  min-height: 48px;
  padding-left: 60px;
  margin-bottom: 22px;
}

.request-item i {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  border: 1px solid #e4e7ed;
  border-radius: 50%;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
}

.request-item h5,
.request-direct h5 {
  margin-top: 0px;
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
}

.request-item p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.6;
}

.request-direct {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e4e7ed;
}

.contact-page-hero {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.contact-page-hero-row,
.contact-page-main-row,
.contact-page-map-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.contact-page-hero-row > [class*="col-"],
.contact-page-main-row > [class*="col-"],
.contact-page-map-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-page-hero-card,
.contact-page-side-card,
.contact-page-detail-card,
.contact-map-card,
.contact-visit-card {
  width: 100%;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 18px;
  -webkit-box-shadow: 0px 18px 38px rgba(21, 22, 29, 0.06);
  box-shadow: 0px 18px 38px rgba(21, 22, 29, 0.06);
}

.contact-page-hero-card,
.contact-page-side-card,
.contact-page-detail-card,
.contact-visit-card {
  padding: 36px 34px 32px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.contact-page-hero-card h1 {
  margin-top: 0px;
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-page-side-card h3,
.contact-page-detail-card h4,
.contact-map-copy h3,
.contact-visit-card h4 {
  margin-top: 0px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-page-hero-card p,
.contact-page-side-card p,
.contact-page-detail-card p,
.contact-map-copy p,
.contact-visit-card p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}

.contact-page-actions,
.contact-page-button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page-actions {
  margin-top: 24px;
}

.contact-page-button-row {
  margin-top: 26px;
}

.contact-secondary-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #e4e7ed;
  border-radius: 999px;
  background-color: #fff;
  color: #2b2d42;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.contact-secondary-btn:hover,
.contact-secondary-btn:focus {
  border-color: #b80000;
  color: #b80000;
}

.contact-page-channel-list {
  margin-top: 26px;
}

.contact-page-channel-item {
  position: relative;
  min-height: 60px;
  padding-left: 74px;
  margin-bottom: 24px;
}

.contact-page-channel-item:last-child {
  margin-bottom: 0px;
}

.contact-page-channel-item .icon-badge {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
}

.contact-page-channel-item h5 {
  margin-top: 2px;
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-page-channel-item a,
.contact-page-channel-item p {
  margin-bottom: 0px;
  color: #2b2d42;
  font-weight: 500;
}

.contact-page-channel-item a:hover,
.contact-page-channel-item a:focus {
  color: #b80000;
}

.contact-page-side-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #e4e7ed;
  border-radius: 14px;
  background-color: #fbfbfc;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.75;
}

.contact-form-card {
  border-top: 0px;
  border-radius: 18px;
  padding: 36px 34px 34px;
}

.contact-form-card::after {
  top: 50%;
  right: 26px;
  width: 190px;
  height: 190px;
  opacity: 0.18;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-form-card .service-request-form {
  margin-top: 26px;
}

.contact-form-card .service-request-form textarea.input {
  min-height: 138px;
}

.contact-page-detail-card .request-item:last-of-type {
  margin-bottom: 0px;
}

.contact-map-card {
  padding: 20px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
}

.contact-map-copy {
  padding: 12px 10px 20px;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 14px;
  background-color: #e4e7ed;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0px;
}

.contact-page-faq-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.contact-page-faq-section .section-title {
  margin-bottom: 8px;
}

@media only screen and (max-width: 991px) {
  .contact-page-hero-row,
  .contact-page-main-row,
  .contact-page-map-row {
    display: block;
  }

  .contact-page-hero-row > [class*="col-"],
  .contact-page-main-row > [class*="col-"],
  .contact-page-map-row > [class*="col-"] {
    display: block;
  }

  .contact-page-hero-card,
  .contact-page-side-card,
  .contact-page-detail-card,
  .contact-visit-card {
    padding: 32px 28px 28px;
  }

  .contact-form-card {
    padding: 32px 28px 30px;
  }

  .contact-form-card::after {
    right: 18px;
    width: 150px;
    height: 150px;
  }

  .contact-map-card {
    padding: 16px;
  }

  .contact-map-frame iframe {
    height: 360px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-hero-card h1 {
    font-size: 30px;
  }

  .contact-page-hero-card,
  .contact-page-side-card,
  .contact-page-detail-card,
  .contact-visit-card,
  .contact-form-card {
    padding: 28px 22px 24px;
    border-radius: 16px;
  }

  .contact-page-channel-item {
    padding-left: 66px;
  }

  .contact-page-channel-item .icon-badge {
    width: 48px;
    height: 48px;
    line-height: 46px;
  }

  .contact-map-frame {
    border-radius: 12px;
  }

  .contact-map-frame iframe {
    height: 320px;
  }
}

.leadership-intro,
.leadership-role-card,
.certificate-section-copy,
.certificate-visual-card {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.leadership-intro,
.certificate-section-copy {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 32px 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #fbfbfc 100%);
  border-top: 4px solid #b80000;
}

.leadership-intro h3,
.certificate-section-copy h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.leadership-summary-title {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

.leadership-intro p:last-child,
.certificate-section-copy p:last-child {
  margin-bottom: 0px;
}

.certificate-section-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.certificate-section-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.leadership-section-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.leadership-section-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.certificate-section-copy-about p:nth-of-type(2) {
  margin-bottom: 0px;
}

.certificate-section-copy-about p:last-of-type {
  display: none;
}

.leadership-visual-card,
.certificate-image-frame,
.feature-image-card {
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
  box-shadow: 0px 12px 28px rgba(21, 22, 29, 0.05);
}

.leadership-visual-card {
  margin-bottom: 30px;
  padding: 18px;
  background: linear-gradient(135deg, #fbfbfc 0%, #fff 100%);
}

.feature-image-card {
  padding: 12px;
  background: linear-gradient(135deg, #fbfbfc 0%, #fff 100%);
}

.feature-image-card.partner-strip-card {
  padding: 10px 6px 6px;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.section-visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.leadership-visual-image {
  max-width: 560px;
  margin: 0px auto;
}

#homepage-leadership .leadership-intro,
#homepage-leadership .leadership-visual-card,
#leadership-team .leadership-intro,
#leadership-team .leadership-visual-card {
  width: 100%;
  min-height: 100%;
  margin-bottom: 0px;
}

#homepage-leadership .leadership-visual-card,
#leadership-team .leadership-visual-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4px;
}

#director-message .leadership-visual-card,
#homepage-director-message .leadership-visual-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.director-message-image {
  max-width: 280px;
}

#leadership-team .leadership-visual-image,
#homepage-leadership .leadership-visual-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

#homepage-leadership .leadership-intro p {
  line-height: 1.8;
}

@media only screen and (max-width: 991px) {
  #homepage-leadership .leadership-intro,
  #leadership-team .leadership-intro {
    margin-bottom: 20px;
  }

  #leadership-team .leadership-visual-image,
  #homepage-leadership .leadership-visual-image {
    max-width: 100%;
  }
}

.feature-image {
  max-width: 760px;
  max-height: 320px;
  margin: 0px auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.leadership-role-card {
  min-height: 240px;
  padding: 26px 24px 22px;
  margin-bottom: 30px;
}

.leadership-role-card .icon-badge {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 22px;
  line-height: 54px;
  text-align: center;
}

.leadership-role-card .role-meta,
.certificate-item .role-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: #8d99ae;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leadership-role-card h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
}

.leadership-role-card p:last-child {
  margin-bottom: 0px;
}

.certificate-list {
  margin-top: 24px;
}

.certificate-item {
  position: relative;
  min-height: 84px;
  padding: 18px 0px 18px 72px;
  border-top: 1px solid #e4e7ed;
}

.certificate-item:first-child {
  padding-top: 0px;
  border-top: 0px;
}

.certificate-item .icon-badge {
  position: absolute;
  left: 0px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e4e7ed;
  background-color: #fbfbfc;
  color: #b80000;
  font-size: 20px;
  line-height: 46px;
  text-align: center;
}

.certificate-item:first-child .icon-badge {
  top: 0px;
}

.certificate-item h4 {
  margin-top: 0px;
  margin-bottom: 6px;
  font-size: 15px;
  text-transform: uppercase;
}

.certificate-item p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 1.6;
}

.certificate-visual-card {
  min-height: 100%;
  padding: 32px;
  background: linear-gradient(135deg, #fbfbfc 0%, #f0f2f7 100%);
}

.certificate-image-grid {
  margin-bottom: -30px;
}

.certificate-image-frame {
  padding: 14px;
  margin-bottom: 30px;
}

.certificate-visual-card .certificate-placeholder {
  display: none;
}

.certificate-placeholder {
  min-height: 460px;
  border: 1px dashed #b9babc;
  background: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px;
  text-align: center;
}

.certificate-placeholder i {
  margin-bottom: 18px;
  color: #b80000;
  font-size: 40px;
}

.certificate-placeholder h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.certificate-placeholder p {
  max-width: 320px;
  margin-bottom: 0px;
  line-height: 1.7;
}

.certificate-placeholder > p:not(.certificate-placeholder-copy) {
  display: none;
}

.shop.about-feature,
.shop.about-side-card {
  margin: 0px 0px 30px;
}

.shop.about-feature:before {
  left: auto;
  right: 0px;
  width: 72%;
  background: #2b2d42;
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  transform: skewX(45deg);
}

.shop.about-feature:after {
  left: auto;
  right: 1px;
  background: #2b2d42;
  -webkit-transform: skewX(45deg) translateX(100%);
  -ms-transform: skewX(45deg) translateX(100%);
  transform: skewX(45deg) translateX(100%);
}

.shop.about-feature .shop-img > img {
  min-height: 360px;
  object-fit: cover;
}

.shop.about-feature .shop-body {
  left: auto;
  right: 0px;
  width: 68%;
  padding: 40px 36px;
}

.shop.about-feature .section-tag,
.shop.about-side-card .section-tag {
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  letter-spacing: 1.4px;
}

.shop.about-feature .shop-body h3,
.shop.about-side-card .shop-body h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.shop.about-feature .shop-body p,
.shop.about-side-card .shop-body p {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.shop.about-feature .overview-chips {
  margin: 18px 0px 22px;
}

.shop.about-feature .stat-chip {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.shop.about-feature .cta-btn,
.shop.about-side-card .cta-btn {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.shop.about-side-card {
  min-height: 165px;
}

.shop.about-side-card:before {
  width: 88%;
}

.shop.about-side-card .shop-img > img {
  min-height: 165px;
  object-fit: cover;
}

.shop.about-side-card .shop-body {
  width: 100%;
  padding: 28px 28px 24px;
}

.shop.about-side-card .shop-body h3 {
  font-size: 21px;
}

.shop.about-side-card .shop-body p {
  font-size: 13px;
  margin-bottom: 0px;
  max-width: 250px;
}

.contact-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #2b2d42;
}

.contact-list li:last-child,
.contact-link-list li:last-child {
  margin-bottom: 0px;
}

.contact-list li i {
  position: absolute;
  left: 0px;
  top: 4px;
  color: #b80000;
}

.contact-link-list li {
  margin-bottom: 12px;
}

.contact-link-list a {
  color: #2b2d42;
  font-weight: 500;
}

.contact-link-list a:hover,
.contact-link-list a:focus {
  color: #b80000;
}

#about-us-intro .about-feature,
#about-us-intro .col-md-4 .about-side-card:last-child {
  margin-bottom: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #fbfbfc;
  border-bottom: 1px solid #e4e7ed;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li + li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li + li:before {
  content: "/";
  display: inline-block;
  color: #8d99ae;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8d99ae;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #b80000;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: #14171b;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 11px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #fff;
}

.header-links li a:hover {
  color: #b80000;
}

.header-links li i {
  color: #b80000;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #2b2f35;
  background-image: linear-gradient(
    90deg,
    #14171b 0%,
    #2d3238 45%,
    #737981 100%
  );
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

.brand-logo {
  max-height: 54px;
  width: auto;
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-brand-logo {
  max-height: 48px;
  width: auto;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 8px 0px;
}

.header-search form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.header-search form .input-select {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 155px;
  flex: 0 0 155px;
  width: 155px;
  margin-right: 0px;
  border-radius: 40px 0px 0px 40px;
  border-right: none;
}

.header-search form .input {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin-right: 0px;
  border-left: none;
  border-right: none;
}

.header-search form .search-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 96px;
  flex: 0 0 96px;
  height: 40px;
  width: 96px;
  background: #b80000;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0px;
  white-space: nowrap;
}

.header-ctn > div {
  display: inline-block;
  vertical-align: top;
}

.header-ctn > div + div {
  margin-left: 10px;
}

.header-ctn > div > a {
  display: block;
  position: relative;
  width: 76px;
  text-align: center;
  color: #fff;
}

.header-ctn > div > a > i {
  display: block;
  font-size: 17px;
}

.header-ctn .admin-access-link > i {
  font-size: 21px;
}

.header-ctn > div > a > span {
  font-size: 11px;
  line-height: 1.2;
}

.header-ctn > div > a > .qty {
  position: absolute;
  right: 14px;
  top: -8px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
  background-color: #b80000;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #fff;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #e4e7ed;
  box-shadow: 0px 0px 0px 2px #e4e7ed;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open > .cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2b2d42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns > a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #b80000;
  color: #fff;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns > a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns > a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #e4e7ed;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #fff;
  border-bottom: 2px solid #e4e7ed;
  border-top: 3px solid #b80000;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav > li + li {
  margin-left: 30px;
}

.main-nav > li > a {
  padding: 20px 0px;
}

.main-nav > li > a:hover,
.main-nav > li > a:focus,
.main-nav > li.active > a {
  color: #b80000;
  background-color: transparent;
}

.main-nav > li > a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #b80000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav > li > a:hover:after,
.main-nav > li > a:focus:after,
.main-nav > li.active > a:after {
  width: 100%;
}

#responsive-nav:after {
  content: "";
  display: block;
  clear: both;
}

.nav-system-access {
  float: right;
  padding-top: 8px;
}

.nav-system-access a {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #e4e7ed;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
  color: #4b5164;
  line-height: 36px;
  text-align: center;
  -webkit-box-shadow: 0px 8px 18px rgba(21, 22, 29, 0.08);
  box-shadow: 0px 8px 18px rgba(21, 22, 29, 0.08);
}

.nav-system-access a:hover,
.nav-system-access a:focus {
  color: #b80000;
  border-color: rgba(184, 0, 0, 0.22);
  -webkit-box-shadow: 0px 12px 22px rgba(184, 0, 0, 0.14);
  box-shadow: 0px 12px 22px rgba(184, 0, 0, 0.14);
}

.nav-system-access a:after {
  display: none;
}

.nav-system-access i {
  font-size: 16px;
}

.director-signature {
  margin-top: 18px;
}

.director-signature strong {
  display: block;
  color: #2b2d42;
  font-size: 16px;
  font-weight: 700;
}

.director-signature span {
  display: block;
  margin-top: 4px;
  color: #b80000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161d;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav > li {
    display: block;
    float: none;
  }
  .main-nav > li + li {
    margin-left: 0px;
  }
  .main-nav > li > a {
    padding: 15px;
    color: #fff;
  }

  .nav-system-access {
    float: none;
    padding: 0px 15px 15px;
  }

  .nav-system-access a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    line-height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #b80000;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #b80000;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #e4e7ed;
  z-index: -1;
}

.shop .shop-img > img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.service-category-card {
  background-color: #fff;
  isolation: isolate;
  -webkit-box-shadow: 0px 16px 32px rgba(21, 22, 29, 0.12);
  box-shadow: 0px 16px 32px rgba(21, 22, 29, 0.12);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition:
    box-shadow 0.2s ease,
    -webkit-box-shadow 0.2s ease;
}

.service-category-card:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(21, 22, 29, 0.16);
  box-shadow: 0px 20px 40px rgba(21, 22, 29, 0.16);
}

.service-category-card:before,
.service-category-card:after {
  z-index: 1;
  opacity: 0.8;
}

.service-category-card .shop-img {
  background-color: #fff;
  height: 255px;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 12px;
  overflow: hidden;
}

.service-category-card .shop-img > img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 94%;
  position: relative;
  z-index: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.service-category-card .shop-body {
  width: 75%;
  padding: 30px;
  z-index: 2;
}

#core-services .service-category-card:before,
#solutions-categories .service-category-card:before {
  width: 60%;
}

#core-services .container,
#solutions-categories .container {
  width: auto;
  max-width: 1170px;
}

#core-services .service-category-card .shop-body,
#solutions-categories .service-category-card .shop-body {
  width: 75%;
  padding: 30px;
}

#core-services .service-category-card,
#solutions-categories .service-category-card {
  background-color: transparent;
  isolation: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#core-services .service-category-card:hover,
#solutions-categories .service-category-card:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#core-services .service-category-card:before,
#core-services .service-category-card:after,
#solutions-categories .service-category-card:before,
#solutions-categories .service-category-card:after {
  opacity: 0.9;
}

#core-services .service-category-card .shop-img,
#solutions-categories .service-category-card .shop-img {
  position: relative;
  display: block;
  height: 240px;
  padding: 0px;
  background-color: #e4e7ed;
  overflow: hidden;
  z-index: -1;
}

#core-services .service-category-card .shop-img > img,
#solutions-categories .service-category-card .shop-img > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin-left: 0px;
  margin-right: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.service-category-card:hover .shop-img > img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.shop .shop-body h3 {
  color: #fff;
}

.shop .shop-body .cta-btn {
  color: #fff;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 0px;
  margin: 30px 0px;
  min-height: 200px;
  aspect-ratio: 1782 / 465;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: #e4e7ed;
  background-image: url("../img/hotdeal.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown > li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #b80000e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown > li > div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown > li > div h3 {
  color: #fff;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown > li > div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow:
    0px 0px 0px 0px #e4e7ed,
    0px 0px 0px 1px #e4e7ed;
  box-shadow:
    0px 0px 0px 0px #e4e7ed,
    0px 0px 0px 1px #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow:
    0px 0px 6px 0px #e4e7ed,
    0px 0px 0px 2px #b80000;
  box-shadow:
    0px 0px 6px 0px #e4e7ed,
    0px 0px 0px 2px #b80000;
}

.product .product-img {
  position: relative;
}

.product .product-img > img {
  width: 100%;
}

.core-service-product .product-img {
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}

.core-service-product .product-img > img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label > span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label > span.sale {
  background-color: #fff;
  border-color: #b80000;
  color: #b80000;
}

.product .product-img .product-label > span.new {
  background-color: #b80000;
  border-color: #b80000;
  color: #fff;
}

.product .product-img .product-label > span.core-service-inverse-badge {
  background-color: #fff;
  border-color: #fff;
  color: #b80000;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #fff;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8d99ae;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name > a {
  font-weight: 700;
}

.product .product-body .product-name > a:hover,
.product .product-body .product-name > a:focus {
  color: #b80000;
}

.product .product-body .product-price {
  color: #b80000;
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating > i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #fff;
  color: #e4e7ed;
  z-index: 10;
}

.product .product-body .product-rating > i.fa-star {
  color: #b80000;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #e4e7ed;
}

.product .product-body .product-btns > button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns > button:hover {
  background-color: #e4e7ed;
  color: #b80000;
  border-radius: 50%;
}

.product .product-body .product-btns > button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #fff;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns > button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #1e1f29;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #b80000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn > i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #b80000;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #fff;
  color: #b80000;
  border-color: #b80000;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover > i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget + .product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img > img {
  width: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8d99ae;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name > a {
  font-weight: 700;
}

.product-widget .product-body .product-name > a:hover,
.product-widget .product-body .product-name > a:focus {
  color: #b80000;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #b80000;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #fff;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs > .tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs > .tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside + .aside {
  margin-top: 30px;
}

.aside > .aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter > div + div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
  color: #8d99ae;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e4e7ed;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #b80000;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #b80000;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li + li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #e4e7ed;
  color: #b80000;
}

.store-grid li.active {
  background-color: #b80000;
  border-color: #b80000;
  color: #fff;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li + li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #e4e7ed;
  color: #b80000;
}

.store-pagination li.active {
  background-color: #b80000;
  border-color: #b80000;
  color: #fff;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #fff;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #e4e7ed;
}

#product-imgs .product-preview.slick-current {
  border-color: #b80000;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating > i {
  color: #e4e7ed;
}

.product-details .product-rating > i.fa-star {
  color: #b80000;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #b80000;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #b80000;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #b80000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn > i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #b80000;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #fff;
  color: #b80000;
  border-color: #b80000;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover > i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li + li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li + li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #e4e7ed;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #fff;
  padding: 0px 15px;
}

#product-tab .tab-nav li + li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8d99ae;
}

#product-tab .tab-nav li.active a {
  color: #b80000;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #b80000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars > i,
.rating .rating-stars > i {
  color: #e4e7ed;
}

.rating-avg .rating-stars > i.fa-star,
.rating .rating-stars > i.fa-star {
  color: #b80000;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #e4e7ed;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress > div {
  background-color: #b80000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8d99ae;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8d99ae;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating > i {
  color: #e4e7ed;
}

.reviews .review-heading .review-rating > i.fa-star {
  color: #b80000;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #e4e7ed;
  color: #b80000;
}

.reviews-pagination li.active {
  background-color: #b80000;
  border-color: #b80000;
  color: #fff;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars > label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars > label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars > label:hover:before,
.review-form .input-rating .stars > label:hover ~ label:before {
  color: #b80000;
}

.review-form .input-rating .stars > input:checked label:before,
.review-form .input-rating .stars > input:checked ~ label:before {
  content: "\f005";
  color: #b80000;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #e4e7ed;
  border-left: 1px solid #e4e7ed;
  border-bottom: 1px solid #e4e7ed;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #e4e7ed;
  border-left: 1px solid #e4e7ed;
  border-right: 1px solid #e4e7ed;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col > div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col > div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col > div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #b80000;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #e4e7ed;
  border-bottom: 3px solid #b80000;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #e4e7ed;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #b80000;
  color: #fff;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
  background-color: #e4e7ed;
  color: #b80000;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background-color: #2b2f35;
  background-image: linear-gradient(
    90deg,
    #14171b 0%,
    #2d3238 45%,
    #737981 100%
  );
  color: #b9babc;
}

#bottom-footer {
  background: #b80000;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li + li {
  margin-top: 15px;
}

.footer-links li a {
  color: #b9babc;
}

.footer-links li i {
  margin-right: 15px;
  color: #b80000;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #b80000;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
  color: #fff;
}

.copyright a {
  color: #fff;
}

.footer-payments li {
  display: inline-block;
  margin: 0px 4px;
}

.footer-payments li a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  display: block;
  text-align: center;
  opacity: 0.9;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.footer-payments li a:hover,
.footer-payments li a:focus {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.careers-page-intro-section {
  padding-top: 34px;
  padding-bottom: 4px;
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.careers-page-compact-intro {
  max-width: 920px;
  margin: 0px auto 8px;
  padding: 26px 30px 22px;
}

.careers-page-compact-intro h3 {
  margin-bottom: 12px;
}

.careers-page-compact-intro > p {
  margin-bottom: 0px;
  line-height: 1.8;
}

.careers-page-openings-section {
  padding-top: 0px;
}

.careers-role-list-col {
  margin-bottom: 20px;
}

.careers-role-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.careers-role-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.careers-role-card,
.careers-empty-card {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 4px solid #b80000;
}

.careers-role-card {
  padding: 24px 28px 22px;
}

.careers-role-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.careers-role-card h4,
.careers-empty-card h4 {
  margin-bottom: 0px;
  font-size: 22px;
  line-height: 1.28;
  text-transform: none;
}

.careers-role-type,
.careers-role-status {
  display: inline-block;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.careers-role-type {
  margin-bottom: 12px;
  border: 1px solid rgba(184, 0, 0, 0.14);
  background-color: rgba(184, 0, 0, 0.08);
  color: #b80000;
}

.careers-role-status {
  border: 1px solid rgba(16, 185, 129, 0.16);
  background-color: rgba(16, 185, 129, 0.1);
  color: #047857;
  white-space: nowrap;
}

.careers-role-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4e7ed;
}

.careers-role-meta span {
  display: inline-block;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
}

.careers-role-meta span i {
  color: #b80000;
  margin-right: 6px;
}

.careers-role-description {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.75;
}

.careers-role-description br + br {
  display: none;
}

.careers-role-actions {
  margin-top: 18px;
}

#open-roles .careers-role-card .careers-role-actions {
  display: block;
  width: 100%;
  clear: both;
  text-align: right;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e4e7ed;
}

#open-roles .careers-role-card .careers-role-actions .primary-btn {
  display: inline-block;
  margin-left: 24px;
}

#open-roles .careers-role-card .careers-role-description {
  margin-bottom: 0px;
}

.careers-apply-modal[hidden] {
  display: none !important;
}

.careers-modal-open {
  overflow: hidden;
}

.careers-apply-modal {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
}

.careers-apply-modal-backdrop {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(20, 23, 27, 0.62);
}

.careers-apply-modal-dialog {
  position: relative;
  width: calc(100% - 32px);
  max-width: 560px;
  margin: 9vh auto 0px;
  padding: 30px 30px 26px;
  border-radius: 24px;
  border-top: 4px solid #b80000;
  background: #fff;
  -webkit-box-shadow: 0 24px 50px rgba(17, 24, 39, 0.22);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.22);
}

.careers-apply-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  background: #fff;
  color: #1f2937;
}

.careers-apply-modal h3 {
  margin-top: 0px;
  margin-bottom: 14px;
  text-transform: none;
}

.careers-apply-modal-copy {
  margin-bottom: 18px;
  color: #4b5563;
  line-height: 1.8;
}

.careers-apply-modal-list {
  margin: 0px 0px 22px;
  padding-left: 18px;
  color: #4b5563;
}

.careers-apply-modal-list li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.careers-apply-modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.careers-apply-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 40px;
  background: #fff;
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.careers-apply-modal-help {
  margin: 14px 0px 0px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

.careers-empty-card {
  text-align: center;
}

.careers-empty-card p {
  margin-top: 14px;
  margin-bottom: 0px;
  color: #4b5563;
  line-height: 1.8;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #b80000;
  border-color: #b80000;
}

.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  color: #2b2d42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #fff;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #e4e7ed;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #b80000;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
}

@media only screen and (max-width: 991px) {
  .quick-fact,
  .value-card,
  .certificate-card {
    min-height: 0px;
  }

  .about-media-image {
    height: 260px;
  }

  .about-copy-panel,
  .about-page-hero-copy,
  .about-media-note,
  .about-focus-card,
  .about-page-story-card,
  .about-page-side-card,
  .about-page-detail-card,
  .gallery-page-header,
  .gallery-page-canvas,
  .gallery-page-story-card,
  .gallery-mosaic-shell,
  .solutions-hero-copy,
  .solutions-hero-note,
  .solutions-detail-copy,
  .solutions-detail-media,
  .solutions-contact-card,
  .solutions-contact-side,
  .service-request-card,
  .service-request-side,
  .leadership-intro,
  .certificate-section-copy,
  .certificate-visual-card,
  .leadership-visual-card,
  .certificate-image-frame {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-page-hero-copy h1 {
    font-size: 32px;
  }

  .gallery-page-header h1 {
    font-size: 32px;
  }

  .gallery-mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 86px;
  }

  .gallery-mosaic-card:nth-child(10n + 1),
  .gallery-mosaic-card:nth-child(10n + 9) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-mosaic-card:nth-child(10n + 2),
  .gallery-mosaic-card:nth-child(10n + 6) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-mosaic-card:nth-child(10n + 4),
  .gallery-mosaic-card:nth-child(10n + 7) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .gallery-mosaic-card:nth-child(10n + 5),
  .gallery-mosaic-card:nth-child(10n + 10) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-hover-preview {
    display: none !important;
  }

  .careers-role-card,
  .careers-empty-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .solutions-hero-copy h1 {
    font-size: 32px;
  }

  .about-service-block {
    min-height: 0px;
  }

  .solutions-hero-image-frame img,
  .solutions-detail-media img {
    height: 280px;
  }

  .solution-service-image img {
    height: 200px;
  }

  .solution-service-card-tile .solution-service-image-contained {
    height: 200px;
  }

  .leadership-role-card {
    min-height: 0px;
  }

  .certificate-placeholder {
    min-height: 360px;
  }

  .service-category-card .shop-img {
    height: 235px;
    padding: 8px 10px;
  }

  .service-category-card .shop-img > img {
    height: auto;
    max-width: 84%;
    max-height: 94%;
  }

  .core-service-product .product-img {
    height: 220px;
  }

  .feature-image {
    max-height: 360px;
  }

  .service-request-card::after {
    width: 110px;
    height: 110px;
  }

  .shop.about-feature .shop-body {
    width: 72%;
    padding: 34px 30px;
  }

  .shop.about-feature .shop-img > img {
    min-height: 400px;
  }

  .shop.about-side-card .shop-body {
    padding: 24px;
  }

  .gallery-thumb img {
    height: 220px;
  }

  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-media-image {
    height: 220px;
  }

  .about-copy-panel {
    padding: 28px 22px 24px;
  }

  .about-page-hero-section {
    padding-top: 28px;
  }

  .gallery-page-section {
    padding-top: 28px;
  }

  .solutions-page-hero {
    padding-top: 28px;
  }

  .about-page-hero-copy h1 {
    font-size: 28px;
  }

  .gallery-page-header h1 {
    font-size: 28px;
  }

  .gallery-page-story-card {
    padding: 28px 24px;
  }

  .gallery-mosaic-shell {
    padding: 12px;
  }

  .gallery-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 12px;
  }

  .gallery-mosaic-card:nth-child(10n + 1),
  .gallery-mosaic-card:nth-child(10n + 2),
  .gallery-mosaic-card:nth-child(10n + 6),
  .gallery-mosaic-card:nth-child(10n + 9) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-mosaic-card:nth-child(10n + 4),
  .gallery-mosaic-card:nth-child(10n + 7) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-mosaic-card:nth-child(10n + 5),
  .gallery-mosaic-card:nth-child(10n + 10) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .solutions-hero-copy h1 {
    font-size: 28px;
  }

  .about-media-note,
  .about-page-hero-copy,
  .about-focus-card,
  .about-page-story-card,
  .about-page-side-card,
  .about-page-detail-card,
  .careers-role-card,
  .careers-empty-card,
  .gallery-page-header,
  .gallery-page-canvas,
  .gallery-page-story-card,
  .gallery-mosaic-shell,
  .solutions-hero-copy,
  .solutions-hero-note,
  .solutions-detail-copy,
  .solutions-detail-media,
  .solutions-contact-card,
  .solutions-contact-side,
  .service-request-card,
  .service-request-side,
  .leadership-intro,
  .certificate-section-copy,
  .certificate-visual-card,
  .leadership-role-card,
  .leadership-visual-card,
  .certificate-image-frame {
    padding: 22px 20px;
  }

  .about-inline-fact {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-right: 0px;
  }

  .about-page-fact {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .solutions-hero-fact {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-right: 0px;
  }

  .request-item {
    padding-left: 56px;
  }

  .careers-role-card-head {
    display: block;
  }

  .careers-role-status {
    margin-top: 14px;
  }

  #open-roles .careers-role-card .careers-role-actions,
  .careers-apply-modal-actions {
    display: block;
    text-align: left;
  }

  #open-roles .careers-role-card .careers-role-actions .primary-btn,
  .careers-apply-modal-actions .primary-btn {
    width: 100%;
    margin-left: 0px;
    text-align: center;
  }

  .careers-role-meta span {
    width: 100%;
  }

  .careers-apply-modal-dialog {
    margin-top: 6vh;
    padding: 26px 22px 22px;
  }

  .service-request-card::after {
    width: 90px;
    height: 90px;
    right: calc(3cm - 18px);
  }

  .certificate-item {
    padding-left: 64px;
  }

  .certificate-placeholder {
    min-height: 280px;
    padding: 28px 20px;
  }

  .service-category-card .shop-img {
    height: 220px;
    padding: 8px;
  }

  .service-category-card .shop-img > img {
    height: auto;
    max-width: 86%;
    max-height: 94%;
  }

  .core-service-product .product-img {
    height: 200px;
  }

  .feature-image-card {
    padding: 14px;
  }

  .feature-image {
    max-height: 280px;
  }

  .about-service-block {
    min-height: 0px;
  }

  .solutions-hero-image-frame img,
  .solutions-detail-media img {
    height: 220px;
  }

  .solution-service-image img {
    height: 180px;
  }

  .solution-service-card-tile .solution-service-image-contained {
    height: 180px;
  }

  .solutions-point {
    padding-left: 64px;
  }

  .shop.about-feature:before,
  .shop.about-feature:after,
  .shop.about-side-card:before,
  .shop.about-side-card:after {
    left: 0px;
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .shop.about-feature .shop-body,
  .shop.about-side-card .shop-body {
    width: 100%;
    padding: 26px 22px;
  }

  .shop.about-feature .shop-img > img {
    min-height: 430px;
  }

  .shop.about-side-card .shop-img > img {
    min-height: 220px;
  }

  .shop.about-feature .shop-body h3 {
    font-size: 24px;
  }

  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*="col-xs"] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }

  .gallery-mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-mosaic-card:nth-child(10n + 1),
  .gallery-mosaic-card:nth-child(10n + 2),
  .gallery-mosaic-card:nth-child(10n + 4),
  .gallery-mosaic-card:nth-child(10n + 5),
  .gallery-mosaic-card:nth-child(10n + 6),
  .gallery-mosaic-card:nth-child(10n + 7),
  .gallery-mosaic-card:nth-child(10n + 9),
  .gallery-mosaic-card:nth-child(10n + 10) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
