<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Style file for fo0ter section*/


/*
 The design should be mobile first to render page faster.
 This is to make small devices' design first before scaling up to bigger screens
*/

/*General element styles*/

.footer, .footer *:after, .footer *:before {
	/*Make padding and border widths part of total element width*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  /*center all backgrounds and make them no repeatable */
	background-repeat: no-repeat;
	background-position: center;
}

/*Style for user visited products and scroll to top button*/
.user-visited-product-container {
	position: fixed;
  bottom: 30px; 
  right: 30px;
  padding: 0;
  text-align: right;
  overflow: hidden;
  z-index: 2; 
}

.scroll-top-btn {
	position: relative;
	right: 0;
	display: none;
	padding: 0 10px;
	margin: 0;
  cursor: pointer;
  color: #FFA500;
  font-size: 4em; 
  opacity: 0.7;
  font-weight: bold;
}

.scroll-top-btn:hover {
	opacity: 1;
}

.user-visited-product-list {
	position: relative;
	min-width: 50px;
	min-height: 50px;
	max-width: 100%;
	margin: 0;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	border: 2px solid #2a80b9;;
}


.user-visited-product-list:hover .user-visited-product-item {
	display: inline-block;
	width: 100px;
	height: 100px;
}

.user-visited-product-item {
	position: relative;
	display: none;
	padding: 0;
	margin: 0;
	width: 99.99%;
	height: 99.99%;
	border: 1px solid red;
	transition: width 10s;
	background-color: yellow;
}

.user-visited-product-item:hover {
	transform: scale(1.03);
}


/*style for footer view*/
.footer-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row nowrap;

	border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  z-index: 51;

	width: 100%;
	padding-bottom: 20px;
	background-color: #2D383A;
}

.footer-content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column nowrap;

	width: 95%;
}

.footer-info-tab{
	display: flex;
	align-items: flex-start;
	flex-flow: row wrap;

	width: 100%;
	padding: 5px;
	margin: 25px 0;
}

.footer-info-service {
	width: 50%;
	margin: 10px 0;
	text-align: center;
}

.footer-info-service-item {
	position: relative;
	display: block;
	width: 70%;
	margin: auto;

}

.footer-info-service-item-1, .footer-info-service-item-2 {
	width: 100%;
	height: 65px;
	line-height: 65px;
	font-size: 2em;
	border-radius: 10px;
}

.footer-info-service-item-1 {
	position: relative;
	background-color: #FFEB3B;
	border: 5px solid #2a80b9;
}

.footer-info-service-item-2 {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	background-color: #2a80b9;
	border: 5px solid #FFEB3B;
}

.footer-info-service-item:hover .footer-info-service-item-2{
	display: block;
	color: black;
}

.footer-info-africa-map {
	width: 110px;
	height: 115px;
}

.footer-info-africa-map:hover {
	opacity: 0.8;
	-ms-transform: scale(1.05); /* IE 9 */
	-moz-transform: scale(1.05); 
  -webkit-transform: scale(1.05); /* Safari */
  transform: scale(1.05); /* Standard syntax */
}

.footer-info-tab-links {
	width: 50%;
}

.footer-info-tab-links &gt; h4 {
	padding: 5px;
	color:#8c6c32;
	font-size: 1.1em;
}

.footer-info-tab-links &gt; a,
.footer-info-tab-links &gt; span {
	display: block;
	color: #DDD;
	font-size: 0.8em;
	padding: 2px 5px;
}

.footer-info-tab-links &gt; span &gt; a {
	color: white;
}

.footer-info-tab-links &gt; a:hover, 
.footer-info-tab-links &gt; span &gt; a:hover {
	color: #FFA500;
	text-decoration: none;
}

.footer-info-social-icons {
	display: block;
}

.footer-info-social-icons &gt; a {
	padding: 5px;
	font-size: 1.5em;
	color: white;
}

.footer-info-social-icons &gt; a:hover {
	color: #2a80b9;
}

.footer-info-mobile-app-icons {
	display: block;
}

.footer-info-mobile-app-icons &gt; img {
	display: inline-block;
	width: 48%;
	height: auto;
	margin: 0;
	cursor: pointer;
}

.footer-info-copyright {
	width: 100%;
}

.my-font{
  color: #fff;
}


/* Check for device orientation in protrait mode */
@media only screen and (orientation: portrait){
	
}

/* Small devices (portrait phones, 481px and up) */
@media only screen and (min-width: 481px) {
	
}

/* Small devices (portrait tablets and large phones, 601px and up) */
@media only screen and (min-width: 601px) {

	/*Style for footer*/
  .footer-info-service, .footer-info-tab-links {
		width: 33%;
	}
} 

/* Medium devices (landscape tablets, 769px and up) */
@media only screen and (min-width: 769px) {

	/*Style for footer*/
  .footer-info-service, .footer-info-tab-links {
		width: 25%;
	}
}

/* Large devices (laptops/desktops, 993px and up) */
@media only screen and (min-width: 993px) {
	/*Style for footer*/
  .footer-info-service, .footer-info-tab-links {
		width: 20%;
	}

	
} 

/* Extra large devices (large laptops and desktops, 1201px and up) */
@media only screen and (min-width: 1201px) { 
	.footer-content {
		max-width: 1200px;
	}
}


</pre></body></html>