/* Main CSS
-------------------------------------------------- */
:root {
  --white: #fff;
  --black: #000;
  --color-100: #ec1c23;
  --color-200: #37225d;
  --bk-grade-100: #eaeaea;
  --bk-grade-150: #d6d6d6;
  --bk-grade-200: #c1c1c1;
  --bk-grade-250: #adadad;
  --bk-grade-300: #999999;
  --bk-grade-350: #848484;
  --bk-grade-400: #707070;
  --bk-grade-450: #5b5b5b;
  --bk-grade-500: #474747;
  --bk-grade-550: #333333;
  --bk-grade-600: #2d2d2d;
  --bk-grade-650: #282828;
  --bk-grade-700: #232323;
  --bk-grade-750: #1e1e1e;
  --bk-grade-800: #191919;
  --bk-grade-850: #141414;
  --bk-grade-900: #0f0f0f;
  --bk-grade-950: #0a0a0a;
}

@font-face {
  font-family: "Circular Std";
  src: url("../fonts/CircularStd-Bold.eot");
  src: url("../fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Circular Std";
  src: url("../fonts/CircularStd-Medium.eot");
  src: url("../fonts/CircularStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.eot");
  src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Roboto";
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
}

a,
button {
  transition: 0.2s ease-out;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 125%;
}

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

a:focus,
button:focus {
  outline: none !important;
}

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

input[type="number"] {
  -moz-appearance: textfield;
}

::selection {
  color: var(--white);
  background: var(--color-100);
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-100) var(--white);
}

