
/*-----------------
1. Google font
------------------*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*-------------------
2. Theme Default CSS
--------------------*/



body {
	font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif !important;
}

* {
    outline: none;
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
	transition: all 0.3s ease;
} 

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #333333;
}

.navbar-brand {
	color: #fff;
}

input, textarea {
	font-family: 'Raleway', sans-serif !important;
}

input::placeholder, textarea::placeholder {
	font-family: 'Raleway', sans-serif !important;
	color: #999;
	opacity: 1; /* Ensure it's fully visible */
}

.navbar-brand path {
	fill: #fff;
}

input,
select {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

button {
	font-family: 'Raleway', sans-serif;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #768ede;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.4em;
}

.orgdocs h1,
.orgdocs h2,
.orgdocs h3,
.orgdocs h4,
.orgdocs h5,
.orgdocs h6 {
    margin: 15px 0 10px;
}

h1 {
    font-size: 40px;
	line-height: 42px;
}

h2 {
    font-size: 30px;
	line-height: 32px;
}

h3 {
    font-size: 25px;
}

.ficha {
	height: 0;
    position: absolute;
    width: 0;
}

html,
body {
	height: 100%;
	overflow-y: visible;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #212121;
}

p {
	margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*-- 3. Button-Style --*/

.bttn-white {
    position: relative;
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
	*/
    overflow: hidden;
    z-index: 1;
    margin-right: 10px;
    border: none;
}

.bttn-white img {
    height: 20px;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

.bttn-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.bttn-white.active,
.bttn-white:hover {
    color: #ffffff;
	background: #7786ed;
}

.bttn-white.active:before,
.bttn-white:hover:before {
    opacity: 0;
}

.bttn-default,
.bttn-white {
    padding: 12px 30px;
    background-color: #ffffff;
    display: inline-block;
    color: #303F9F;
    text-transform: uppercase;
    border-radius: 50px;
	cursor: pointer;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: none;
}

.bttn-default .lnr,
.bttn-white .lnr {
    margin-right: 10px;
}


.bttn-default {
   font-size: 14px;
	padding: 8px 25px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #303F9F;
    /* Old browsers */
    /*
    background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303F9F', endColorstr='#6ac6f0', GradientType=1);
	*/
    color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.bttn-default:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sq {
    border-radius: 3px !important;
}

/*-- 4. Helper-Classes --*/

.section-padding-top {
    padding-top: 120px;
}

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

.upper {
    text-transform: uppercase;
}

.angle,
.overlay {
    position: relative;
    z-index: 1;
}

.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #303F9F;
    /* Old browsers */
    /*
    background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303F9F', endColorstr='#6ac6f0', GradientType=1);
    opacity: 0.8;*/
    z-index: -2;
}

.angle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left bottom, right top, color-stop(50%, #ffffff), color-stop(50%, transparent)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right top, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    z-index: -1;
}

.dark-color {
    color: #434345
}

.blue-color {
    color: #303F9F;
}

.white-color {
    color: #ffffff !important;
}

.gray-bg {
    background-color: #f5f6ff;
}

/*-- 5. MainMenu-Area --*/

.mainmenu-area {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 140px 15px 0;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #000;
}

.menufix {
    position: fixed !important;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px); 
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
	*/
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.9;
    color: #000;
}

.mainmenu-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303F9F', endColorstr='#6ac6f0', GradientType=1);*/
    z-index: -1;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area.uncollapsed:before {
	opacity: 0.9;
}


.mainmenu-area .right-button {
    position: absolute;
    right: 15px;
    top: 8px;
}

.mainmenu-area .right-button #loginform {
	cursor: pointer;
}

.mainmenu-area .right-button a {
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
	line-height: 20px;
}

.mainmenu-area .right-button a:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #768ede;
}

.mainmenu-area ul.mainmenu {
    float: none;
    display: block;
    text-align: center;
}

.mainmenu-area ul.mainmenu li {
    float: none;
    display: inline-block;
    text-align: center;
}

@media only screen and (max-width: 767px) {
	.mainmenu-area ul.mainmenu {
		text-align: left !important;
	}
	
	.mainmenu-area ul.mainmenu li {
		text-align: left !important;
	}
}

