* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ececf0;
  --card-bg: #FBFBFB;
  --black: #1E2021;
  --white: #ffffff;
}

.Wrapper {
  display: grid;
  grid-template-areas: "NAVIGATION-P" "HOME-P" "AUTOSCROLL-P" "COMPANY-P" "PRODUCTS-P" "RESOURCES-P" "BLOG-P" "CONTACT-P";
  grid-template-columns: 1fr;
  grid-template-rows: 60px calc(100vh - 180px) 120px auto auto auto auto auto;
  position: sticky;
  top: 0;
}
.Wrapper .NAVIGATION {
  grid-area: NAVIGATION-P;
  display: grid;
  grid-template-areas: "LOGO-P NAVBAR-P CUSTOMER-P";
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr;
  background-color: #e61134;
  position: sticky;
  top: 0;
}
.Wrapper .NAVIGATION .logo {
  grid-area: LOGO-P;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
.Wrapper .NAVIGATION .logo img {
  height: 60px;
  width: auto;
}
.Wrapper .NAVIGATION .logo .swing-logo:hover {
  transition: 2s ease;
  transform: rotateY(360deg);
  cursor: pointer;
}
.Wrapper .NAVIGATION .navbar {
  grid-area: NAVBAR-P;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.Wrapper .NAVIGATION .navbar a {
  text-decoration: none;
  padding: 5px 10px;
  margin: 0 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 500;
}
.Wrapper .NAVIGATION .navbar a:hover {
  color: #e61134;
  background-color: #f7caca;
}
.Wrapper .NAVIGATION .customer {
  grid-area: CUSTOMER-P;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.Wrapper .NAVIGATION .customer span {
  color: #fff;
  font-size: 0.8rem;
  margin-right: 20px;
  background-color: #f8adba;
  padding: 10px;
  border-radius: 5px;
}
.Wrapper .NAVIGATION .customer span a {
  color: #e61134;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 5px;
  border-radius: 5px;
  background-color: #aaa;
}
.Wrapper .HOME {
  grid-area: HOME-P;
  width: 100%;
  height: calc(100vh - 180px);
  background-image: linear-gradient(to right, #9f0e0e 0%, #bf5151 10%, #f09a9a 50%, #bf5151 90%, #9f0e0e 100%);
  top: -50px;
}
.Wrapper .HOME .main {
  width: 100%;
  height: 100%;
}
.Wrapper .HOME .main .carousel {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.Wrapper .HOME .main .carousel .slider {
  height: 100%;
  display: flex;
  width: 500%;
  transition: all 1.2s;
}
.Wrapper .HOME .main .carousel .slider section {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Wrapper .HOME .main .carousel .slider section img {
  width: 100%;
  height: 100%;
}
.Wrapper .HOME .main .carousel .controls .arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.Wrapper .HOME .main .carousel .controls .left {
  left: 2px;
  width: 50px;
  background-color: #000;
  padding: 12px;
  border-radius: 0 10px 10px 0;
  opacity: 0.4;
  z-index: 100;
}
.Wrapper .HOME .main .carousel .controls .right {
  right: 2px;
  width: 50px;
  background-color: #000;
  padding: 12px;
  border-radius: 10px 0 0 10px;
  opacity: 0.4;
  z-index: 100;
}
.Wrapper .HOME .main .carousel .controls span i {
  color: #fff;
}
.Wrapper .AUTOSCROLL {
  grid-area: AUTOSCROLL-P;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  display: grid;
  grid-template-areas: ". logo-part .";
  grid-template-columns: 20px 1fr 30px;
  grid-template-rows: auto;
  background-image: linear-gradient(to right, #9f0e0e 0%, #bf5151 10%, #f09a9a 50%, #bf5151 90%, #9f0e0e 100%);
}
.Wrapper .AUTOSCROLL .logos {
  grid-area: logo-part;
  width: 100%;
  margin: 5px;
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
  border-radius: 4px;
  background-color: #fbdfdf;
}
.Wrapper .AUTOSCROLL .logos .logos-slide {
  animation: 35s slide infinite linear;
  display: inline-block;
}
.Wrapper .AUTOSCROLL .logos .logos-slide img {
  margin: 0 40px;
}
.Wrapper .AUTOSCROLL .logos:hover .logos-slide {
  animation-play-state: paused;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.Wrapper .COMPANY {
  grid-area: COMPANY-P;
  display: grid;
  grid-template-areas: "ABOUT-P" "HISTORY-P" "CSR-P";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
}
.Wrapper .COMPANY .about-us {
  grid-area: ABOUT-P;
  display: grid;
  grid-template-areas: ". ABOUT .";
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: 1fr;
}
.Wrapper .COMPANY .about-us .inner {
  grid-area: ABOUT;
  width: 100%;
  display: grid;
  grid-template-areas: "ABOUT-P ABOUT-P ABOUT-P ABOUT-P" "UML-P UML-P UML-P UML-P" "COMP-P COMP-P CULT-P CULT-P" "VISION-P MISSION-P VAL-P VAL-P" "OFFER-P COMIT-P VAL-P VAL-P" "INFO-P INFO-P INFO-P INFO-P";
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto auto auto;
}
.Wrapper .COMPANY .about-us .inner .About-page {
  grid-area: ABOUT-P;
}
.Wrapper .COMPANY .about-us .inner .About-page h1 {
  font-size: 2rem;
  color: #585858;
  padding: 30px 10px 30px 0;
  font-weight: 500;
  padding-top: 60px;
}
.Wrapper .COMPANY .about-us .inner .uml-page {
  grid-area: UML-P;
  padding-bottom: 25px;
}
.Wrapper .COMPANY .about-us .inner .uml-page span {
  background-color: #e61134;
  color: #fff;
  padding: 5px 40px 5px 5px;
  border-radius: 0 15px 15px 0;
  font-weight: 600;
  font-size: 1.2rem;
}
.Wrapper .COMPANY .about-us .inner .company {
  grid-area: COMP-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0.8rem;
  padding: 20px 20px 20px 0;
}
.Wrapper .COMPANY .about-us .inner .company h3 {
  color: #e61134;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
.Wrapper .COMPANY .about-us .inner .company p {
  line-height: 25px;
}
.Wrapper .COMPANY .about-us .inner .culture {
  grid-area: CULT-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0.8rem;
  padding: 20px 20px 20px 0;
}
.Wrapper .COMPANY .about-us .inner .culture h3 {
  color: #e61134;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
.Wrapper .COMPANY .about-us .inner .culture p {
  line-height: 25px;
}
.Wrapper .COMPANY .about-us .inner .values-info {
  grid-area: VAL-P;
  display: grid;
  grid-template-areas: "VALUES-P";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  margin-bottom: 10px;
}
.Wrapper .COMPANY .about-us .inner .values-info .values {
  grid-area: VALUES-P;
  box-shadow: 2px 2px 5px rgba(241, 46, 46, 0.3);
  border-radius: 1px;
  margin-left: 30px;
  border-radius: 10px;
  background-color: #f8f4ef;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core {
  padding: 15px;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item {
  display: grid;
  grid-template-areas: "ltr-p icon-p" "ltr-p msg-p";
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .letter {
  grid-area: ltr-p;
  font-size: 2.8rem;
  font-weight: 700;
  border-right: 1px solid #585858;
  color: #d12440;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons {
  grid-area: icon-p;
  margin-left: 15px;
  color: #d12440;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons img {
  width: auto;
  height: 20px;
}
.Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .message {
  grid-area: msg-p;
  margin-left: 15px;
  color: #585858;
  font-style: italic;
  font-size: 0.8rem;
}
.Wrapper .COMPANY .about-us .inner .values-info .values:hover {
  box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
}
.Wrapper .COMPANY .about-us .inner .comit {
  grid-area: COMIT-P;
}
.Wrapper .COMPANY .about-us .inner .offer {
  grid-area: OFFER-P;
}
.Wrapper .COMPANY .about-us .inner .vision {
  grid-area: VISION-P;
}
.Wrapper .COMPANY .about-us .inner .mission {
  grid-area: MISSION-P;
}
.Wrapper .COMPANY .about-us .inner .info-page {
  grid-area: INFO-P;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 0;
  gap: 5px;
  flex-wrap: wrap;
}
.Wrapper .COMPANY .about-us .inner .info-page .info {
  background-color: #f8f4ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 250px;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(156, 3, 26, 0.3);
}
.Wrapper .COMPANY .about-us .inner .info-page .info i {
  color: #e61134;
}
.Wrapper .COMPANY .about-us .inner .info-page .info span {
  color: #808080;
  font-size: 0.8rem;
}
.Wrapper .COMPANY .about-us .inner .info-page .info .deco {
  font-size: 1.4rem;
  color: #0774aa;
}
.Wrapper .COMPANY .about-us .inner .info-page .info:hover {
  box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
}
.Wrapper .COMPANY .about-us .inner .info-page .info:hover i {
  color: #0774aa;
}
.Wrapper .COMPANY .about-us .inner .info-page .info:hover span {
  color: #808080;
  font-size: 0.8rem;
}
.Wrapper .COMPANY .about-us .inner .info-page .info:hover .deco {
  font-size: 1.4rem;
  color: #e61134;
}
.Wrapper .COMPANY .about-us .inner .inside {
  width: 100%;
  height: 210px;
  width: 330px;
  background-color: #e61134;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
  margin: 0 10px 10px 0;
}
.Wrapper .COMPANY .about-us .inner .inside h3 {
  font-weight: 500;
  color: #fff;
  padding: 10px 0;
}
.Wrapper .COMPANY .about-us .inner .inside i {
  color: #fff;
}
.Wrapper .COMPANY .about-us .inner .inside p {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .COMPANY .about-us .inner .inside:hover {
  box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  background-color: #0774aa;
}
.Wrapper .COMPANY .history-page {
  grid-area: HISTORY-P;
  width: 100%;
  background-color: #faf9f8;
  display: grid;
  grid-template-areas: ". HISTTORY-P .";
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: auto;
  padding: 20px;
  margin: 20px 0;
}
.Wrapper .COMPANY .history-page .history {
  grid-area: HISTTORY-P;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.Wrapper .COMPANY .history-page .history .history-sign {
  padding: 20px 0;
}
.Wrapper .COMPANY .history-page .history .history-sign span {
  background-color: #e61134;
  color: #fff;
  padding: 5px 50px 5px 0;
  border-radius: 0 15px 15px 0;
  font-weight: 600;
  font-size: 1.2rem;
}
.Wrapper .COMPANY .history-page .history .history-year {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single {
  width: 16.66%;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot hr {
  color: #e61134;
  width: 100%;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot i {
  color: #e61134;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year {
  padding-bottom: 10px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year span {
  color: #585858;
  font-weight: 600;
  font-size: 1.5rem;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content {
  padding: 10px 4px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-one span, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-two span {
  padding: 4px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year span {
  background-color: #a8eef3;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year-two span {
  background-color: #f7add6;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .second-year span {
  background-color: #b9f5b2;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .third-year span {
  background-color: #eee69c;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .forth-year span {
  background-color: #b8baeb;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .fifth-year span {
  background-color: #e9a086;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year span {
  background-color: #eaa3ec;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year-two span {
  background-color: #a3ecdd;
  font-size: 0.85rem;
  border-radius: 3px;
}
.Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-one, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-two {
  padding: 10px 0;
  color: #5d5c5c;
  font-size: 0.7rem;
}
.Wrapper .COMPANY .history-page .history .gallary {
  height: auto;
  width: 100%;
}
.Wrapper .COMPANY .history-page .history .gallary img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.Wrapper .COMPANY .csr {
  grid-area: CSR-P;
  width: 100%;
  display: grid;
  grid-template-areas: ". CSR-P .";
  grid-template-columns: 15% 70% 15%;
}
.Wrapper .COMPANY .csr .csr-inner {
  grid-area: CSR-P;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #e61134;
  margin-bottom: 30px;
  border-radius: 3px;
}
.Wrapper .COMPANY .csr .csr-inner .csr-hist {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Wrapper .COMPANY .csr .csr-inner .csr-hist h2 {
  font-size: 2.5rem;
  color: #fff;
  padding: 30px 10px;
}
.Wrapper .COMPANY .csr .csr-inner .csr-hist p {
  margin: 10px 0;
  color: #fff;
  font-size: 1rem;
  width: 95%;
}
.Wrapper .COMPANY .csr .csr-inner .csr-images {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.Wrapper .COMPANY .csr .csr-inner .csr-images img {
  width: 30%;
  height: 70%;
  margin: 30px;
  border-radius: 3px;
}
.Wrapper .PRODUCTS {
  grid-area: PRODUCTS-P;
  display: grid;
  grid-template-areas: ". PROD-P .";
  grid-template-columns: 13% 74% 13%;
  grid-template-rows: auto;
}
.Wrapper .PRODUCTS .brand-product {
  grid-area: PROD-P;
  width: 100%;
  padding: 10px;
  padding-top: 60px;
}
.Wrapper .PRODUCTS .brand-product .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.Wrapper .PRODUCTS .brand-product .heading span {
  color: #e61134;
}
.Wrapper .PRODUCTS .brand-product .heading h1 {
  color: #e61134;
  padding-bottom: 20px;
}
.Wrapper .PRODUCTS .brand-product .container {
  width: 100%;
  margin: 0 auto;
}
.Wrapper .PRODUCTS .brand-product .product-filter-btns {
  padding: 5px 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 30px 10px;
  background-color: #f8f4ef;
  margin-bottom: 20px;
  border-radius: 15px;
}
.Wrapper .PRODUCTS .brand-product .btn-filter {
  display: inline-flex;
  padding: 8px 20px;
  border-radius: 15px;
  cursor: pointer;
  color: var(--black);
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.5s ease-in;
  background: #aaa;
}
.Wrapper .PRODUCTS .brand-product .btn-filter.mixitup-control-active {
  transition: all 0.5s ease-in;
  background: #e61134;
  color: var(--white);
}
.Wrapper .PRODUCTS .brand-product .product-filter-items {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 15px;
  border-radius: 8px;
  background-color: #f8f4ef;
}
.Wrapper .PRODUCTS .brand-product .mix {
  background: var(--card-bg);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: 3px 3px 6px rgba(130, 2, 21, 0.3);
  padding: 10px;
  background-color: #fff;
}
.Wrapper .PRODUCTS .brand-product .item-top {
  padding: 10px 0 5px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.Wrapper .PRODUCTS .brand-product .item-top img {
  width: 100%;
  height: 100%;
}
.Wrapper .PRODUCTS .brand-product .item-bottom {
  padding: 5px 0;
}
.Wrapper .PRODUCTS .brand-product .item-heading {
  font-size: 0.8rem;
  color: var(--black);
  font-weight: 600;
  color: dodgerblue;
  text-align: center;
}
.Wrapper .PRODUCTS .brand-product .item-subheading {
  font-size: 0.8rem;
  color: rgb(97, 97, 97);
  padding: 5px 0;
  color: dodgerblue;
  font-weight: 400;
  text-align: center;
}
@keyframes down {
  0% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
.Wrapper .RESOURCES {
  grid-area: RESOURCES-P;
  display: grid;
  grid-template-areas: ". RESOURCE-P .";
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: auto;
  padding-top: 70px;
}
.Wrapper .RESOURCES .resources-page {
  grid-area: RESOURCE-P;
  display: flex;
  flex-direction: column;
  background-color: #f8f4ef;
}
.Wrapper .RESOURCES .resources-page .title {
  padding: 30px 0;
}
.Wrapper .RESOURCES .resources-page .title h1 {
  text-align: center;
  color: #e61134;
  font-size: 1.8rem;
}
.Wrapper .RESOURCES .resources-page .container {
  max-width: 95%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.Wrapper .RESOURCES .resources-page .container .main-video-container {
  flex: 1 1 700px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px;
}
.Wrapper .RESOURCES .resources-page .container .main-video-container .main-video {
  margin-bottom: 7px;
  border-radius: 5px;
  width: 100%;
}
.Wrapper .RESOURCES .resources-page .container .main-video-container .main-vid-title {
  font-size: 20px;
  color: #444;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container {
  flex: 1 1 350px;
  height: 485px;
  overflow-y: scroll;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container::-webkit-scrollbar {
  width: 10px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 5px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 5px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: #eee;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list:last-child {
  margin-bottom: 0;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list.active {
  background-color: #444;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list.active .list-title {
  color: #fff;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list .list-video {
  width: 100px;
  border-radius: 5px;
}
.Wrapper .RESOURCES .resources-page .container .video-list-container .list .list-title {
  font-size: 17px;
  color: #444;
}
@media (max-width: 1200px) {
  .Wrapper .RESOURCES .resources-page .container {
    margin: 0;
  }
}
@media (max-width: 450px) {
  .Wrapper .RESOURCES .resources-page .container .main-video-container .main-vid-title {
    font-size: 15px;
    text-align: center;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list {
    flex-flow: column;
    gap: 10px;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-video {
    width: 100%;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-title {
    font-size: 15px;
    text-align: center;
  }
}
.Wrapper .BLOG {
  grid-area: BLOG-P;
  display: grid;
  grid-template-areas: ". MAP-P .";
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: auto;
  background-color: #e61134;
  margin-top: 20px;
  padding-top: 100px;
}
.Wrapper .BLOG .map-address {
  grid-area: MAP-P;
  display: grid;
  grid-template-areas: "TOP-P TOP-P TOP-P" "CONT-P MAP-P ADD-P";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
}
.Wrapper .BLOG .map-address .top {
  grid-area: TOP-P;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
.Wrapper .BLOG .map-address .top h1 {
  text-align: center;
  color: #fff;
  padding: 25px 0;
}
.Wrapper .BLOG .map-address .contact {
  grid-area: CONT-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .BLOG .map-address .contact .kisumu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .BLOG .map-address .contact .kisumu h1 {
  color: #bfbfbf;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .contact .kisumu span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .contact .nakuru {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.Wrapper .BLOG .map-address .contact .nakuru h1 {
  color: #bfbfbf;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .contact .nakuru span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .contact .customer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.Wrapper .BLOG .map-address .contact .customer h1 {
  color: #bfbfbf;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .contact .customer span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .map {
  grid-area: MAP-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 10px;
}
.Wrapper .BLOG .map-address .map img {
  width: 320px;
  height: auto;
}
.Wrapper .BLOG .map-address .address {
  grid-area: ADD-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.Wrapper .BLOG .map-address .address .nakuru {
  display: flex;
  flex-direction: column;
  background-color: #000;
  width: 100%;
  padding: 5px 20px;
}
.Wrapper .BLOG .map-address .address .nakuru h1 {
  color: #e61134;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .address .nakuru span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .address .kisumu {
  display: flex;
  flex-direction: column;
  background-color: #000;
  width: 100%;
  padding: 5px 20px;
}
.Wrapper .BLOG .map-address .address .kisumu h1 {
  color: #e61134;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .address .kisumu span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .address .nairobi {
  display: flex;
  flex-direction: column;
  background-color: #000;
  width: 100%;
  padding: 5px 20px;
}
.Wrapper .BLOG .map-address .address .nairobi h1 {
  color: #e61134;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .address .nairobi span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .BLOG .map-address .address .webuye {
  display: flex;
  flex-direction: column;
  background-color: #000;
  width: 100%;
  padding: 5px 20px;
}
.Wrapper .BLOG .map-address .address .webuye h1 {
  color: #e61134;
  font-size: 1.2rem;
}
.Wrapper .BLOG .map-address .address .webuye span {
  color: #fff;
  font-size: 0.7rem;
}
.Wrapper .CONTACT {
  grid-area: CONTACT-P;
  display: grid;
  grid-template-areas: ". CONTACT-P .";
  grid-template-columns: 15% 70% 15%;
  grid-template-rows: auto;
  background-color: #e61134;
}
.Wrapper .CONTACT .contact {
  grid-area: CONTACT-P;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid #b3b3b3;
  margin-top: 10px;
}
.Wrapper .CONTACT .contact .subscribe {
  width: 100%;
  display: grid;
  grid-template-areas: "MESSAGE-P SEND-P";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 30px 10px;
}
.Wrapper .CONTACT .contact .subscribe .message {
  grid-area: MESSAGE-P;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Wrapper .CONTACT .contact .subscribe .message h3 {
  font-size: 1.8rem;
  color: #fff;
}
.Wrapper .CONTACT .contact .subscribe .message p {
  color: #fff;
  font-size: 1.2rem;
}
.Wrapper .CONTACT .contact .subscribe .send {
  grid-area: SEND-P;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Wrapper .CONTACT .contact .subscribe .send form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.Wrapper .CONTACT .contact .subscribe .send form input[type=email] {
  width: 400px;
  outline: none;
  height: 40px;
  margin-right: 10px;
  text-indent: 5px;
}
.Wrapper .CONTACT .contact .subscribe .send form input[type=submit] {
  width: 120px;
  outline: none;
  height: 40px;
  color: #fff;
  background-color: #e9a086;
  border: none;
}
.Wrapper .CONTACT .contact .subscribe .send form .errors {
  font-size: 0.7rem;
  color: #1e94a8;
}
.Wrapper .CONTACT .contact .content {
  display: grid;
  grid-template-areas: "UML-P COMP-P SUST-P CARR-P";
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  border-top: 1px solid #b8b8b8;
}
.Wrapper .CONTACT .contact .content .united {
  grid-area: UML-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .CONTACT .contact .content .united h4 {
  color: #fff;
  padding: 10px 0;
  font-size: 1.2rem;
}
.Wrapper .CONTACT .contact .content .united a {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  line-height: 15px;
}
.Wrapper .CONTACT .contact .content .united .social i {
  color: #fff;
  cursor: pointer;
}
.Wrapper .CONTACT .contact .content .united .social {
  padding: 10px 0;
}
.Wrapper .CONTACT .contact .content .company {
  grid-area: COMP-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .CONTACT .contact .content .company h4 {
  color: #fff;
  padding: 10px 0;
  font-size: 1.2rem;
}
.Wrapper .CONTACT .contact .content .company a {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  line-height: 15px;
}
.Wrapper .CONTACT .contact .content .sustain {
  grid-area: SUST-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .CONTACT .contact .content .sustain h4 {
  color: #fff;
  padding: 10px 0;
  font-size: 1.2rem;
}
.Wrapper .CONTACT .contact .content .sustain a {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  line-height: 15px;
}
.Wrapper .CONTACT .contact .content .carrier {
  grid-area: CARR-P;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.Wrapper .CONTACT .contact .content .carrier h4 {
  color: #fff;
  padding: 10px 0;
  font-size: 1.2rem;
}
.Wrapper .CONTACT .contact .content .carrier a {
  text-decoration: none;
  color: #fff;
  font-size: 0.7rem;
  line-height: 15px;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .Wrapper {
    display: grid;
    grid-template-areas: "NAVIGATION-P" "HOME-P" "AUTOSCROLL-P" "COMPANY-P" "PRODUCTS-P" "RESOURCES-P" "BLOG-P" "CONTACT-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION {
    grid-area: NAVIGATION-P;
    display: grid;
    grid-template-areas: "LOGO-P CUSTOMER-P" "NAVBAR-P NAVBAR-P";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    background-color: #e61134;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION .logo {
    grid-area: LOGO-P;
  }
  .Wrapper .NAVIGATION .logo img {
    height: 50px;
    width: auto;
  }
  .Wrapper .NAVIGATION .logo .swing-logo:hover {
    transition: 2s ease;
    transform: rotateX(360deg);
    cursor: pointer;
  }
  .Wrapper .NAVIGATION .navbar {
    grid-area: NAVBAR-P;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
  }
  .Wrapper .NAVIGATION .navbar a {
    text-decoration: none;
    padding: 4px 8px;
    margin: 0 6px;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
  }
  .Wrapper .NAVIGATION .navbar a:hover {
    color: #e61134;
    background-color: #f7caca;
  }
  .Wrapper .NAVIGATION .customer {
    grid-area: CUSTOMER-P;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .Wrapper .NAVIGATION .customer span {
    color: #fff;
    font-size: 0.8rem;
    margin-right: 20px;
    background-color: #f8adba;
    padding: 10px;
    border-radius: 5px;
  }
  .Wrapper .NAVIGATION .customer span a {
    color: #e61134;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    background-color: #eee;
  }
  .Wrapper .HOME {
    grid-area: HOME-P;
    width: 100%;
    height: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
    top: -50px;
  }
  .Wrapper .HOME .main {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .Wrapper .HOME .main .carousel .slider {
    height: 100%;
    display: flex;
    width: 500%;
    transition: all 1.2s;
  }
  .Wrapper .HOME .main .carousel .slider section {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .HOME .main .carousel .slider section img {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel .controls .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
  }
  .Wrapper .HOME .main .carousel .controls .left {
    left: 2px;
    width: 50px;
    background-color: #000;
    padding: 12px;
    border-radius: 0 10px 10px 0;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls .right {
    right: 2px;
    width: 50px;
    background-color: #000;
    padding: 12px;
    border-radius: 10px 0 0 10px;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls span i {
    color: #fff;
  }
  .Wrapper .AUTOSCROLL {
    grid-area: AUTOSCROLL-P;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    display: grid;
    grid-template-areas: ". logo-part .";
    grid-template-columns: 20px 1fr 30px;
    grid-template-rows: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
  }
  .Wrapper .AUTOSCROLL .logos {
    grid-area: logo-part;
    width: 100%;
    margin: 5px;
    overflow: hidden;
    padding: 15px 0;
    white-space: nowrap;
    border-radius: 4px;
    background-color: #fbdfdf;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide {
    animation: 35s slide infinite linear;
    display: inline-block;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide img {
    margin: 0 40px;
  }
  .Wrapper .AUTOSCROLL .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .Wrapper .COMPANY {
    grid-area: COMPANY-P;
    display: grid;
    grid-template-areas: "ABOUT-P" "HISTORY-P" "CSR-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .Wrapper .COMPANY .about-us {
    grid-area: ABOUT-P;
    display: grid;
    grid-template-areas: ". ABOUT .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: 1fr;
  }
  .Wrapper .COMPANY .about-us .inner {
    grid-area: ABOUT;
    width: 100%;
    display: grid;
    grid-template-areas: "ABOUT-P ABOUT-P" "UML-P UML-P" "COMP-P CULT-P" "VISION-P MISSION-P" "OFFER-P COMIT-P" "VAL-P VAL-P" "INFO-P INFO-P";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 230px 230px auto auto;
    padding: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .About-page {
    grid-area: ABOUT-P;
  }
  .Wrapper .COMPANY .about-us .inner .About-page h1 {
    font-size: 2.5rem;
    color: #585858;
    padding: 30px 10px 30px 0;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page {
    grid-area: UML-P;
    padding-bottom: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 40px 5px 5px;
    border-radius: 0 15px 15px 0;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .about-us .inner .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .company h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .company p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .culture {
    grid-area: CULT-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .culture h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .culture p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info {
    width: 100%;
    grid-area: VAL-P;
    display: grid;
    grid-template-areas: "VALUES-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background-color: #f8f4ef;
    box-shadow: 2px 2px 5px rgba(241, 46, 46, 0.3);
    border-radius: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values {
    grid-area: VALUES-P;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core {
    padding: 15px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item {
    display: grid;
    grid-template-areas: "ltr-p icon-p" "ltr-p msg-p";
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .letter {
    grid-area: ltr-p;
    font-size: 2.8rem;
    font-weight: 700;
    border-right: 1px solid #585858;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons {
    grid-area: icon-p;
    margin-left: 15px;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons img {
    width: auto;
    height: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .message {
    grid-area: msg-p;
    margin-left: 15px;
    color: #585858;
    font-style: italic;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .comit {
    grid-area: COMIT-P;
  }
  .Wrapper .COMPANY .about-us .inner .offer {
    grid-area: OFFER-P;
  }
  .Wrapper .COMPANY .about-us .inner .vision {
    grid-area: VISION-P;
  }
  .Wrapper .COMPANY .about-us .inner .mission {
    grid-area: MISSION-P;
  }
  .Wrapper .COMPANY .about-us .inner .info-page {
    grid-area: INFO-P;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
    gap: 5px;
    flex-wrap: wrap;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info {
    background-color: #f8f4ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 250px;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(156, 3, 26, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info i {
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info .deco {
    font-size: 1.4rem;
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover i {
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover .deco {
    font-size: 1.4rem;
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .inside {
    width: 100%;
    height: 210px;
    width: 400px;
    background-color: #e61134;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    margin: 15px;
  }
  .Wrapper .COMPANY .about-us .inner .inside h3 {
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .COMPANY .about-us .inner .inside i {
    color: #fff;
  }
  .Wrapper .COMPANY .about-us .inner .inside p {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .about-us .inner .inside:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
    background-color: #0774aa;
  }
  .Wrapper .COMPANY .history-page {
    grid-area: HISTORY-P;
    width: 100%;
    background-color: #faf9f8;
    display: grid;
    grid-template-areas: ". HISTTORY-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    padding: 10px;
    margin: 10px 0;
  }
  .Wrapper .COMPANY .history-page .history {
    grid-area: HISTTORY-P;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .Wrapper .COMPANY .history-page .history .history-sign {
    padding: 20px 0;
  }
  .Wrapper .COMPANY .history-page .history .history-sign span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 50px 5px 0;
    border-radius: 0 15px 15px 0;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single {
    width: 16.66%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot hr {
    color: #e61134;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot i {
    color: #e61134;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year {
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year span {
    color: #585858;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content {
    padding: 10px 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-one span, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-two span {
    padding: 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year span {
    background-color: #a8eef3;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year-two span {
    background-color: #f7add6;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .second-year span {
    background-color: #b9f5b2;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .third-year span {
    background-color: #eee69c;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .forth-year span {
    background-color: #b8baeb;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .fifth-year span {
    background-color: #e9a086;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year span {
    background-color: #eaa3ec;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year-two span {
    background-color: #a3ecdd;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-one, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-two {
    padding: 10px 0;
    color: #5d5c5c;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .history-page .history .gallary {
    height: auto;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .gallary img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .Wrapper .COMPANY .csr {
    grid-area: CSR-P;
    width: 100%;
    display: grid;
    grid-template-areas: ". CSR-P .";
    grid-template-columns: 10px 1fr 10px;
  }
  .Wrapper .COMPANY .csr .csr-inner {
    grid-area: CSR-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e61134;
    margin-bottom: 30px;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist h2 {
    font-size: 2.5rem;
    color: #fff;
    padding: 30px 10px;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist p {
    margin: 10px 0;
    color: #fff;
    font-size: 1rem;
    width: 95%;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images img {
    width: 333px;
    height: 210px;
    margin: 30px;
    border-radius: 3px;
  }
  .Wrapper .PRODUCTS {
    grid-area: PRODUCTS-P;
    display: grid;
    grid-template-areas: ". PROD-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .PRODUCTS .brand-product {
    grid-area: PROD-P;
    width: 100%;
  }
  .Wrapper .PRODUCTS .brand-product .product-filter-items {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    background-color: #f8f4ef;
  }
  .Wrapper .RESOURCES {
    grid-area: RESOURCES-P;
    display: grid;
    grid-template-areas: ". RESOURCE-P .";
    grid-template-columns: 10px 1fr 1px;
    grid-template-rows: auto;
  }
  .Wrapper .RESOURCES .resources-page {
    grid-area: RESOURCE-P;
    display: flex;
    flex-direction: column;
    background-color: #efefef;
  }
  .Wrapper .RESOURCES .resources-page .title {
    padding: 30px 0;
  }
  .Wrapper .RESOURCES .resources-page .title h1 {
    text-align: center;
    color: #e61134;
    font-size: 1.8rem;
  }
  .Wrapper .RESOURCES .resources-page .container {
    margin: 0;
  }
  .Wrapper .BLOG {
    grid-area: BLOG-P;
    display: grid;
    grid-template-areas: ". MAP-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    background-color: #e61134;
    margin-top: 20px;
  }
  .Wrapper .BLOG .map-address {
    grid-area: MAP-P;
    display: grid;
    grid-template-areas: "TOP-P TOP-P TOP-P" "CONT-P MAP-P ADD-P";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .Wrapper .BLOG .map-address .top {
    grid-area: TOP-P;
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 20px;
  }
  .Wrapper .BLOG .map-address .top h1 {
    text-align: center;
    color: #fff;
    padding: 20px 0;
  }
  .Wrapper .BLOG .map-address .contact {
    grid-area: CONT-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .BLOG .map-address .contact .kisumu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .BLOG .map-address .contact .kisumu h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .contact .kisumu span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .contact .nakuru {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
  }
  .Wrapper .BLOG .map-address .contact .nakuru h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .contact .nakuru span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .contact .customer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
  }
  .Wrapper .BLOG .map-address .contact .customer h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .contact .customer span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .map {
    grid-area: MAP-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 10px;
  }
  .Wrapper .BLOG .map-address .map img {
    width: 320px;
    height: auto;
  }
  .Wrapper .BLOG .map-address .address {
    grid-area: ADD-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  .Wrapper .BLOG .map-address .address .nakuru {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nakuru h1 {
    color: #e61134;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .address .nakuru span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .address .kisumu {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .kisumu h1 {
    color: #e61134;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .address .kisumu span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .address .nairobi {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nairobi h1 {
    color: #e61134;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .address .nairobi span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .address .webuye {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .webuye h1 {
    color: #e61134;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .address .webuye span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .CONTACT {
    grid-area: CONTACT-P;
    display: grid;
    grid-template-areas: ". CONTACT-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    background-color: #e61134;
  }
  .Wrapper .CONTACT .contact {
    grid-area: CONTACT-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .subscribe {
    width: 100%;
    display: grid;
    grid-template-areas: "MESSAGE-P SEND-P";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 30px 10px;
  }
  .Wrapper .CONTACT .contact .subscribe .message {
    grid-area: MESSAGE-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .message h3 {
    font-size: 1.8rem;
    color: #fff;
  }
  .Wrapper .CONTACT .contact .subscribe .message p {
    color: #fff;
    font-size: 1.2rem;
  }
  .Wrapper .CONTACT .contact .subscribe .send {
    grid-area: SEND-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .send form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=email] {
    width: 3fr;
    outline: none;
    height: 40px;
    margin-right: 10px;
    text-indent: 5px;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=submit] {
    width: 1fr;
    outline: none;
    height: 40px;
    color: #fff;
    background-color: #e9a086;
    border: none;
  }
  .Wrapper .CONTACT .contact .content {
    display: grid;
    grid-template-areas: "UML-P COMP-P SUST-P CARR-P";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    border-top: 1px solid #b8b8b8;
  }
  .Wrapper .CONTACT .contact .content .united {
    grid-area: UML-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .CONTACT .contact .content .united h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .united a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .united .social i {
    color: #fff;
    cursor: pointer;
  }
  .Wrapper .CONTACT .contact .content .united .social {
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .CONTACT .contact .content .company h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .company a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .sustain {
    grid-area: SUST-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .CONTACT .contact .content .sustain h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .sustain a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .carrier {
    grid-area: CARR-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .CONTACT .contact .content .carrier h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .carrier a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .Wrapper {
    display: grid;
    grid-template-areas: "NAVIGATION-P" "HOME-P" "AUTOSCROLL-P" "COMPANY-P" "PRODUCTS-P" "RESOURCES-P" "BLOG-P" "CONTACT-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION {
    grid-area: NAVIGATION-P;
    display: grid;
    grid-template-areas: "LOGO-P CUSTOMER-P" "NAVBAR-P NAVBAR-P";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    background-color: #e61134;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION .logo {
    grid-area: LOGO-P;
  }
  .Wrapper .NAVIGATION .logo img {
    height: 50px;
    width: auto;
  }
  .Wrapper .NAVIGATION .logo .swing-logo:hover {
    transition: 2s ease;
    transform: rotateX(360deg);
    cursor: pointer;
  }
  .Wrapper .NAVIGATION .navbar {
    grid-area: NAVBAR-P;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
  }
  .Wrapper .NAVIGATION .navbar a {
    text-decoration: none;
    padding: 8px;
    margin: 0 6px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .Wrapper .NAVIGATION .navbar a:hover {
    color: #e61134;
    background-color: #f7caca;
  }
  .Wrapper .NAVIGATION .customer {
    grid-area: CUSTOMER-P;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .Wrapper .NAVIGATION .customer span {
    color: #fff;
    font-size: 0.6rem;
    margin-right: 20px;
    background-color: #f8adba;
    padding: 10px;
    border-radius: 5px;
  }
  .Wrapper .NAVIGATION .customer span a {
    color: #e61134;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    background-color: #eee;
  }
  .Wrapper .HOME {
    grid-area: HOME-P;
    width: 100%;
    height: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
    top: -50px;
  }
  .Wrapper .HOME .main {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .Wrapper .HOME .main .carousel .slider {
    height: 100%;
    display: flex;
    width: 500%;
    transition: all 1.2s;
  }
  .Wrapper .HOME .main .carousel .slider section {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .HOME .main .carousel .slider section img {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel .controls .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
  }
  .Wrapper .HOME .main .carousel .controls .left {
    left: 2px;
    width: 50px;
    background-color: #000;
    padding: 12px;
    border-radius: 0 10px 10px 0;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls .right {
    right: 2px;
    width: 50px;
    background-color: #000;
    padding: 12px;
    border-radius: 10px 0 0 10px;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls span i {
    color: #fff;
  }
  .Wrapper .AUTOSCROLL {
    grid-area: AUTOSCROLL-P;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    display: grid;
    grid-template-areas: ". logo-part .";
    grid-template-columns: 10px 1fr 25px;
    grid-template-rows: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
  }
  .Wrapper .AUTOSCROLL .logos {
    grid-area: logo-part;
    width: 100%;
    margin: 5px;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    border-radius: 4px;
    background-color: #fbdfdf;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide {
    animation: 35s slide infinite linear;
    display: inline-block;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide img {
    margin: 0 30px;
  }
  .Wrapper .AUTOSCROLL .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .Wrapper .COMPANY {
    grid-area: COMPANY-P;
    display: grid;
    grid-template-areas: "ABOUT-P" "HISTORY-P" "CSR-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .Wrapper .COMPANY .about-us {
    grid-area: ABOUT-P;
    display: grid;
    grid-template-areas: ". ABOUT .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: 1fr;
  }
  .Wrapper .COMPANY .about-us .inner {
    grid-area: ABOUT;
    width: 100%;
    display: grid;
    grid-template-areas: "ABOUT-P ABOUT-P" "UML-P UML-P" "COMP-P CULT-P" "VISION-P MISSION-P" "OFFER-P COMIT-P" "VAL-P VAL-P" "INFO-P INFO-P";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto 230px 230px auto auto;
    padding: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .About-page {
    grid-area: ABOUT-P;
  }
  .Wrapper .COMPANY .about-us .inner .About-page h1 {
    font-size: 2.5rem;
    color: #585858;
    padding: 30px 10px 30px 0;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page {
    grid-area: UML-P;
    padding-bottom: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 40px 5px 5px;
    border-radius: 0 15px 15px 0;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .about-us .inner .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .company h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .company p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .culture {
    grid-area: CULT-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .culture h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .culture p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info {
    width: 100%;
    grid-area: VAL-P;
    display: grid;
    grid-template-areas: "VALUES-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background-color: #f8f4ef;
    box-shadow: 2px 2px 5px rgba(241, 46, 46, 0.3);
    border-radius: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values {
    grid-area: VALUES-P;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core {
    padding: 15px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item {
    display: grid;
    grid-template-areas: "ltr-p icon-p" "ltr-p msg-p";
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .letter {
    grid-area: ltr-p;
    font-size: 2.8rem;
    font-weight: 700;
    border-right: 1px solid #585858;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons {
    grid-area: icon-p;
    margin-left: 15px;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons img {
    width: auto;
    height: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .message {
    grid-area: msg-p;
    margin-left: 15px;
    color: #585858;
    font-style: italic;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .comit {
    grid-area: COMIT-P;
  }
  .Wrapper .COMPANY .about-us .inner .offer {
    grid-area: OFFER-P;
  }
  .Wrapper .COMPANY .about-us .inner .vision {
    grid-area: VISION-P;
  }
  .Wrapper .COMPANY .about-us .inner .mission {
    grid-area: MISSION-P;
  }
  .Wrapper .COMPANY .about-us .inner .info-page {
    grid-area: INFO-P;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
    gap: 5px;
    flex-wrap: wrap;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info {
    background-color: #f8f4ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 250px;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(156, 3, 26, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info i {
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info .deco {
    font-size: 1.4rem;
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover i {
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover .deco {
    font-size: 1.4rem;
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .inside {
    width: 100%;
    height: 210px;
    background-color: #e61134;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .inside h3 {
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .COMPANY .about-us .inner .inside i {
    color: #fff;
  }
  .Wrapper .COMPANY .about-us .inner .inside p {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .about-us .inner .inside:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
    background-color: #0774aa;
  }
  .Wrapper .COMPANY .history-page {
    grid-area: HISTORY-P;
    width: 100%;
    background-color: #faf9f8;
    display: grid;
    grid-template-areas: ". HISTTORY-P .";
    grid-template-columns: 15% 70% 15%;
    grid-template-rows: auto;
    padding: 10px;
    margin: 10px 0;
  }
  .Wrapper .COMPANY .history-page .history {
    grid-area: HISTTORY-P;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .Wrapper .COMPANY .history-page .history .history-sign {
    padding: 20px 0;
  }
  .Wrapper .COMPANY .history-page .history .history-sign span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 50px 5px 0;
    border-radius: 0 15px 15px 0;
    font-weight: 600;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single {
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot hr {
    color: #e61134;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot i {
    color: #e61134;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year {
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year span {
    color: #585858;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content {
    padding: 10px 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-one span, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-two span {
    padding: 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year span {
    background-color: #a8eef3;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year-two span {
    background-color: #f7add6;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .second-year span {
    background-color: #b9f5b2;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .third-year span {
    background-color: #eee69c;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .forth-year span {
    background-color: #b8baeb;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .fifth-year span {
    background-color: #e9a086;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year span {
    background-color: #eaa3ec;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year-two span {
    background-color: #a3ecdd;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-one, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-two {
    padding: 10px 0;
    color: #5d5c5c;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .history-page .history .gallary {
    height: auto;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .gallary img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .Wrapper .COMPANY .csr {
    grid-area: CSR-P;
    width: 100%;
    display: grid;
    grid-template-areas: ". CSR-P .";
    grid-template-columns: 15% 70% 15%;
  }
  .Wrapper .COMPANY .csr .csr-inner {
    grid-area: CSR-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e61134;
    margin-bottom: 30px;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist h2 {
    font-size: 2.5rem;
    color: #fff;
    padding: 30px 10px;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist p {
    margin: 10px 0;
    color: #fff;
    font-size: 1rem;
    width: 95%;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images img {
    width: 95%;
    height: auto;
    margin: 30px;
    border-radius: 3px;
  }
  .Wrapper .PRODUCTS {
    grid-area: PRODUCTS-P;
    display: grid;
    grid-template-areas: ". PROD-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .PRODUCTS .brand-product {
    grid-area: PROD-P;
    width: 100%;
  }
  .Wrapper .PRODUCTS .brand-product .product-filter-items {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    background-color: #f8f4ef;
  }
  .Wrapper .RESOURCES {
    grid-area: RESOURCES-P;
    display: grid;
    grid-template-areas: ". RESOURCE-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .RESOURCES .resources-page {
    grid-area: RESOURCE-P;
    display: flex;
    flex-direction: column;
    background-color: #efefef;
  }
  .Wrapper .RESOURCES .resources-page .title {
    padding: 30px 0;
  }
  .Wrapper .RESOURCES .resources-page .title h1 {
    text-align: center;
    color: #e61134;
    font-size: 1.8rem;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .main-vid-title {
    font-size: 15px;
    text-align: center;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list {
    flex-flow: column;
    gap: 10px;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-video {
    width: 100%;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-title {
    font-size: 15px;
    text-align: center;
  }
  .Wrapper .BLOG {
    grid-area: BLOG-P;
    display: grid;
    grid-template-areas: ". MAP-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    background-color: #e61134;
    margin-top: 20px;
  }
  .Wrapper .BLOG .map-address {
    grid-area: MAP-P;
    display: grid;
    grid-template-areas: "TOP-P" "CONT-P" "MAP-P" "ADD-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .Wrapper .BLOG .map-address .top {
    grid-area: TOP-P;
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 20px;
  }
  .Wrapper .BLOG .map-address .top h1 {
    text-align: center;
    color: #fff;
    padding: 20px 0;
  }
  .Wrapper .BLOG .map-address .contact {
    grid-area: CONT-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .contact .kisumu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .kisumu h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .kisumu span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .nakuru {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .nakuru h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .nakuru span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .customer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .customer h1 {
    color: #bfbfbf;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .contact .customer span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .map {
    grid-area: MAP-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .map img {
    width: 320px;
    height: auto;
  }
  .Wrapper .BLOG .map-address .address {
    grid-area: ADD-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .address .nakuru {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nakuru h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nakuru span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .kisumu {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .kisumu h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .kisumu span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nairobi {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nairobi h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nairobi span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .webuye {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .webuye h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .webuye span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .CONTACT {
    grid-area: CONTACT-P;
    display: grid;
    grid-template-areas: ". CONTACT-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    background-color: #e61134;
  }
  .Wrapper .CONTACT .contact {
    grid-area: CONTACT-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .subscribe {
    width: 100%;
    display: grid;
    grid-template-areas: "MESSAGE-P" "SEND-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 30px 10px;
  }
  .Wrapper .CONTACT .contact .subscribe .message {
    grid-area: MESSAGE-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .message h3 {
    font-size: 1.8rem;
    color: #fff;
  }
  .Wrapper .CONTACT .contact .subscribe .message p {
    color: #fff;
    font-size: 1.2rem;
  }
  .Wrapper .CONTACT .contact .subscribe .send {
    grid-area: SEND-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .send form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=email] {
    width: 350px;
    outline: none;
    height: 40px;
    margin-right: 10px;
    text-indent: 5px;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=submit] {
    width: 120px;
    outline: none;
    height: 40px;
    color: #fff;
    background-color: #e9a086;
    border: none;
  }
  .Wrapper .CONTACT .contact .content {
    display: grid;
    grid-template-areas: "UML-P" "COMP-P" "SUST-P" "CARR-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    border-top: 1px solid #b8b8b8;
  }
  .Wrapper .CONTACT .contact .content .united {
    grid-area: UML-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .united h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .united a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .united .social i {
    color: #fff;
    cursor: pointer;
  }
  .Wrapper .CONTACT .contact .content .united .social {
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .company h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .company a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .sustain {
    grid-area: SUST-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .sustain h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .sustain a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .carrier {
    grid-area: CARR-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .carrier h4 {
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .carrier a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
}
@media (max-width: 768px) {
  .Wrapper {
    display: grid;
    grid-template-areas: "NAVIGATION-P" "HOME-P" "AUTOSCROLL-P" "COMPANY-P" "PRODUCTS-P" "RESOURCES-P" "BLOG-P" "CONTACT-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION {
    grid-area: NAVIGATION-P;
    width: 100%;
    display: grid;
    grid-template-areas: "LOGO-P CUSTOMER-P" "NAVBAR-P NAVBAR-P";
    grid-template-columns: 1fr auto;
    grid-template-rows: 40px auto;
    background-color: #e61134;
    position: sticky;
    top: 0;
  }
  .Wrapper .NAVIGATION .logo {
    grid-area: LOGO-P;
  }
  .Wrapper .NAVIGATION .logo img {
    height: 35px;
    width: auto;
  }
  .Wrapper .NAVIGATION .logo .swing-logo:hover {
    transition: 2s ease;
    transform: rotateX(360deg);
    cursor: pointer;
  }
  .Wrapper .NAVIGATION .navbar {
    grid-area: NAVBAR-P;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 3px;
    margin-top: 5px;
  }
  .Wrapper .NAVIGATION .navbar a {
    text-decoration: none;
    padding: 8px;
    margin: 0 6px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.6rem;
  }
  .Wrapper .NAVIGATION .navbar a:hover {
    color: #e61134;
    background-color: #f7caca;
  }
  .Wrapper .NAVIGATION .customer {
    grid-area: CUSTOMER-P;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .Wrapper .NAVIGATION .customer span {
    color: #fff;
    font-size: 0.5rem;
    margin-right: 20px;
    background-color: #f8adba;
    padding: 10px;
    border-radius: 5px;
  }
  .Wrapper .NAVIGATION .customer span a {
    color: #e61134;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    background-color: #eee;
  }
  .Wrapper .HOME {
    grid-area: HOME-P;
    width: 100%;
    height: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
    top: -50px;
  }
  .Wrapper .HOME .main {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .Wrapper .HOME .main .carousel .slider {
    height: 100%;
    display: flex;
    width: 500%;
    transition: all 1.2s;
  }
  .Wrapper .HOME .main .carousel .slider section {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .HOME .main .carousel .slider section img {
    width: 100%;
    height: auto;
  }
  .Wrapper .HOME .main .carousel .controls .arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
  }
  .Wrapper .HOME .main .carousel .controls .left {
    left: 2px;
    width: 30px;
    background-color: #000;
    padding: 5px;
    border-radius: 0 5px 5px 0;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls .right {
    right: 2px;
    width: 30px;
    background-color: #000;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    opacity: 0.4;
    z-index: 100;
  }
  .Wrapper .HOME .main .carousel .controls span i {
    color: #fff;
  }
  .Wrapper .AUTOSCROLL {
    grid-area: AUTOSCROLL-P;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    display: grid;
    grid-template-areas: ". logo-part .";
    grid-template-columns: 5px 1fr 15px;
    grid-template-rows: auto;
    background-image: linear-gradient(to right, #ff5c5c 0%, #ffb8b8 10%, #ffe6e6 50%, #ffb8b8 90%, #ff5c5c 100%);
  }
  .Wrapper .AUTOSCROLL .logos {
    grid-area: logo-part;
    width: 100%;
    margin: 4px;
    overflow: hidden;
    padding: 8px 0;
    white-space: nowrap;
    border-radius: 4px;
    background-color: #fbdfdf;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide {
    animation: 35s slide infinite linear;
    display: inline-block;
  }
  .Wrapper .AUTOSCROLL .logos .logos-slide img {
    margin: 0 20px;
  }
  .Wrapper .AUTOSCROLL .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .Wrapper .COMPANY {
    grid-area: COMPANY-P;
    display: grid;
    grid-template-areas: "ABOUT-P" "HISTORY-P" "CSR-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .Wrapper .COMPANY .about-us {
    grid-area: ABOUT-P;
    display: grid;
    grid-template-areas: ". ABOUT .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: 1fr;
  }
  .Wrapper .COMPANY .about-us .inner {
    grid-area: ABOUT;
    width: 100%;
    display: grid;
    grid-template-areas: "ABOUT-P" "UML-P" "COMP-P" "CULT-P" "VISION-P" "MISSION-P" "OFFER-P" "COMIT-P" "VAL-P" "INFO-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
    padding: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .About-page {
    grid-area: ABOUT-P;
  }
  .Wrapper .COMPANY .about-us .inner .About-page h1 {
    font-size: 1.5rem;
    color: #585858;
    padding: 20px 10px 20px 0;
    font-weight: 500;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page {
    grid-area: UML-P;
    padding-bottom: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .uml-page span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 30px 5px 5px;
    border-radius: 0 15px 15px 0;
    font-weight: 500;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .about-us .inner .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .company h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .company p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .culture {
    grid-area: CULT-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.8rem;
    padding: 20px 20px 20px 0;
  }
  .Wrapper .COMPANY .about-us .inner .culture h3 {
    color: #e61134;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .culture p {
    line-height: 25px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info {
    width: 100%;
    grid-area: VAL-P;
    display: grid;
    grid-template-areas: "VALUES-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background-color: #f8f4ef;
    box-shadow: 2px 2px 5px rgba(241, 46, 46, 0.3);
    border-radius: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values {
    grid-area: VALUES-P;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core {
    padding: 10px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item {
    display: grid;
    grid-template-areas: "ltr-p icon-p" "ltr-p msg-p";
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .letter {
    grid-area: ltr-p;
    font-size: 2.8rem;
    font-weight: 700;
    border-right: 1px solid #585858;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons {
    grid-area: icon-p;
    margin-left: 15px;
    color: #d12440;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .icons img {
    width: auto;
    height: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values .core .value-item .message {
    grid-area: msg-p;
    margin-left: 15px;
    color: #585858;
    font-style: italic;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .values-info .values:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .comit {
    grid-area: COMIT-P;
  }
  .Wrapper .COMPANY .about-us .inner .offer {
    grid-area: OFFER-P;
  }
  .Wrapper .COMPANY .about-us .inner .vision {
    grid-area: VISION-P;
  }
  .Wrapper .COMPANY .about-us .inner .mission {
    grid-area: MISSION-P;
  }
  .Wrapper .COMPANY .about-us .inner .info-page {
    grid-area: INFO-P;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 5px;
    flex-wrap: wrap;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info {
    background-color: #f8f4ef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(156, 3, 26, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info i {
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info .deco {
    font-size: 1.4rem;
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover i {
    color: #0774aa;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover span {
    color: #808080;
    font-size: 0.8rem;
  }
  .Wrapper .COMPANY .about-us .inner .info-page .info:hover .deco {
    font-size: 1.4rem;
    color: #e61134;
  }
  .Wrapper .COMPANY .about-us .inner .inside {
    width: 100%;
    height: auto;
    background-color: #e61134;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .Wrapper .COMPANY .about-us .inner .inside h3 {
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
  }
  .Wrapper .COMPANY .about-us .inner .inside i {
    color: #fff;
  }
  .Wrapper .COMPANY .about-us .inner .inside p {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .about-us .inner .inside:hover {
    box-shadow: 5px 5px 10px rgba(3, 97, 144, 0.3);
    background-color: #0774aa;
  }
  .Wrapper .COMPANY .history-page {
    grid-area: HISTORY-P;
    width: 100%;
    background-color: #faf9f8;
    display: grid;
    grid-template-areas: ". HISTTORY-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    padding: 10px;
    margin: 10px 0;
  }
  .Wrapper .COMPANY .history-page .history {
    grid-area: HISTTORY-P;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .Wrapper .COMPANY .history-page .history .history-sign {
    padding: 20px 0;
  }
  .Wrapper .COMPANY .history-page .history .history-sign span {
    background-color: #e61134;
    color: #fff;
    padding: 5px 50px 5px 0;
    border-radius: 0 15px 15px 0;
    font-weight: 400;
    font-size: 1.2rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single {
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot hr {
    color: #e61134;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-dot i {
    color: #e61134;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year {
    padding-bottom: 10px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-year span {
    color: #585858;
    font-weight: 600;
    font-size: 0.9rem;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content {
    padding: 10px 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-one span, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-two span {
    padding: 4px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year span {
    background-color: #a8eef3;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .first-year-two span {
    background-color: #f7add6;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .second-year span {
    background-color: #b9f5b2;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .third-year span {
    background-color: #eee69c;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .forth-year span {
    background-color: #b8baeb;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .fifth-year span {
    background-color: #e9a086;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year span {
    background-color: #eaa3ec;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .sixth-year-two span {
    background-color: #a3ecdd;
    font-size: 0.85rem;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-one, .Wrapper .COMPANY .history-page .history .history-year .history-single .hist-content .month-cont-two {
    padding: 10px 0;
    color: #5d5c5c;
    font-size: 0.7rem;
  }
  .Wrapper .COMPANY .history-page .history .gallary {
    height: auto;
    width: 100%;
  }
  .Wrapper .COMPANY .history-page .history .gallary img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .Wrapper .COMPANY .csr {
    grid-area: CSR-P;
    width: 100%;
    display: grid;
    grid-template-areas: ". CSR-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .COMPANY .csr .csr-inner {
    grid-area: CSR-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e61134;
    margin-bottom: 20px;
    border-radius: 3px;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist h2 {
    font-size: 1.2rem;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-hist p {
    margin: 10px 0;
    color: #fff;
    font-size: 0.75rem;
    width: 95%;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .COMPANY .csr .csr-inner .csr-images img {
    width: 95%;
    height: auto;
    margin: 20px;
    border-radius: 3px;
  }
  .Wrapper .PRODUCTS {
    grid-area: PRODUCTS-P;
    display: grid;
    grid-template-areas: ". PROD-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .PRODUCTS .brand-product {
    grid-area: PROD-P;
    width: 100%;
  }
  .Wrapper .PRODUCTS .brand-product .product-filter-items {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    padding: 15px;
    border-radius: 15px;
    background-color: #f8f4ef;
  }
  .Wrapper .RESOURCES {
    grid-area: RESOURCES-P;
    display: grid;
    grid-template-areas: ". RESOURCE-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
  }
  .Wrapper .RESOURCES .resources-page {
    grid-area: RESOURCE-P;
    display: flex;
    flex-direction: column;
    background-color: #efefef;
  }
  .Wrapper .RESOURCES .resources-page .title {
    padding: 30px 0;
  }
  .Wrapper .RESOURCES .resources-page .title h1 {
    text-align: center;
    color: #e61134;
    font-size: 1.8rem;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .main-vid-title {
    font-size: 15px;
    text-align: center;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list {
    flex-flow: column;
    gap: 10px;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-video {
    width: 100%;
  }
  .Wrapper .RESOURCES .resources-page .container .main-video-container .list .list-title {
    font-size: 15px;
    text-align: center;
  }
  .Wrapper .BLOG {
    grid-area: BLOG-P;
    display: grid;
    grid-template-areas: ". MAP-P .";
    grid-template-columns: 10px 1fr 10px;
    grid-template-rows: auto;
    background-color: #e61134;
    margin-top: 20px;
  }
  .Wrapper .BLOG .map-address {
    grid-area: MAP-P;
    display: grid;
    grid-template-areas: "TOP-P" "CONT-P" "MAP-P" "ADD-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .Wrapper .BLOG .map-address .top {
    grid-area: TOP-P;
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 20px;
  }
  .Wrapper .BLOG .map-address .top h1 {
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-size: 1.2rem;
  }
  .Wrapper .BLOG .map-address .contact {
    grid-area: CONT-P;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .contact .kisumu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .Wrapper .BLOG .map-address .contact .kisumu h1 {
    color: #bfbfbf;
    font-size: 1rem;
  }
  .Wrapper .BLOG .map-address .contact .kisumu span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .contact .nakuru {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .Wrapper .BLOG .map-address .contact .nakuru h1 {
    color: #bfbfbf;
    font-size: 1rem;
  }
  .Wrapper .BLOG .map-address .contact .nakuru span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .contact .customer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .Wrapper .BLOG .map-address .contact .customer h1 {
    color: #bfbfbf;
    font-size: 1rem;
  }
  .Wrapper .BLOG .map-address .contact .customer span {
    color: #fff;
    font-size: 0.7rem;
  }
  .Wrapper .BLOG .map-address .map {
    grid-area: MAP-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .map img {
    width: 320px;
    height: auto;
  }
  .Wrapper .BLOG .map-address .address {
    grid-area: ADD-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 5px;
  }
  .Wrapper .BLOG .map-address .address .nakuru {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nakuru h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nakuru span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .kisumu {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .kisumu h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .kisumu span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nairobi {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .nairobi h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .nairobi span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .webuye {
    display: flex;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    padding: 5px 20px;
  }
  .Wrapper .BLOG .map-address .address .webuye h1 {
    color: #e61134;
    font-size: 1.2rem;
    text-align: center;
  }
  .Wrapper .BLOG .map-address .address .webuye span {
    color: #fff;
    font-size: 0.7rem;
    text-align: center;
  }
  .Wrapper .CONTACT {
    grid-area: CONTACT-P;
    display: grid;
    grid-template-areas: ". CONTACT-P .";
    grid-template-columns: 5px 1fr 5px;
    grid-template-rows: auto;
    background-color: #e61134;
  }
  .Wrapper .CONTACT .contact {
    grid-area: CONTACT-P;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .subscribe {
    width: 100%;
    display: grid;
    grid-template-areas: "MESSAGE-P" "SEND-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 30px 2px;
  }
  .Wrapper .CONTACT .contact .subscribe .message {
    grid-area: MESSAGE-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .message h3 {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
  }
  .Wrapper .CONTACT .contact .subscribe .message p {
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
  }
  .Wrapper .CONTACT .contact .subscribe .send {
    grid-area: SEND-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .Wrapper .CONTACT .contact .subscribe .send form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=email] {
    width: 240px;
    outline: none;
    height: 40px;
    margin-right: 10px;
    text-indent: 5px;
  }
  .Wrapper .CONTACT .contact .subscribe .send form input[type=submit] {
    width: 60px;
    outline: none;
    height: 40px;
    color: #fff;
    background-color: #e9a086;
    border: none;
  }
  .Wrapper .CONTACT .contact .content {
    display: grid;
    grid-template-areas: "UML-P" "COMP-P" "SUST-P" "CARR-P";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    border-top: 1px solid #b8b8b8;
  }
  .Wrapper .CONTACT .contact .content .united {
    grid-area: UML-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .united h4 {
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .Wrapper .CONTACT .contact .content .united a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .united .social i {
    color: #fff;
    cursor: pointer;
  }
  .Wrapper .CONTACT .contact .content .united .social {
    padding: 10px 0;
  }
  .Wrapper .CONTACT .contact .content .company {
    grid-area: COMP-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .company h4 {
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .Wrapper .CONTACT .contact .content .company a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .sustain {
    grid-area: SUST-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .sustain h4 {
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .Wrapper .CONTACT .contact .content .sustain a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
  .Wrapper .CONTACT .contact .content .carrier {
    grid-area: CARR-P;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .Wrapper .CONTACT .contact .content .carrier h4 {
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .Wrapper .CONTACT .contact .content .carrier a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    line-height: 15px;
  }
}
.Customer {
  width: 100vw;
  height: auto;
  display: grid;
  grid-template-areas: "NAV-L NAV-M NAV-R" "NAV-L MAIN-M NAV-R" "MAIN-L MAIN-M MAIN-R" "FOOTER-L FOOTER-M FOOTER-R";
  grid-template-columns: 1fr 950px 1fr;
  grid-template-rows: 60px 150px auto 40px;
  background-color: #fff;
}
.Customer .Nav-L {
  grid-area: NAV-L;
  background-color: #e61134;
}
.Customer .Nav-Main {
  grid-area: NAV-M;
  background-color: #e61134;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.Customer .Nav-Main a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 10px;
  border-radius: 3px;
}
.Customer .Nav-Main a:hover {
  background-color: #fbeaea;
  color: #e61134;
}
.Customer .Nav-Main i {
  color: #fff;
}
.Customer .Nav-R {
  grid-area: NAV-R;
  background-color: #e61134;
}
.Customer .Main-L {
  grid-area: MAIN-L;
  background-color: #fff;
}
.Customer .Main-Main {
  grid-area: MAIN-M;
  margin: 20px 80px;
}
.Customer .Main-Main .main-title h2 {
  color: #5f5f5f;
  font-size: 1.5rem;
  padding-bottom: 15px;
  font-weight: 600;
}
.Customer .Main-Main .main-title p {
  color: #5f5f5f;
  font-size: 0.9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #b9b9b9;
}
.Customer .Main-Main .main-body form .topic .sub-topic .tittle {
  padding: 15px 0;
  font-weight: 600;
}
.Customer .Main-Main .main-body form .topic .sub-topic p {
  color: #0d90b8;
  padding: 5px 0;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .fname {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .fname label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .fname input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .lname {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .lname label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .name .lname input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .street {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .street label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .street input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic .contact {
  width: 100%;
}
.Customer .Main-Main .main-body form .topic .sub-topic .contact .email {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic .contact .email label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic .contact .email input[type=email] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .tittle {
  padding: 15px 0;
  font-weight: 600;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final p {
  color: #0d90b8;
  padding: 5px 0;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 0;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date input[type=date] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location label {
  padding-bottom: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location input[type=text] {
  height: 30px;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
  border-radius: 4px;
  color: #b3b3b3;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .description {
  width: 100%;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .description .message {
  width: 100%;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .description .message label {
  padding-bottom: 5px;
  font-size: 0.8rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .description .message textarea {
  width: 100%;
  font-size: 0.8rem;
  outline: none;
  border: 1px solid #0d90b8;
  text-indent: 5px;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .description .check {
  padding: 15px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid #b9b9b9;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .can-send {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .can-send input[type=submit] {
  outline: none;
  height: 35px;
  width: 48%;
  border: none;
  color: #fff;
  background-color: #0d90b8;
  border-radius: 5px;
  font-size: 1rem;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .can-send input[type=submit]:hover {
  background-color: #057b9f;
}
.Customer .Main-Main .main-body form .topic .sub-topic-final .can-send a {
  text-decoration: none;
  color: #e61134;
  font-size: 1.2rem;
}
.Customer .Main-R {
  grid-area: MAIN-R;
  background-color: #fff;
}
.Customer .Footer-L {
  grid-area: FOOTER-L;
  background-color: #fbeaea;
}
.Customer .Footer-Main {
  grid-area: FOOTER-M;
  background-color: #fbeaea;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.Customer .Footer-Main p {
  color: #0d90b8;
  font-size: 0.75rem;
}
.Customer .Footer-R {
  grid-area: FOOTER-R;
  background-color: #fbeaea;
}

@media screen and (max-width: 1280px) {
  .Customer {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-areas: "NAV-L NAV-M NAV-R" "NAV-L MAIN-M NAV-R" "MAIN-L MAIN-M MAIN-R" "FOOTER-L FOOTER-M FOOTER-R";
    grid-template-columns: 5px 1fr 5px;
    grid-template-rows: 60px 120px auto 40px;
    background-color: #fff;
  }
  .Customer .Nav-L {
    grid-area: NAV-L;
    background-color: #e61134;
  }
  .Customer .Nav-Main {
    grid-area: NAV-M;
    background-color: #e61134;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .Customer .Nav-Main a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 10px;
    border-radius: 3px;
  }
  .Customer .Nav-Main a:hover {
    background-color: #fbeaea;
    color: #e61134;
  }
  .Customer .Nav-Main i {
    color: #fff;
  }
  .Customer .Nav-R {
    grid-area: NAV-R;
    background-color: #e61134;
  }
  .Customer .Main-L {
    grid-area: MAIN-L;
    background-color: #fff;
  }
  .Customer .Main-Main {
    grid-area: MAIN-M;
    margin: 10px;
  }
  .Customer .Main-Main .main-title h4 {
    color: #5f5f5f;
    font-size: 1.2rem;
    padding-bottom: 8px;
  }
  .Customer .Main-Main .main-title p {
    color: #5f5f5f;
    font-size: 0.8rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #b9b9b9;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .tittle {
    padding: 10px 0;
    font-weight: 500;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic p {
    color: #0d90b8;
    padding: 5px 0;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .fname {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .fname label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .fname input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .lname {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .lname label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .name .lname input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .street {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .street label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .street input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .town input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .address .t-c .county input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .contact {
    width: 100%;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .contact .email {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .contact .email label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic .contact .email input[type=email] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .tittle {
    padding: 10px 0;
    font-weight: 500;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final p {
    color: #0d90b8;
    padding: 5px 0;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .date input[type=date] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location label {
    padding-bottom: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .incident .location input[type=text] {
    height: 30px;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
    border-radius: 4px;
    color: #b3b3b3;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .description {
    width: 100%;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .description .message {
    width: 100%;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .description .message label {
    padding-bottom: 5px;
    font-size: 0.7rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .description .message textarea {
    width: 100%;
    font-size: 0.7rem;
    outline: none;
    border: 1px solid #0d90b8;
    text-indent: 5px;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .description .check {
    padding: 10px 0;
    font-size: 0.7rem;
    border-bottom: 1px solid #b9b9b9;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .can-send {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .can-send input[type=submit] {
    outline: none;
    height: 35px;
    width: 50%;
    border: none;
    color: #fff;
    background-color: #0d90b8;
    border-radius: 5px;
    font-size: 0.9rem;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .can-send input[type=submit]:hover {
    background-color: #057b9f;
  }
  .Customer .Main-Main .main-body form .topic .sub-topic-final .can-send a {
    text-decoration: none;
    color: #e61134;
    font-size: 0.9rem;
  }
  .Customer .Main-R {
    grid-area: MAIN-R;
    background-color: #fff;
  }
  .Customer .Footer-L {
    grid-area: FOOTER-L;
    background-color: #fbeaea;
  }
  .Customer .Footer-Main {
    grid-area: FOOTER-M;
    background-color: #fbeaea;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .Customer .Footer-Main p {
    color: #0d90b8;
    font-size: 0.7rem;
  }
  .Customer .Footer-R {
    grid-area: FOOTER-R;
    background-color: #fbeaea;
  }
}/*# sourceMappingURL=style.css.map */