/* Works on Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: var(--white);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--color-100);
  border-radius: 20px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
  box-shadow: none;
}

.return-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-100);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transform: rotate(45deg);
  transition: 0.3s linear;
  z-index: 10;
}

.return-top span {
  display: block;
  transform: rotate(-45deg);
}

.return-top span img {
  position: relative;
  width: 15px;
  animation: upBounce 2s infinite;
}

.return-top:hover span img {
  top: 5px;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(208, 242, 255, 0) 0%, rgba(208, 242, 255, 0.3) 100%);
  transform: skewX(25deg);
  z-index: 2;
}

.btn-shine:hover:before {
  animation: btn-shineAnim 0.75s;
}

.navbar-main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  z-index: 1030;
}

.navbar-cover {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  flex-direction: column;
}

.nav-top-cover {
  display: flex;
  background: white;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(100%, #dfdfdf));
  background: linear-gradient(to bottom, white 0%, #dfdfdf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#dfdfdf', GradientType=0 );
  border-bottom: solid 1px var(--white);
}

.nav-top-cover .logo-cover {
  flex: 0 0 400px;
  max-width: 400px;
  margin-right: 3rem;
}

.nav-top-cover .info-links-cover {
  flex: 1 1 0;
}

.logo-cover .logo {
  padding: 1rem;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.logo-cover .logo img {
  width: 100%;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.info-top {
  position: relative;
  min-height: 50px;
  background-color: var(--color-200);
}

.info-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 50px solid var(--color-200);
  transform: translateX(-50%);
}

.info-nav {
  display: flex;
  padding: 0 1rem 0 2rem;
}

.info-nav .info-item:last-child {
  margin-left: auto;
}

.info-nav .info-item .info-link {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

.info-nav .info-item .info-link .info-icon {
  flex: 0 0 24px;
  max-width: 24px;
  margin-right: 0.5rem;
}

.info-nav .info-item .info-link .info-icon img {
  width: 100%;
}

.info-nav .info-item .info-link .info-label {
  flex: 1 1 0;
}

.info-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}

.tagline {
  color: #888888;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.social-top {
  display: flex;
  justify-content: flex-end;
}

.social-top .soc-top-item {
  display: inline-block;
}

.social-top .soc-top-item + .soc-top-item {
  margin-left: 1rem;
}

.social-top .soc-top-item .soc-top-link {
  position: relative;
  display: block;
  color: var(--bk-grade-750);
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.social-top .soc-top-item .soc-top-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.social-top .soc-top-item .soc-top-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.social-top .soc-top-item .soc-top-link:hover {
  color: #ffffff;
  background-color: var(--color-100);
}

.social-top .soc-top-item .soc-top-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.main-nav-cover {
  padding: 0.25rem 1rem;
  background: #ed1d24;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ed1d24), color-stop(100%, #ac1419));
  background: linear-gradient(to bottom, #ed1d24 0%, #ac1419 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1d24', endColorstr='#ac1419', GradientType=0 );
  border-bottom: 1px solid #ed1d24;
}

.main-nav-cover .navbar-collapse {
  justify-content: space-between;
}

.main-nav .nav-item + .nav-item {
  background-image: url(../images/nav-red-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
}

.main-nav .nav-item .nav-link {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.main-nav .nav-item .nav-link:hover {
  color: var(--color-100) !important;
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar-fixed {
  position: fixed;
}

.navbar-fixed .nav-top-cover {
  border-bottom: 0 solid var(--white);
}

.navbar-fixed .logo-cover .logo {
  max-width: 315px;
  padding: 0.25rem 1rem;
}

.navbar-fixed .info-btm {
  display: none;
}

.navbar-product .nav-product {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-product .nav-product::after {
  display: none;
}

.navbar-product .nav-product img {
  margin-left: 1rem;
}

.navbar-product .nav-product:hover {
  background-color: var(--color-200);
  border: 1px solid var(--color-200);
}

.navbar-product .dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar-product .dropdown-menu .dropdown-item {
  display: block;
  color: var(--bk-grade-700);
}

.navbar-product .dropdown-menu .dropdown-item:hover {
  color: var(--white);
  background-color: var(--color-200);
}

.banner-sec {
  position: relative;
  overflow: hidden;
}

.banner-cover {
  position: relative;
}

.banner-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: rgba(0, 0, 0, 0.75);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.75)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  z-index: 10;
}

.banner-cover .carousel .carousel-inner .carousel-item.active img {
  transition: transform 5000ms linear 0s;
  transform: scale(1.1, 1.1);
}

.banner-cover .carousel .carousel-indicators {
  display: flex;
  flex-direction: column;
  left: auto;
  right: calc(((100vw - 1320px) / 2));
  top: 50%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%);
  z-index: 30;
}

.banner-cover .carousel .carousel-indicators li {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 0.5rem;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 1;
}

.banner-cover .carousel .carousel-indicators li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.2s ease-out;
}

.banner-cover .carousel .carousel-indicators li.active {
  background-color: var(--white);
}

.banner-cover .carousel .carousel-indicators li.active::before {
  opacity: 1;
}

.banner-cover .carousel .carousel-inner .carousel-item img,
.banner-cover .carousel .carousel-inner .carousel-item video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner-cover .banner-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 85%;
  z-index: 10;
}

.banner-cover .banner-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.banner-cover .carousel-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 20;
}

.banner-cover .carousel-content .carousel-hd {
  position: relative;
  max-width: 750px;
}

.banner-cover .carousel-content .carousel-hd .sub-hd {
  color: var(--white);
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
}

.banner-cover .carousel-content .carousel-hd h2 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 5.75rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner-cover .carousel-content .carousel-hd .btn-slider {
  color: var(--white);
  width: 100%;
  max-width: 210px;
  border-radius: 0.25rem;
  box-shadow: none;
  text-transform: uppercase;
}

.banner-cover .carousel-content .carousel-hd .btn-slider:hover {
  background-color: #d98b1c;
}

.banner-cover .carousel-content .carousel-hd .btn-quote {
  background-color: var(--color-100);
}

.banner-cover .carousel-content .carousel-hd .btn-brochure {
  background-color: var(--color-200);
}

.pro-caro-sec {
  position: relative;
  padding: 6rem 0 3rem;
}

.product-caro-cover {
  padding-left: calc(((100vw - 1320px) / 2));
}

.product-caro-hd {
  max-width: 750px;
  margin-bottom: 2.5rem;
}

.product-caro-hd .sub-hd {
  margin-bottom: 1.5rem;
}

.product-caro-hd .sub-hd span {
  display: inline-block;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.product-caro-hd h2 {
  color: var(--bk-grade-600);
  font-family: "Circular Std";
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.product-carousel .owl-theme .owl-nav .owl-prev,
.product-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: -5rem;
  width: 50px;
  height: 25px;
  margin: 0px;
  padding: 0px;
  background-color: transparent;
  background-position: center;
  background-size: 46px;
  background-repeat: no-repeat;
  border-radius: 0.15rem;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}

.product-carousel .owl-theme .owl-nav .owl-prev {
  right: 4rem;
  background-image: url(../images/arrow-dk-left.png);
}

.product-carousel .owl-theme .owl-nav .owl-next {
  right: 0;
  background-image: url(../images/arrow-dk-right.png);
}

.product-carousel .owl-theme .owl-nav .owl-prev:hover,
.product-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--bk-grade-100);
}

.pro-caro-item {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}

.pro-caro-item figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.pro-caro-item figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  transition: 0.2s ease-out;
}

.pro-caro-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.pro-caro-item .pro-caro-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2rem 2rem 2rem;
}

.pro-caro-item .pro-caro-body h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.pro-caro-item .pro-caro-body .btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  width: 42px;
  height: 42px;
  font-size: 1.125rem;
  padding: 0;
  background-color: var(--color-100);
  border-radius: 0.25rem;
}

.pro-caro-item .pro-caro-body .btn-more:hover {
  border-radius: 50%;
}

.pro-caro-item:hover figure::after {
  height: 100%;
}

.pro-caro-item:hover figure img {
  transform: scale(1.1);
}

.product-carousel .owl-theme .owl-nav .owl-prev,
.product-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: -5rem;
  width: 50px;
  height: 25px;
  margin: 0px;
  padding: 0px;
  background-color: transparent;
  background-position: center;
  background-size: 46px;
  background-repeat: no-repeat;
  border-radius: 0.15rem;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}

.product-carousel .owl-theme .owl-nav .owl-prev {
  right: 4rem;
  background-image: url(../images/arrow-dk-left.png);
}

.product-carousel .owl-theme .owl-nav .owl-next {
  right: 0;
  background-image: url(../images/arrow-dk-right.png);
}

.product-carousel .owl-theme .owl-nav .owl-prev:hover,
.product-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--bk-grade-100);
}

.product-carousel .owl-item:nth-child(even) .pro-caro-item .pro-caro-body .btn-more {
  background-color: var(--color-200);
}

.choice-sec {
  position: relative;
  padding: 3rem 0 6rem;
}

.choice-img {
  max-width: 512px;
}

.choice-img img {
  width: 100%;
}

.choice-cover {
  max-width: 750px;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.choice-cover .choice-intro {
  margin-left: -4rem;
  margin-bottom: 2.5rem;
}

.choice-cover .choice-intro .sub-hd {
  margin-bottom: 1.5rem;
}

.choice-cover .choice-intro .sub-hd span {
  display: inline-block;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.choice-cover .choice-intro h2 {
  color: var(--bk-grade-600);
  font-family: "Circular Std";
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.choice-cover .choice-intro p {
  color: var(--bk-grade-500);
}

.choice-cover .btn-explore {
  color: var(--white);
  width: 100%;
  max-width: 210px;
  margin-top: 2rem;
  border-radius: 0.25rem;
  background-color: var(--color-200);
  box-shadow: none;
  text-transform: uppercase;
}

.choice-cover .btn-explore:hover {
  background-color: var(--color-100);
}

.choice-list .choice-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.choice-list .choice-item .choice-icon {
  flex: 0 0 56px;
  max-width: 56px;
  margin-right: 2rem;
}

.choice-list .choice-item .choice-icon img {
  width: 100%;
}

.choice-list .choice-item .choice-label {
  color: var(--bk-grade-500);
}

.solution-sec {
  position: relative;
  padding: 6rem 0 3rem;
  background-image: url(../images/solutions-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.solution-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}

.solution-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.solutions-hd {
  margin-bottom: 2.5rem;
  text-align: center;
}

.solutions-hd .sub-hd {
  margin-bottom: 1.5rem;
}

.solutions-hd .sub-hd span {
  display: inline-block;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.solutions-hd h2 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.solution-item {
  max-width: 200px;
  padding: 1rem 0.5rem;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: 0.2s ease-out;
}

.solution-item figure {
  width: 75px;
  height: 85px;
  margin: 0 auto 1rem;
  background-image: url(../images/solution-icon-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.solution-item figure i {
  position: relative;
  display: block;
  width: 75px;
  height: 85px;
  margin: 0 auto;
}

.solution-item figure i img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: 0.2s ease-out;
}

.solution-item figure i .hover {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}

.solution-item .solution-body {
  text-align: center;
}

.solution-item .solution-body p {
  color: var(--white);
}

.solution-item:hover {
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.solution-item:hover figure i img {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

.solution-item:hover figure i .hover {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.solution-carousel .owl-theme .owl-nav .owl-prev,
.solution-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 30%;
  width: 50px;
  height: 50px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}

.solution-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.solution-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.solution-carousel .owl-theme .owl-nav .owl-prev:hover,
.solution-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.solution-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.solution-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.stock-sec {
  position: relative;
  padding: 6rem 0 3rem;
}

.stock-item {
  position: relative;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.stock-item figure {
  margin: 0;
  overflow: hidden;
}

.stock-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.stock-item .stock-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 34, 93, 0.9);
  opacity: 0;
  transform: scale(0.75);
  transition: 0.2s ease-out;
}

.stock-item .stock-hd {
  transform: translateY(25px);
  text-align: center;
  opacity: 0;
  transition: 0.2s ease-out;
  transition-duration: 300ms;
  transition-delay: 200ms;
}

.stock-item .stock-hd h3 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 1.25rem;
  font-weight: 500;
}

.stock-item .stock-hd P {
  color: var(--white);
  margin: 0;
}

.stock-item:hover figure img {
  transform: scale(1.1);
}

.stock-item:hover .stock-body {
  transform: scale(1);
  opacity: 1;
}

.stock-item:hover .stock-hd {
  transform: translateY(0);
  opacity: 1;
}

.stock-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 0.5rem);
  background-color: var(--color-100);
  border-radius: 0.25rem;
}

.stock-intro .stock-in-body {
  text-align: center;
}

.stock-intro .stock-in-body p {
  color: var(--white);
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.stock-intro .stock-in-body h2 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.stock-intro .stock-in-body .btn-explore {
  color: var(--white);
  width: 100%;
  max-width: 200px;
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  background-color: transparent;
  box-shadow: none;
  text-transform: uppercase;
}

.stock-intro .stock-in-body .btn-explore:hover {
  color: var(--color-100);
  background-color: var(--white);
}

.solution-sec {
  position: relative;
  padding: 6rem 0 6rem;
}

.clients-hd {
  margin-bottom: 2.5rem;
  text-align: center;
}

.clients-hd .sub-hd {
  margin-bottom: 1.5rem;
}

.clients-hd .sub-hd span {
  display: inline-block;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.75rem;
  background-color: var(--color-100);
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.clients-hd h2 {
  color: var(--bk-grade-600);
  font-family: "Circular Std";
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 1rem 0;
}

.clients-carousel {
  overflow: hidden;
}

.clients-carousel .owl-theme .owl-nav .owl-prev,
.clients-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}

.clients-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.clients-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.clients-carousel .owl-theme .owl-nav .owl-prev:hover,
.clients-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.clients-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.clients-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.client-sec {
  position: relative;
  padding: 3rem 0 6rem;
}

.client-item {
  max-width: 200px;
}

.client-item img {
  width: 100%;
  transition: 0.2s ease-out;
}

.client-item:hover img {
  filter: grayscale(1);
}

.footer-sec {
  position: relative;
  padding: 4rem 0 4rem;
  background-color: #2f2f2f;
}

.col-ft-quick {
  flex: 0 0 15%;
  max-width: 15%;
}

.col-ft-product {
  flex: 0 0 24%;
  max-width: 24%;
  border-left: 1px solid #434141;
}

.col-ft-contact {
  flex: 0 0 24%;
  max-width: 24%;
  border-left: 1px solid #434141;
}

.col-ft-social {
  flex: 0 0 37%;
  max-width: 37%;
  border-left: 1px solid #434141;
  order: 4;
}

.ft-link-cover {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.ft-link-cover h3 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.ft-links .link-item {
  margin-bottom: 1rem;
}

.ft-links .link-item .link-nav {
  position: relative;
  display: block;
  color: var(--bk-grade-200);
  padding: 0.1rem 0 0.1rem 0;
  text-decoration: none;
}

.ft-links .link-item .link-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0;
  height: 16px;
  background-color: var(--color-100);
  transition: 0.2s ease-out;
}

.ft-links .link-item .link-nav:hover {
  padding: 0.1rem 0 0.1rem 0.5rem;
}

.ft-links .link-item .link-nav:hover::before {
  width: 3px;
}

.ft-contact {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.ft-contact h3 {
  color: var(--white);
  font-family: "Circular Std";
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.ft-contact p {
  color: var(--bk-grade-200);
}

.con-list .con-item {
  color: var(--bk-grade-200);
  margin-bottom: 0.5rem;
}

.con-list .con-item .con-link {
  color: var(--bk-grade-200);
}

.con-list .con-item .con-link .fa {
  width: 30px;
  color: var(--white);
}

.con-list .con-item .con-link:hover {
  color: var(--color-100);
}

.footer-logo {
  max-width: 375px;
  margin-left: auto;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 100%;
}

.social-list {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.social-list .soc-item {
  display: inline-block;
}

.social-list .soc-item + .soc-item {
  margin-left: 1rem;
}

.social-list .soc-item .soc-link {
  position: relative;
  display: block;
  color: var(--bk-grade-250);
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid var(--bk-grade-450);
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
}

.social-list .soc-item .soc-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-100);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: 0.2s ease-out;
}

.social-list .soc-item .soc-link .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.social-list .soc-item .soc-link:hover {
  color: #ffffff;
  background-color: var(--color-100);
  border: 1px solid var(--color-100);
}

.social-list .soc-item .soc-link:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.tagline-footer {
  max-width: 350px;
  color: #888888;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: auto;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-hr {
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-top: 0 solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: var(--bk-grade-200);
}

.design {
  color: var(--bk-grade-200);
  text-align: right;
}

.ins-banner-sec {
  position: relative;
}

.ins-banner-cover .ins-banner-img {
  height: 400px;
}

.ins-banner-cover .ins-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ins-banner-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  transform: translateY(-50%);
  z-index: 10;
}

.ins-banner-hd h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-align: center;
}

.ins-banner-hd .breadcrumb {
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0.25rem;
}

.ins-banner-hd .breadcrumb .breadcrumb-item {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
}

.ins-banner-hd .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  color: var(--white);
  font-family: "FontAwesome";
}

.ins-banner-hd .breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.ins-banner-hd .breadcrumb .breadcrumb-item a:hover {
  color: var(--color-200);
}

.content-sec {
  position: relative;
  padding: 4rem 0 4rem;
}

.product-item {
  position: relative;
  height: calc(100% - 1.5rem);
  margin-bottom: 1.5rem;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 0.25rem;
  overflow: hidden;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.product-item figure {
  margin: 0;
  overflow: hidden;
}

.product-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.product-item .product-body {
  padding: 1.5rem 1rem 1rem;
}

.product-item .product-body h3 {
  color: var(--color-200);
  font-size: 1.25rem;
  font-weight: 500;
}

.product-item .product-body P {
  color: var(--bk-grade-750);
  margin: 0;
}

.product-item:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.product-item:hover figure img {
  transform: scale(1.1);
}

.contact-sec {
  position: relative;
  padding: 0 0 2rem 0;
}

.contact-form {
  margin: 0 0 2rem 0;
}

.contact-form .form-mand {
  color: #ff0000;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  color: var(--bk-grade-950);
  font-size: 1rem;
  font-weight: 500;
}

.contact-form .form-control {
  color: var(--bk-grade-950);
  min-height: 50px;
  background-color: transparent;
  border: 1px solid var(--bk-grade-200);
  border-radius: 0;
}

.contact-form .form-control:focus {
  border: 1px solid var(--bk-grade-300);
}

.contact-form .btn-submit {
  min-width: 275px;
  max-width: 275px;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.875rem 1rem;
  margin: 1rem 0 0 0;
  background-color: var(--color-200);
  border: 0 solid var(--black);
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.contact-form .btn-submit:hover {
  background-color: var(--color-100);
}

.contact-form ::placeholder {
  color: var(--bk-grade-950);
}

.address-sec {
  position: relative;
  padding: 2rem 0 0 0;
}

.address-cover {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  background-color: #ededed;
  border-radius: 0.5rem;
}

.address-cover .address-item {
  padding: 0.5rem 1.5rem 0.5rem 2.5rem;
  flex: 1 1 0;
}

.address-cover .address-item + .address-item {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.address-cover .address-item h3 {
  color: var(--color-200);
  font-size: 1.25rem;
  font-weight: 500;
}

.address-cover .address-item P {
  color: var(--bk-grade-750);
  margin: 0 0 1rem 0;
}

.address-cover .address-item ul li {
  position: relative;
  color: var(--bk-grade-950);
  padding: 0 0 0 3rem;
}

.address-cover .address-item ul li + li {
  margin-top: 1rem;
}

.address-cover .address-item ul li .con-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
}

.address-cover .address-item ul li .con-icon img {
  width: 100%;
}

.address-cover .address-item ul li a {
  color: var(--bk-grade-950);
}

.address-cover .address-item ul li a:hover {
  color: var(--color-200);
}

.com-content h2 {
  color: var(--color-200);
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.com-content h3 {
  color: var(--color-200);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.com-content p {
  color: var(--bk-grade-500);
  margin-bottom: 1.5rem;
}

.com-content ul {
  margin: 0 0 2rem 0;
}

.com-content ul li {
  position: relative;
  color: var(--bk-grade-500);
  padding: 0 0 0 1rem;
}

.com-content ul li + li {
  margin-top: 1rem;
}

.com-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-100);
  border-radius: 50%;
}

.com-content ol {
  padding: 0 0 0 1.5rem;
  margin: 0 0 2rem 0;
}

.com-content ol li {
  color: var(--bk-grade-500);
}

.com-content ol li + li {
  margin-top: 1rem;
}

.com-content .com-img {
  margin-bottom: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--bk-grade-100);
  overflow: hidden;
}

.com-content .com-img img {
  width: 100%;
}

.manufacture-cover {
  margin-bottom: 2rem;
}

.manufacture-carousel {
  overflow: hidden;
}

.manufacture-carousel .owl-theme .owl-nav .owl-prev,
.manufacture-carousel .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin: 0px;
  padding: 0px;
  background-color: var(--color-100);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-out;
}

.manufacture-carousel .owl-theme .owl-nav .owl-prev {
  left: -5rem;
  background-image: url(../images/arrow-left.svg);
}

.manufacture-carousel .owl-theme .owl-nav .owl-next {
  right: -5rem;
  background-image: url(../images/arrow-right.svg);
}

.manufacture-carousel .owl-theme .owl-nav .owl-prev:hover,
.manufacture-carousel .owl-theme .owl-nav .owl-next:hover {
  background-color: var(--color-200);
}

.manufacture-carousel:hover .owl-theme .owl-nav .owl-prev {
  left: 25px;
}

.manufacture-carousel:hover .owl-theme .owl-nav .owl-next {
  right: 25px;
}

.page-hd {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.page-hd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-100);
}

.page-hd h2 {
  color: var(--color-200);
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.manu-item {
  position: relative;
  margin: 0.25rem;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  border-radius: 0.25rem;
  overflow: hidden;
  transition: 0.2s ease-out;
  transition-duration: 500ms;
}

.manu-item figure {
  padding: 0 0.1rem;
  margin: 0;
  overflow: hidden;
}

.manu-item figure img {
  width: 100%;
  transition: 0.2s ease-out;
}

.manu-item .manu-body {
  min-height: 80px;
  color: var(--bk-grade-750);
  font-size: 0.875rem;
  padding: 0.5rem;
  text-align: center;
}

.manu-item:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.manu-item:hover figure img {
  transform: scale(1.1);
}

/* Loader CSS
-------------------------------------------------- */
.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  background-position: left top;
  background-repeat: repeat;
  z-index: 99999;
}