.mainmenu-area ul.nav.navbar-nav li a {
    color: #ffffff;
    padding: 5px 2px 7px;
    text-transform: capitalize;
    background: transparent;
    font-weight: 600;
	font-size: 14px;
    border-bottom: 2px solid transparent;
    margin: 0 15px;
}

.mainmenu-area ul.nav.navbar-nav li a:hover,
.mainmenu-area ul.nav.navbar-nav li.active a {
    border-bottom-color: rgba(255, 255, 255, 1);
}

.mainmenu-area ul.nav.navbar-nav li a i {
	font-size: 18px;
	padding-right: 10px;
}

.mainmenu-area .navbar-brand {
    height: auto;
    padding: 5px 15px 0;
}

.mainmenu-area .navbar-brand img {
    height: 30px;
}

.mainmenu-area .navbar-brand svg {
	display: block;
    height: 30px;
}

@media only screen and (max-width: 767px) {
	.mainmenu-area .navbar-brand svg {
		margin-top: 4px;
	}
}

.mainmenu-area ul.mainmenu li:nth-child(7),
.mainmenu-area ul.mainmenu li:nth-child(8),
.mainmenu-area ul.mainmenu li:nth-child(9),
.mainmenu-area ul.mainmenu li:nth-child(10),
.mainmenu-area ul.mainmenu li:nth-child(11),
.mainmenu-area ul.mainmenu li:nth-child(12),
.mainmenu-area ul.mainmenu li:nth-child(13) {
    display: none;
}

.mob-log {
    display: none;
}

#about_page {
	margin-bottom: 80px;
}

/*-- 6. Page-Title --*/

.page-title .title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #444;
    font-weight: 600;
}

.text-center.page-title .title:before,
.page-title .title:after {
    content: '';
    width: 50px;
    height: 1px;
    display: inline-block;
    background-color: #e1e1e1;
    margin: 0 15px;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

/*-- 7. Home-Area --*/

.home-area {
    width: 100%;
	font-size: 14px;
    background: url('images/afro-pattern.jpg') no-repeat scroll center bottom / cover;
	background-color: #303f9f;
    padding-top: 100px;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 150px;
    /*
	-webkit-box-shadow: 0px 0px 20px 20px #303F9F;
	-moz-box-shadow: 0px 0px 20px 20px #303F9F;
    box-shadow: 0px 0px 20px 20px #303F9F;
	*/
}

.home-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* tint */
  z-index: 0;
}

.home-area .container {
	height: 300px;
}

.home-area svg {
	margin-bottom: -15px;
	padding: 0;
}

.home-area .mobile-image {
	max-height: 700px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: -158px;
}

.home-area .row {
	display: flex;
	justify-content: center;
}

.home-area .mobile-image img {
	max-width: 100% !important;
	max-height: 600px;
	float: right;
}

.home-area .bttn-white {
	font-size: 14px;
	padding: 8px 25px;
}

/*-- 8. Progress-Area --*/

.progress-area {
    margin-top: 0;
    margin-bottom: 50px;
}

.progress-area .mobile-image {
    margin-top: -70px;
    margin-bottom: -143px;
}

.progress-area .mobile-image img {
	max-height: 600px;
}

/*-- 9. Video-Area --*/

.video-area {
    margin-bottom: 120px;
}

