@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

:root {
	--white: #fff;
	--black: #000;
	--red: #E63946;
}

*{
	margin: 0;
	padding: 0;
	list-style: none;
}

.row {
	margin-right: -15px;
  margin-left: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

img {
	max-width: 100%;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

a, a:hover {
	text-decoration: none;
	color: #1D2683;
}

.slick-arrow {
	-webkit-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    transform: translate(0, 0%);
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
	max-width: calc(100% - 100px);
	max-width: 1140px;
}

body {
	font-size: 16px;
	line-height: 150%;
	font-weight: 400;
	line-height: 26px;
	position: relative;
	color: var(--black);
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
}

.section {
	position: relative;
	padding: 80px 0;
	clear: both;
	width: 100%;
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}


.site_container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 90px;
}



.only_desktop_view {
	display: block;
}

.only_mobile_view {
	display: none;
}


.button_wrap {

}

.button {
	padding: 15px 40px;
	border-radius: 70px;
	background: #FFD166;
	color: var(--black);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 135%; 
	display: inline-block;
}

.button:hover {
	background: #dfb758;
	color: var(--black);
}


.line_block {
	display: block;
}


.heading {
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 144%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.heading h6 {
	color: var(--red);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.heading h2 {
	color: var(--black);
	font-size: 45px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	text-transform: capitalize;
}

.heading h1 {
	color: #FFF;
	font-size: 50px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	text-transform: capitalize;
}


.heading ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.heading ul li {
	width: 100%;
	padding-left: 25px;
	color: var(--black);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	position: relative;
	background: url('../images/check-red.png') no-repeat;
	background-size: 18px;
	background-position: left;
}

.heading h5 {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
}

.heading_white,
.heading_white h1,
.heading_white h2,
.heading_white h5,
.heading_white h6,
.heading_white ul li {
	color: var(--white);
}

.heading_white ul li {
	background: url('../images/check-white.png') no-repeat;
	background-size: 16px;
	background-position: left;
}





.squeare_image_wrap {
	width: 100%;
	height: auto;
	position: relative;
}

.box_bg {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: var(--red);
	position: absolute;
	right: -20px;
	bottom: -20px;
	transition-delay: 0.5s;
}

.box_border {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: transparent;
	border: solid 2px var(--red);
	position: absolute;
	left: -20px;
	bottom: -20px;
}

.squeare_image {
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.squeare_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}





.header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	z-index: 3;
}

.logo {

}


.home_banner {
	width: 100%;
	min-height: 100vh;
	background: var(--red);
	padding-top: 100px;
	position: relative;
	padding-bottom: 100px;
}

.home_banner:after {
	width: 100%;
	height: 190px;
	content: "";
	position: absolute;
	left: 0;
	bottom: -40px;
	background: url('../images/home-banner-wave.png') no-repeat;
	background-position: left top;
	background-size: 100% auto;
	z-index: 1;
}

.home_banner_image_bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.12;
}

.home_banner_image_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background: var(--black);
	opacity: 0.08;
} 

.home_banner .site_container {
	position: relative;
	z-index: 3;
}


.home_banner_content {

}


.home_banner_content .heading p {
	margin: 0;
}


.download_store {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.home_mobile_image {
	position: relative;
	top: 50px;
	transition-delay: 0.5s;
}



.home_sec2 {
	padding-top: 120px;
}

.home_sec2_left {

}



.home_sec2_right {
	display: flex;
	align-items: center;
	transition-delay: 0.3s;
}


.home_sec3 {

}

.home_sec3_sec {
	position: relative;
	padding: 100px 0;
}

.diagonal_wrapper{
	width: 100%;
	height: 100%;
  position:absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow:hidden;
}

.left-bg{
  position:absolute;
  width:60%;
  height:100%;
  background:#FFF2F4;
  left:0;
  top:0;
}

.right-bg{
  position:absolute;
  width:60%;
  height:100%;
  background:#FFDBDF;
  right:-10%;
  top:0;
  transform:skewX(-20deg);
  border-left:8px solid #fff;
}


.home_sec3 .site_container {
	position: relative;
	z-index: 2;
}

.home_sec3 .heading {
	margin-bottom: 40px;
}

.home_sec3 .button_wrap {
	margin-top: 50px;
}


.us_theme_box_sec {
	margin: 0 auto;
}

.us_theme_box_wrap {

}

.us_theme_box {
	width: 100%;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.80);
	overflow: hidden;
}

.us_theme_box_top {
	background: #E63946;
	padding: 20px;
}

.us_theme_box_top h3 {
	color: var(--white);
	text-align: center;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; 
}

.us_theme_box_list {
	width: 100%;
}

.us_theme_box_list ul {
	display: flex;
	flex-direction: column;
}

.us_theme_box_list ul li {
	width: 100%;
	padding: 20px 10px;
	color: #000;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vs {
	display: flex;
	align-items: center;
	justify-content: center;
	transition-delay: 1s;
}


.home_sec4 {

}



.home_sec5 {

}

.home_sec5 .home_sec2_left {
	padding-left: 35px;
}