.loader-overlay .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
}

.loader-overlay .loader .logo {
  display: block;
  width: 100px;
  margin: 0 auto 1.5rem;
  transform-style: preserve-3d;
  transform-origin: center;
  animation: rotateLogo 5s linear infinite;
}

.loader-overlay .loader .logo img {
  width: 100%;
}

.loader-txt {
  color: #afafaf;
  font-size: 0.875rem;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
  text-align: center;
}

@keyframes rotateLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 320px) {
  .loader-overlay .loader {
    width: 275px;
  }
}

/* Animations
-------------------------------------------------- */
@keyframes navDown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes drop-anim {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btn-shineAnim {
  100% {
    left: 125%;
  }
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 992px) {
  .main-nav-cover .navbar-collapse {
    display: flex !important;
  }
}

@media (min-width: 1280px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1220px;
    max-width: 1220px;
  }
}

@media (min-width: 1366px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    width: 1320px;
    max-width: 1320px;
  }
}

@media (max-width: 1600px) {
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 4.5rem;
  }
  .banner-cover .carousel .carousel-indicators {
    right: 2rem;
  }
}

@media (max-width: 991px) {
  .nav-top-cover .logo-cover {
    flex: 0 0 350px;
    max-width: 350px;
    margin-right: 2rem;
  }
  .info-nav {
    padding: 0 1rem 0 1rem;
  }
  .info-nav .info-item .info-link {
    padding: 0.75rem 0.5rem;
  }
  .info-nav .info-item .info-link .info-label {
    display: none;
  }
  .info-nav .info-item:last-child {
    margin-left: unset;
  }
  .main-nav .nav-item + .nav-item {
    background-image: none;
  }
  .main-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
  }
  .navbar-product .nav-product {
    display: inline-block !important;
  }
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 3.5rem;
  }
  .banner-cover .banner-shape {
    height: 60%;
  }
  .product-caro-hd h2 {
    font-size: 2.25rem;
  }
  .choice-img {
    max-width: 475px;
    margin: 0 auto 2rem;
  }
  .choice-cover .choice-intro {
    margin-left: 0;
    margin-bottom: 2rem;
  }
  .choice-cover .choice-intro h2 {
    font-size: 2.25rem;
  }
  .stock-intro .stock-in-body h2 {
    font-size: 2rem;
  }
  .clients-hd h2 {
    font-size: 2.25rem;
  }
  .col-ft-social {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0 solid #434141;
    order: unset;
  }
  .footer-logo {
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  .social-list {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .col-ft-quick,
  .col-ft-product,
  .col-ft-contact {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
  .design {
    text-align: center;
  }
  .ins-banner-cover .ins-banner-img {
    height: 350px;
  }
  .ins-banner-hd h1 {
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
  }
  .ins-banner-hd .breadcrumb .breadcrumb-item {
    font-size: 1rem;
    font-weight: normal;
  }
  .contact-form .form-control {
    min-height: 40px;
  }
  .contact-form .btn-submit {
    min-width: 250px;
    max-width: 250px;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.75rem 1rem;
  }
  .address-cover {
    flex-direction: column;
    padding: 1rem;
  }
  .address-cover .address-item {
    padding: 0.5rem;
  }
  .address-cover .address-item + .address-item {
    margin-top: 1.5rem;
    border-left: 0 solid rgba(255, 255, 255, 0.5);
  }
  .info-btm {
    justify-content: flex-end;
  }
  .tagline {
    display: none;
  }
  .tagline-footer {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 767px) {
  .banner-cover .carousel .carousel-indicators {
    top: auto;
    bottom: 0;
  }
  .product-carousel .owl-theme .owl-nav .owl-prev,
  .product-carousel .owl-theme .owl-nav .owl-next {
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(unset);
  }
  .product-carousel .owl-theme .owl-nav {
    margin-top: 2rem;
  }
  .solution-shape {
    display: none;
  }
  .col-ft-quick,
  .col-ft-product {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-ft-contact {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0 solid #434141;
  }
  .footer-hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .nav-top-cover .logo-cover {
    flex: 0 0 300px;
    max-width: 300px;
    margin-right: 1rem;
  }
  .navbar-fixed .logo-cover .logo {
    max-width: 275px;
  }
  .social-top .soc-top-item + .soc-top-item {
    margin-left: 0.1rem;
  }
  .social-top .soc-top-item .soc-top-link {
    width: 28px;
    height: 28px;
  }
  .social-top .soc-top-item .soc-top-link .fa {
    font-size: 0.875rem;
  }
  .banner-cover .carousel-content .carousel-hd h2 {
    font-size: 2.5rem;
  }
  .banner-cover .banner-shape {
    height: 25%;
  }
  .info-nav .info-item .info-link .info-icon {
    flex: 0 0 16px;
    max-width: 16px;
    margin-right: 0;
  }
  .info-btm {
    padding: 0.5rem 0;
  }
  .pro-caro-sec {
    padding: 4rem 0 2rem;
  }
  .product-caro-hd h2 {
    font-size: 2rem;
  }
  .pro-caro-item .pro-caro-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .choice-sec {
    padding: 2rem 0 4rem;
  }
  .choice-cover {
    padding-left: 0;
    margin-bottom: 2rem;
  }
  .choice-cover .choice-intro h2 {
    font-size: 2rem;
  }
  .choice-list .choice-item .choice-icon {
    flex: 0 0 48px;
    max-width: 48px;
    margin-right: 1rem;
  }
  .solution-sec {
    padding: 4rem 0 4rem;
  }
  .solutions-hd h2 {
    font-size: 2rem;
  }
  .stock-sec {
    padding: 3rem 0 2rem;
  }
  .stock-intro .stock-in-body h2 {
    font-size: 1.5rem;
  }
  .client-sec {
    padding: 2rem 0 3rem;
  }
  .ft-link-cover {
    padding-left: 1rem;
  }
  .footer-sec {
    padding: 3rem 0 3rem;
  }
  .ft-link-cover h3 {
    font-size: 1.25rem;
  }
  .content-sec {
    padding: 3rem 0 3rem;
  }
  .page-hd h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .nav-top-cover .logo-cover {
    flex: 0 0 250px;
    max-width: 250px;
    margin-right: 1rem;
  }
  .navbar-fixed .logo-cover .logo {
    max-width: 225px;
  }
}