.video-photo {
	max-width: 400px;
	margin: 0 auto;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.video-photo > img {
    width: 100%;
	border-radius: 5px;
}

.video-area a.video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.about-section {
	position: relative;
	margin-top: 35px;
	margin-bottom: 70px;
	overflow: hidden;
}

.animblob {
  position: absolute;
  top: 50px;
  left: 0;
  fill: #303F9F;
  opacity: 0.1;
  width: 50vmax;
  z-index: -1;
  animation: move 10s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes move {
  0%   { transform: scale(1)   translate(10px, -30px); }
  38%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
  40%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
  78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  100% { transform: scale(1)   translate(10px, -30px); }
}

/*-- 10. Feature-Area --*/

.feature-area {
    color: #ffffff;
    background-color: #303F9F;
    background-image: url('images/feature-bg.png');
    background-position: bottom -120px center;
    background-repeat: no-repeat;
    background-size: auto 94%;
    margin-bottom: 142px;
	-webkit-box-shadow: 0px 0px 20px 20px #303F9F;
	-moz-box-shadow: 0px 0px 20px 20px #303F9F;
    box-shadow: 0px 0px 20px 20px #303F9F;
	padding-top: 50px;
}

.feature-area .page-title .title {
    color: #ffffff;
}

.feature-area .mobile-image {
	margin-top: 80px;
    margin-bottom: -142px;
	margin-left: 0;
	width: 100%;
}

.feature-area img {
	max-width:100%;
}

.how-to {
	font-size: 14px;
	padding-top: 8px;
	padding-bottom: 8px;
    display: flex;
    justify-content: center;
    text-align: center;
}

/*-- 11. Service-Box --*/

.service-box {
    position: relative;
    padding-left: 100px;
}

.team-slide .owl-controls .owl-nav > div,
.service-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 70px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #303F9F;
    /* Old browsers */
    /* 
    background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303F9F', endColorstr='#6ac6f0', GradientType=1);*/
    overflow: hidden;
    z-index: 1;
    color: #5e88fc;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}

.team-slide .owl-controls .owl-nav > div:hover,
.service-box:hover .box-icon {
    color: #ffffff;
}

.team-slide .owl-controls .owl-nav > div:before,
.service-box .box-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.team-slide .owl-controls .owl-nav > div:hover:before,
.service-box:hover .box-icon:before {
    opacity: 0;
}

.service-box h4 {
    margin-bottom: 10px;
}

/*-- 12. Testimonial-Area --*/

.testimonial-area {
	margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 120px;
}

.team-box {
    position: relative;
    padding: 55px 30px 30px 30px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-top: 40px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    border: 1px solid #ddd;
	/*background: -webkit-linear-gradient(45deg, rgba(142, 158, 171, 1) 0%, rgba(238, 242, 243, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(142, 158, 171, 1) 0%, rgba(238, 242, 243, 1) 100%);
    background: linear-gradient(45deg, rgba(142, 158, 171, 1) 0%, rgba(238, 242, 243, 1) 100%);*/
}

.team-box:hover {
    background: #eee;
}

.team-box .team-image {
    position: absolute;
    top: -40px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    border: 5px solid #ffffff;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
}

.team-box .team-image img {
	max-height: 80px;
}

.team-box h4 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.team-box h6.position {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

.team-slide .owl-controls .owl-nav {
	margin-top: 40px;
}

.team-slide .owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.team-slide .owl-controls .owl-nav > div.owl-next {
    right: auto;
    left: 100%;
}

/*-- 13. Offers-Area --*/

.gallery-area {
	margin-top: 100px;
	padding-bottom: 100px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #ffffff;
}

.gallery-slide .item {
    background: #eceff1;
    margin: 58px auto 70px;
    overflow: hidden;
    width: 250px;
    border-radius: 20px;
    color: #333333;
    text-align: center;
    text-transform: capitalize;
}

.gallery-slide .owl-nav,
.gallery-slide .owl-dots {
    padding-right: 0;
    text-align: center;
}

.gallery-slide .owl-controls {
    padding-right: 0;
}

.gallery-slide .item .of-brand,
.gallery-slide .item .of-memory,
.gallery-slide .item .of-sellerID {
    display: none;
}

.gallery-slide .item .of-badge {
    width: 50px;
    margin-top: 10px;
    left: 200px;
    position: absolute;
}

.gallery-slide .item .of-image {
    height: 160px;
}

.gallery-slide .item .of-image img {
    position: relative;
    width: 30%;
    margin-top: 20px;
    margin-left: 35%;
}

.gallery-slide .item .of-model {
	font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    color: #333333;
    font-size: 18px;
}

.gallery-slide .item .of-color {
	margin-bottom: 20px;
    color: #333333;
}

.gallery-slide .item .of-status {
	margin-bottom: 5px;
    color: #333333;
}

.gallery-slide .item .of-discount {
	font-weight: 600;
    margin-top: 20px;
	margin-bottom: 10px;
    font-size: 18px;
    color: #333333;
}

.gallery-slide .item .of-msrp {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
	margin-bottom: 10px;
    text-decoration: line-through;
    color: #bobec5;
}

.gallery-slide .item .of-buy-btn {
    width: 100%;
	font-weight: 600;
	font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 10px;
    padding: 15px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #ffffff;
}

.gallery-slide .owl-controls {
    position: static;
    text-align: right;
}

.gallery-slide .owl-controls .owl-nav > div {
    display: inline-block;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    color: rgba(72, 44, 191, 1);
    margin: 5px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot {
    display: inline-block;
    margin: 3px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot span {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 5px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-slide .owl-controls .owl-dots .owl-dot.active span {
    opacity: 1;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

/*-- 15. Why-choose-us-area --*/

#why_choose_us {
	margin: 50px 0;
}

/*-- 16. Questions-area --*/

.questions-area {
	background: #f5f6ff;
	-webkit-box-shadow: 0px 0px 20px 20px #f5f6ff;
	-moz-box-shadow: 0px 0px 20px 20px #f5f6ff;
    box-shadow: 0px 0px 20px 20px #f5f6ff;
	padding-bottom: 140px;
}

.toggole-boxs {
    margin-top: -20px;
}

.toggole-boxs h3 {
    font-size: 18px;
    background-color: #ffffff;
    margin-bottom: 0;
    margin-top: 20px;
    outline: none;
    padding: 20px 30px 20px 60px;
    color: #434345;
    border-left: 5px solid #303F9F;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.toggole-boxs h3:before,
.toggole-boxs h3:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    width: 10px;
    height: 2px;
    background-color: #434345;
}

.toggole-boxs h3:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.toggole-boxs h3.ui-state-active:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.toggole-boxs h3.ui-state-active {
	border-radius: 10px 10px 0 0;
}

.toggole-boxs div {
	display: none;
	height: auto;
    background-color: #ffffff;
    padding: 0 30px 20px 60px;
    border-left: 5px solid #303F9F;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 1200px) {
	.toggole-boxs div {
		height: auto;
	}
}

.activeRight,
.activeLeft {
	display: block !important;
}

.sales-person {
	display: none;
	text-align: center;
    background: #d5d9ed;
    font-size: 14px;
    padding: 10px;
    margin: 15px 0 0;
    border-radius: 10px;
    font-weight: 600;
}

/*-- 17. Subscribe-Form --*/

.subscribe-area {
    /*background: url('images/subscribe-bg.jpg') no-repeat scroll center center / cover;*/
	background: #303f9f;
	-webkit-box-shadow: 0px 0px 20px 20px #303f9f;
    -moz-box-shadow: 0px 0px 20px 20px #303F9F;
    box-shadow: 0px 0px 20px 20px #303f9f;
}

.subscribe-form {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
}

.subscribe-form form {
    position: relative;
}

.subscribe-form h3 {
	font-weight: 600;
	display: none;
}

.subscribe-form form .control {
    width: 100%;
    height: 51px;
    padding: 15px 15px 15px 15px;
    border-radius: 100px;
    border: 3px solid #303F9F;
}

.subscribe-form form .bttn-white {
	padding: 17px 30px;
    position: absolute;
	height: 51px;
    right: 0;
    top: 0;
    margin-right: 0;
}

.subscribe {
	color: #fff !important;
	background: #303f9f !important;
}

.mt10 {
	color: cadetblue;
	font-weight: 600;
	margin-top: 20px;
	font-size: 14px;
}

/*-- 18. Footer-Area --*/

.footer-area {
	padding-top: 50px;
}

.footer-box {
    text-align: center;

}

.footer-box .box-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 30px auto;
    text-align: center;
    line-height: 75px;
    color: #ffffff;
    font-size: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #303F9F;
    /* Old browsers */
    /*
    background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
	*/
    border-radius: 100%;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer-box .box-icon:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 2px solid #ffffff;
    border-radius: 100%;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.footer-box:hover .box-icon {
    color: #5e88fc;
}

.footer-box:hover .box-icon:before {
    background-color: #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #f5f6ff;
    border-top: 1px solid #303F9F;
}

.footer-bottom .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-bottom .footer-menu ul li {
    display: inline-block;
}

.footer-bottom .footer-menu ul li a {
    padding: 10px;
    color: #8790af
}

.footer-bottom .footer-menu ul li a:hover {
    color: #5e88fc;
}

/*-- 20. Blog-Post --*/

.site-header {
    background: #303F9F;
    /*background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    color: #ffffff;
    padding: 80px 0 0;
    margin-bottom: 50px;
    padding-bottom: 50px;
    -webkit-box-shadow: 0px 0px 20px 20px #303F9F;
	-moz-box-shadow: 0px 0px 20px 20px #303F9F;
    box-shadow: 0px 0px 20px 20px #303F9F;
}

.site-header h1 {
	font-size: 25px;
}

.site-header a {
    color: #ffffff;
}

.site-header svg {
	margin-bottom: -15px;
	padding: 0;
}

.breadcrumb {
    background: none;
    display: inline-block;
    margin-top: 10px;
    padding: 0;
}

.post-single:after {
    content: "";
    clear: both;
    display: table;
}

.post-single {
	height: 91%;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    margin-bottom: 30px;
    background: -webkit-radial-gradient(circle, rgba(250,250,250,1) 35%, rgba(241,243,247,1) 68%, rgba(220,235,238,1) 100%);
    background: -o-radial-gradient(circle, rgba(250,250,250,1) 35%, rgba(241,243,247,1) 68%, rgba(220,235,238,1) 100%);
    background: radial-gradient(circle, rgba(250,250,250,1) 35%, rgba(241,243,247,1) 68%, rgba(220,235,238,1) 100%);
}

.single-post .post-single {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-right: -20px;
	margin-left: -20px;
}

.single-post .post-single .post-media {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.post-single.sticky .post-media {
    width: 55%;
    float: left;
    margin-right: 60px;
}

.post-single .post-media {
    overflow: hidden;
    border-radius: 3px;
	margin: 0;
}

.post-single .post-media img {
    width: 100%;
}

.post-single .post-meta {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.post-single .post-body .post-meta .post-tags {
    float: left;
}

.post-single .post-body .post-meta .post-date {
    float: right;
}

.post-single .post-body h4 {
    font-size: 22px;
    margin-bottom: 20px;
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
}

.post-single .post-body .read-more {
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    color: #303F9F;
}

.post-single .post-body .read-more:after {
    content: '\e87a';
    font-family: 'Linearicons-Free';
    margin-left: 5px;
}

/*-- 21. Pagination --*/

.pagination .nav-links {
    padding: 5px 10px;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2); 
    display: inline-block;
	border-radius: 10px;
}

.pagination {
	display: none;
    text-align: center;
    margin-top: 80px;
    width: 100%;
}

.pagination .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 42px;
    border-radius: 50%;
  	cursor: pointer;
}

.pagination .nav-links .page-numbers:hover {
    color: rgb(72, 44, 191);
    background-color: #f5f6ff;

}

.pagination .nav-links .page-numbers.current {
    background: #303F9F;
    background: -webkit-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, #303F9F 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
}

.blog-subtitle {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 20px !important;
}

.post-single blockquote {
    padding: 50px 160px;
    text-align: center;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    font-size: 26px;
    line-height: 1.6em;
    border: none;
    color: #626264;
    background-color: #f4f4f4;
    border: 30px solid #ffffff;
    font-style: italic;
}

/*-- 22. Comment-Respond --*/

.comment-respond h4,
.comments-area .comment-heading {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #434345;
}

.comments-list,
.comments-list ul {
    list-style: none;
}

.comments-list .comment {
    position: relative;
    padding-left: 130px;
}

.comments-list .comment .comment-pic {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.comments-list .comment .comment-content .comment-header {
    color: #434345
}

.comments-list .comment .comment-content .comment-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.comments-list li li .comment .comment-pic {
    width: 80px;
    height: 80px;
}

.comments-list li {
    margin-bottom: 30px;
}

/*-- 23. Form-Stype --*/

.form-control {
    border-radius: 2px;
    padding: 15px 20px;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

.form-double .box {
    width: calc(50% - 15px);
    float: left;
}

.form-double .box.last {
    float: right;
}

.successful {
    display: none;
}
/*
.ft-payments {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.ft-payment {
	height: 120px;
	max-width: 100%;
	margin: 10px 30px;
	padding: 20px;
}
*/
/* Wavy artistic container */
.ft-payments {
  display: inline-block;
  padding: 16px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: url('images/afro-mpesa.jpg') no-repeat scroll center bottom / cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(48, 63, 159, 0.3);
}

/* Hover effect for some life */
.ft-payments:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 10px 30px rgba(48, 63, 159, 0.5);
}

/* Image inside */
.ft-payment {
  width: 120px;
  height: auto;
  display: block;
  filter:
    drop-shadow( 2px  0px 0 black)
    drop-shadow(-2px  0px 0 black)
    drop-shadow( 0px  2px 0 black)
    drop-shadow( 0px -2px 0 black);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .ft-payments {
    background: url('images/afro-mpesa.jpg') no-repeat scroll center bottom / cover !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  }
  .ft-payment {
    filter:
		drop-shadow( 2px  0px 0 black)
		drop-shadow(-2px  0px 0 black)
		drop-shadow( 0px  2px 0 black)
		drop-shadow( 0px -2px 0 black);
  }
}

.nnblkj {
    display: none;
}

.buy-email-loader {
    display: none;
}

.of-sellerID,
.of-phoneID,
.of-offerID {
    display: none;
}

.call-to-action-btns {
  -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.grid-loader {
	display: flex;
	justify-content: center;
}
.lds-grid {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3949ab;
  animation: lds-grid 1.2s linear infinite;
}
.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}
@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.ton-connect-modal {
  z-index: 100000000 !important;
}
.ton-connect-button, .ton-connect-overlay {
  z-index: 100000000 !important;
}

.wd-form-area {
	display: block;
    max-width: 900px;
    margin: 0 auto;
}

.web-dev-form {
	display: block;
    max-width: 600px;
    margin: 50px auto 150px;
    padding: 20px 20px 70px;
}

.wd-title {
	text-align: center;
	font-weight: 600;
    margin-bottom: 20px;
}

.wd-highlight {
	color: #303f9f;
}

.wd-subtitle {
	text-align: center;
}

.web-dev .form-title {
	font-weight: 600;
	margin-bottom: 0;
}

.web-dev .form-input {
	border: none;
    border-bottom: 4px solid #303f9f;
    margin-bottom: 20px;
	margin-top: 10px;
    padding: 10px;
    width: 100%;
}

.wd-projects {
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.wd-project {
	font-weight: 600;
	border: 4px solid #ccc;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
	cursor: pointer;
}

.wd-project:hover {
	border: 4px solid #aaa;
	background: #eee;
}

.wd-project:focus {
	border: 4px solid #303f9f;
	background: #eee;
}

.wd-project.active {
	border: 4px solid #303f9f;
	background: #eee;
}

.wd-budgets {
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.wd-budget {
	font-weight: 600;
	border: 4px solid #ccc;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
	cursor: pointer;
}

.wd-budget:hover {
	border: 4px solid #aaa;
	background: #eee;
}

.wd-budget:focus {
	border: 4px solid #303f9f;
	background: #eee;
}

.wd-budget.active {
	border: 4px solid #303f9f;
	background: #eee;
}

.wd-message {
	border: none;
    border-bottom: 4px solid #303f9f;
    margin-bottom: 20px;
	margin-top: 10px;
    padding: 10px;
    width: 100%;
	min-height: 150px;
}

.wd-submit {
	background: #303f9f;
    display: inline-block;
    float: right;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.wd-submit:hover {
	opacity: .8;
}

/* Modal Background */
.wd-modal-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 9998;
}

/* Modal Box */
.wd-modal {
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 90%;
	max-width: 380px;
	padding: 25px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(20px);
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,0.25);
	color: white;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 9999;
}

/* Title */
.wd-modal-title {
	font-size: 1.4em;
	margin-bottom: 10px;
	color: #ffffff;
}

/* Body Text */
.wd-modal-text {
	font-size: 1em;
	margin-bottom: 20px;
	color: #ddd;
}

/* OK Button */
.wd-modal-btn {
	background: #303f9f;
	padding: 10px 0;
	border-radius: 12px;
	cursor: pointer;
	font-weight: bold;
	transition: 0.25s;
	color: #fff;
}

.wd-modal-btn:hover {
	background: #3f51b5;
}

/* Show Modal */
.wd-modal.show,
.wd-modal-overlay.show {
	opacity: 1;
	visibility: visible;
}