.home_sec6 {

}

.home_sec6 .home_sec2_left .image_box {
	position: relative;
}

.home_sec6 .home_sec2_left .image_box:before {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	opacity: 0.2;
	background: var(--red);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.home_sec6 .home_sec2_left .image_box img {
	position: relative;
	z-index: 2;
}


.home_sec7 {
	background: #161212;
}

.home_sec7 .heading,
.home_sec7 .heading h2,
.home_sec7 .heading h6,
.home_sec7 .heading h5,
.home_sec7 .heading ul li {
	color: var(--white);
}

.home_sec7 .home_sec2_left {
	display: flex;
	justify-content: center;
	align-items: center;
}

.home_sec7 .home_sec2_left .image_box {
	position: relative;
	z-index: 3;
}


.bubble-wrapper{
  position: absolute;
  width: 450px;
  height: 450px;
}

/* main bubble */
.bubble{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background: radial-gradient(circle, #5a5555 60%, rgba(255,255,255,0.05) 61%);
  box-shadow: 0 0 0 40px rgba(255,255,255,0.04);
  animation: ripple 3s infinite;
}

/* second wave */
.bubble-delay{
  animation-delay: 1.5s;
}

/* animation */
@keyframes ripple{
  0%{
    transform: scale(0.9);
    opacity: 0.7;
  }
  70%{
    transform: scale(1.1);
    opacity: 0.3;
  }
  100%{
    transform: scale(1.25);
    opacity: 0;
  }
}




.home_sec8 {

}

.home_sec8 .home_sec2_left {
	position: relative;
	text-align: center;
}

.home_sec8 .home_sec2_left .image_box:before {
	width: 550px;
	height: 80%;
	border-radius: 20px;
	background: linear-gradient(170deg, #FFEDEF 7.81%, #F29BA2 123.99%, #E63946 205.34%);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.home_sec8 .home_sec2_left .image_box img {
	position: relative;
	z-index: 2;
	top: 40px;
}


.home_sec9 {
	background: #FCEBED;
}

.home_sec9_slider {
	padding-top: 40px;
}

.testimonial-slider {
	padding: 20px 0px 30px;
}

.testimonial-slider .slick-list {

}

.testimonial-card{
  background: #FFF;
/*	box-shadow: 0 5px 34px 0 rgba(0, 0, 0, 0.06);*/
  padding: 40px 35px;
  margin:0 15px;
  text-align:center;
}

.testimonial-card p{
	min-height: 58px;
  color: #000;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
  margin: 0;
}

.quote{
	display: flex;
	align-items: center;
	justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}

.author{
  color: var(--red);
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
  margin-top: 20px;
  display: block;
}



.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
}

.slick-dots li {
	width: auto;
	height: auto;
}

.slick-dots li button {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: solid 3px rgba(230, 57, 70, 0.60);
}

.slick-dots li button:before {
	display: none;
}

.slick-dots li.slick-active button {
	background: var(--red);
	border-color: var(--red);
}





.home_sec10 {

}

.africa_box_under {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
}

.africa_box h4 {
	color: var(--red);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 185%;
}

.africa_box h6 {
	color: var(--black);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: normal;
	text-transform: none;
}

.africa_border {
	width: 2px;
	height: 100%;
	min-height: 80px;
	background: var(--red);
}


.home_sec10 .home_sec2_left {
	position: relative;
}

.africa_map {
	width: 120%;
	position: absolute;
	right: -3%;
	top: 5%;
}


.home_sec11 {
	background: rgba(255, 209, 102, 0.3);
}





.home_sec12 {
	background: var(--red);
}

.home_sec12 .heading {
	margin: 0 auto;
	gap: 40px;
}


.home_sec12 .heading ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}

.home_sec12 .heading ul li {
	width: auto;
}



.home_sec13 {
	
}

.home_sec13 .row {
	justify-content: space-between;
}


.qr_image {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: #FDF3F4;
	padding: 60px 50px;
	text-align: center;
}




.footer {
	background: var(--black);
	position: relative;
	padding-top: 150px;
}

.footer:before {
	width: 100%;
	height: 180px;
	content: "";
	position: absolute;
	left: 0;
	top: -10px;
	background: url('../images/footer-bg.png') no-repeat;
	background-position: left bottom;
	background-size: 100% auto;
	z-index: 1;
}

.footer_top {
  flex-direction: column;
  gap: 50px;
  padding: 50px 0 40px;
  display: flex;
}

.footer_logo {
  text-align: center;
}

.footer_logo img {
	max-width: 240px;
}

.footer_menu {

}

.footer_menu ul {
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer_menu ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer_menu ul li a {
  color: var(--white);
}

.footer_social ul {
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer_social ul li a {
  color: #8D8D8D;
  border: 1px solid #8D8D8D;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.footer_social ul li a:hover {
	background: var(--red);
	border-color: var(--red);
	color: var(--white);
}

.footer_bottom {
	width: 100%;
	padding: 20px 0;
	border-top: solid 1px rgba(255, 255, 255, 0.14);
	color: var(--white);
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
}