@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');


body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.oragnge {
  color: #ff5f1e;
}

.header-logo {
  position: relative;
  z-index: 1;
  top: 5px;
}

.header-logo img {}

.header-top ul {
  margin: 0;
  padding: 0;
}

.header-top ul li {
  display: inline-block;
  padding: 5px 15px;
}

.header-top ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  top: 3px;
}

.mainheader {
  background: #fff;
}

/*
.mainHeader-top {
background: linear-gradient(to right,  #ffffff 29%,#1c2c45 29%);
} */

.header-top::before {
  content: '';
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+29,1c2c45+29 */
  /* background: linear-gradient(to right,  #ffffff 35%,#ff5f1e 35%); */
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+22,ff5f1e+22,ff5f1e+22 */
  background: linear-gradient(45deg, #ffffff 32%, #ff5f1e 32%, #ff5f1e 32%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  right: 0;
}

section {
  padding: 50px 0px;
  overflow: hidden;
}

.stellarnav>ul>li>a:hover {
  color: #ff5f1e;
}

/*---------------------------------main-section-start---------------------------------*/

.section-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
}

.section-title span {
  color: #ff5f1e;
}


.client-diagram {
  background-image: url(../images/livfast-chart-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
  overflow: inherit !important;
  background-attachment: fixed;
}


/* .client-diagram {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #fff; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-diagram .container {
  position: relative;
  z-index: 2;
}

.dot-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 20px);
  grid-template-rows: repeat(auto-fill, 20px);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dot-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5f1e;
  opacity: 0.2;
  animation: blink 2s infinite ease-in-out;
  animation-delay: calc(var(--i) * 0.1s);
}

.dot-grid span:nth-child(1) { --i: 1; }
.dot-grid span:nth-child(2) { --i: 2; }
.dot-grid span:nth-child(3) { --i: 3; }
.dot-grid span:nth-child(4) { --i: 4; }
.dot-grid span:nth-child(5) { --i: 5; } */
/* ...repeat for more dots or use JS for many dots */

/* @keyframes blink {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
} */


.about-section {
  text-align: center;
}

.about-section h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2rem;
}

.about-section h2 span.shortTitle {
  font-size: 1.2rem;
  color: #868686;
  display: inline-block;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
  padding: 7px 20px 7px 30px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.about-section h2 span.shortTitle:before {
  content: '';
  border-radius: 100px;
  background-color: #fc7510;
  position: absolute;
  width: 9px;
  height: 9px;
  left: 14px;
  top: 15px;
}

.about-section h3 {
  border-radius: 50px;
  width: 21%;
  text-align: center;
  margin: 0 auto;
  padding: 13px 13px 13px 30px;
  text-transform: uppercase;
  color: #868686;
  font-weight: 600;
  position: relative;
}

.about-section h3::before {
  border-radius: 100px;
  background-color: #fc7510;
  top: 23px;
  left: 32px;
  position: absolute;
  width: 9px;
  content: '';
  padding: 5px 2px;
  height: 1px;
}

.common-btn {
  background-color: #fff;
  border-radius: 50px;
  border: #ff5f1e solid 2px;
  padding: 6px 30px;
  font-size: 1.1rem;
  color: #ff5f1e;
  transition: all 0.5s;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
}

.common-btn:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 600;
  position: absolute;
  left: 79%;
  top: 32%;
  right: 5%;
  bottom: 0;
  opacity: 0;
}

.common-btn:hover {
  background: #ff5f1e;
  transition: all 0.5s;
  padding: 6px 3.5rem 6px 3.5rem;
  color: #fff;
}

.common-btn:hover::after {
  opacity: 1;
  transition: all 0.5s;
}

.main {
  background-color: #fff;
}

.register-as-dealer {
  background-color: #ff6729;
}

.register-col,
.livfast-col {
  border: #000 solid 2px;
  background-color: #fff;
  font-weight: 500;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.register-as-dealer h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.register-col:before {
  content: '';
  background-image: url('../images/register-icon.png');
  background-position: center center;
  background-repeat: no-repeat;
  width: 80px;
  height: 143px;
  position: absolute;
  left: -82px;
  top: 40px;
}

.livfast-col:before {
  content: '';
  background-image: url('../images/register-icon2.png');
  background-position: center center;
  background-repeat: no-repeat;
  width: 80px;
  height: 143px;
  position: absolute;
  left: -82px;
  top: 40px;
}

/****** Best Sselling ******/

.min-height {
  min-height: 465px;
}

.pro-RangeBox {
  background-color: #fff;
  border-radius: 10px !important;
}

.pro-RangeBox p {
  margin: 0;
  padding: 0;
}

.best-selling {
  background-image: url(../images/livfast-chart-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
}

.pro-box {
  background: #f0f0f0;
  margin-top: -50px;
  border-radius: 15px;
}

.pro-box-gradient {
  background: linear-gradient(45deg, #ff8959 49%, #ffffff 49%, #ffffff 49%);
  transition: all 0.5s ease-in-out
}

.pro-box:hover {
  background: #ff8959;
}

.pro-RangeBox a {
  color: #000;
  text-decoration: none;
}

.pro-box-content h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.pro-box-content .fa-long-arrow-right {
  color: #ff5f1e;
  font-weight: 600;
}

.social-media-section {
  background-color: #f2f4f7;
}

.pro-box .zoom-effect {
  transition: 0.5s all ease-in-out;
  position: relative;
}

.pro-box:hover .zoom-effect {
  transform: scale(1.1);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: inherit;
}

.nav-pills .nav-link.facebook-icon {
  background-color: #325193;
}

.nav-pills .nav-link.instagram-icon {
  background-color: #ce0076;
}

.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: .25rem;
  padding: 15px 50px;
  min-height: 67px;
  margin: 0px 3px;
}

.nav.nav-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

/********** Search *******/

#search-section form {
  border: 1px solid black;
  border-radius: 50px;
  background-color: white;
  height: 50px;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, .13);
  padding-left: 15px;
}

.outbox {
  height: 500px;
}

.form-control:active,
.form-control:focus {
  border-color: #ff5f1e;
  outline: none;
  box-shadow: none;
}

#search-section form .btn-primary {
  margin-right: 8px;
  background-color: #ff5f1e;
  border-color: #ff5f1e;
  border-radius: 50px;
  padding: 7px 40px;
}

#search-section form .form-control {
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background-image: url(../images/footerbg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 0rem 6rem rgba(0, 0, 0, .175) !important;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ff4a17;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff5f1e;
}

#footer .footer-top .footer-links img {
  margin-top: -30px;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ef4036;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ff5e31;
}

#footer .copyright {
  text-align: center;
  background-color: #e7e3e3;
  padding: 10px;
  color: #000;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

.footerbot-link {
  background-color: #ff5f1e;
  color: #fff;
}

.footer-links address {
  color: #fff;
  position: relative;
  padding-left: 40px;
  font-size: 16px;
}

.footer-links address .bx {
  position: absolute;
  left: 0;
  top: 5px;
}

.footerbot-link {
  margin: 0;
  padding: 10px;
}

.footerbot-link li {
  display: inline-block;
  list-style: none;
}

.footerbot-link li a {
  color: #fff;
  border-right: #000 solid 1px;
  padding: 0px 15px;
}

.footerbot-link li:last-child a {
  border: none;
}

.footer-address {
  position: relative;
}

.footer-address::before {
  content: "\f041";
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 30px;
}

@media(min-width:768px) {
  .client-diagram img {
    max-width: 550px;
	width:550px;
  }

}


@media (max-width:767px) {

  .header {
    text-align: center;
  }

  .header-logo img {
    width: 150px;
    padding-bottom: 10px;
  }

  .subscription-section {
    padding: 0px 25px;
  }

  .stellarnav {
    text-align: right;
  }

  .about-section h2 {
    font-size: 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .pro-RangeBox {
    margin-bottom: 75px !important;
  }

  .livfast-range {
    padding-bottom: 0 !important;
  }

  .register-col,
  .livfast-col {
    border-radius: 10px !important;
    margin-bottom: 25px;
    max-width: 329px;
    float: right;
  }

  .best-selling {
    padding-bottom: 0px !important;
  }

  .nav-pills .nav-link {
    padding: 5px 15px;
  }

    .request-content p {
        padding-top: 35px;
            font-size: 1.3rem !important;
  }
  .common-btn {
    margin-bottom: 40px;
  }

}

@media (min-width:768px) and (Max-width:991px) {
  .header-logo img {
    max-width: 170px;
    padding-bottom: 15px;
  }

  .mainmenu {
    text-align: right;
  }

  .about-section span.oragnge br {
    display: none;
  }

  .client-diagram img {
    max-width: 600px;
  }

}

@media(min-width:1024px) and (max-width:1199px) {
  .stellarnav.light li a {
    font-size: 0.8rem;
  }
}

/*---------------------------------main-section-stop---------------------------------*/


/**** Internal Banner *****/

.internal-banner img { text-align: center; width: 100%;}
.page-title { 
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    top: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: start;
    align-items: center;
    left: 12%;
    font-size: 3rem;
}

.punchLine-section {
    background-image: url(../images/livfast-chart-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 500;
}

/*** Content Brief ***/

.content-brief {
    background-color: #fff;
    padding: 0;
}

.content-leftText {
    padding: 50px 0px;
}

.contentTitle {
    font-size: 1.1rem;
    line-height: 26px;
}

.request-information {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.request-infobg {
    background-image: url(../images/get-in-touch.jpg);
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    margin-left: 0;
}

.request-content {
    color: #fff;
    padding: 0px 50px;
    text-align: center;
    position: relative;
}

.request-content h2 {
    color: #fff;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

.request-content p {
    color: #d7d7d7;
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.founderBox img {
  margin-top: -100px;
}

.founder-title {
   background: #ff5f1e;
    color: #fff;
    border-radius: 10px;
    margin-top: -10px;
    position: relative;
    font-size: 1.5rem;
}

.founder-title h3 {
  font-size: 2rem;
}

.founderBox {
  margin-top: 50px;
}

.founderBox {
  box-shadow: -12px 8px 0px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: -12px 8px 0px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -12px 8px 0px 0px rgba(0,0,0,0.75);
}


.padding50 {
    padding: 50px 0px !important;
}
.hrms-serv-row {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
}
.redbg {
    background-color: #ed1c24;
}
.white-bg {
    background-color: #fff;
    overflow: hidden;
}
.black-bg { background-color: #000;}
.hrms-pad {
    padding: 50px;
    color: #fff;
}
.hrms-content {
    padding: 0px;
    position: relative;
}
.hrms-content .col-lg-6:nth-child(1).borderline:after, .hrms-content .col-lg-6:nth-child(3).borderline:after {
    content: '';
    position: absolute;
    background-color: #e1e1e1;
    width: 1px;
    height: 100%;
    left: 100%;
    top: 0;
}
.hrms-content .col-lg-6:nth-child(1).borderline:before, .hrms-content .col-lg-6:nth-child(2).borderline:before {
    content: '';
    position: absolute;
    background-color: #e1e1e1;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}
.hrms-content .col-lg-6:nth-child(4).borderline:before, .hrms-content .col-lg-6:nth-child(3).borderline:before {
    content: '';
    position: absolute;
    background-color: #e1e1e1;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
}

.hrms-content .col-lg-6:nth-child(5).borderline:after {
    content: '';
    position: absolute;
    background-color: #e1e1e1;
    width: 1px;
    height: 100%;
    left: 100%;
    top: 0;
}


.hrms-contentIcon {
    padding: 25px;
}
.hrms-contentIcon h3 {
    margin-top: 10px;
    color: #ff5f1e;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 35px;
}
.hrms-contentIcon p {
    line-height: 21px;
    margin-top: 5px;
    color: #505050;
    font-size: 16px;
}
.borderline { position: relative;}

.aimactLogo {
  background-color: #f29200;
}

.product-section {
  position: relative;
}

.production-row {
   position: relative;
  overflow: hidden;
}

.production-row .button-text { margin-bottom: -10px;}

.production-row::before {
    content: '';
    background-image: url(../images/layer-shape.png);
    background-size: cover;
    position: absolute;
    left: -250px;
    top: 0;
    width: 411px;
    height: 351px;
    z-index: -1;
}

.production-row::after {
    content: '';
    background-image: url(../images/layer-shape-right.png);
    background-size: cover;
    position: absolute;
    right: -250px;
    top: 0;
    width: 411px;
    height: 421px;
    z-index: -1;
}

.readmore-link { 
    font-size: 0.9rem;
    color: #ff5f1e !important;
    font-weight: 500;
    margin-top: 9px;
    display: inline-block;
}

.product-section .pro-box-content h2 {
  margin: 0 !important;
}

.button-text { bottom: 23px; display: inline-block; }

.button-text::before {
  content: '';
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  width: 54px;
  height: 68px;
  position: absolute;
  top: 12px;
  left: -45px;
}

.smarter-power { background: #fceee5; text-align: center; }
.power-list-col { background-color: #fff; min-height: 465px;}
.power-icon {     background-color: #ff5f1e;
    border-radius: 100px;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    padding: 15px; 
  }

.powerlist-content h3 {
      font-size: 1.5rem;
    margin-bottom: 15px;
}

.power-list-col:hover {
  background-color: #000;
  color: #fff;
}

.faq-section { background-color: #ebf0f9; text-align: center; }




@media( max-width:767px ){
  .page-title {
    left: 7%;
    font-size: 1.5rem;
}
 .power-list-col {
      min-height: 375px;
 }
}

/*** accordion item start ***/


.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
}
.accordion-body {
      font-size: 0.9rem;
          color: #706f6f;
}

/*** contact page start ***/

.contact-page h2 { font-size: 1.5rem;}

.contact-page .address { font-size: 1.2rem; font-weight: 600;}

.contact-details {
      font-size: 18px;
}
.contact-details .fa {
  margin-right: 10px;
}
.organge-gradient {
    background: linear-gradient(to right, #ff8959 0, #ff5f1e 100%);
}

.stellarnav.desktop li.mega .has-sub a {
    padding-right: 5px;
    font-weight: 400;
    text-transform: capitalize !important;
	white-space: nowrap; 
}

.stellarnav.desktop > ul > li.mega > ul > li > a {
    color: #ff5f1e;
    text-transform: capitalize;
    font-size: 1rem;
	white-space: normal; 
}

.stellarnav.desktop li.mega li li a {
    padding: 5px 15px;
    white-space: normal !important;
	font-size: 0.9rem;
}

.stellarnav.desktop > ul > li.mega > ul {
    border-bottom: #ff5f1e solid 5px;
    padding: 15px;
}


.counters { position:relative; }
.counters .counter { 
	color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 30px; 
	}

.counters .counter .counter-value, .counters .counter .counter-text {
	color: #fe8400;
    font-weight: 700;
    font-size: 4rem;
}
.counters .count3 {
	position: absolute;
    top: 44%;
    margin-left:50px;
}

.counters .count2 {
	position: absolute;
    top: 45%;
    margin-right: 140px;
    right: 0;
}

.counters .count4 {
	position: absolute;
    bottom: 5%;
    margin-left: 108px;
}

.counters .count5 {
	position: absolute;
    bottom: 7%;
    margin-right: 80px;
    right: 0;
}

.stellarnav {
    z-index: 9 !important;
}

.modal-home .modal-body .form-control {
	border-radius:50px !important;
}

.modal-home .modal-body textarea.form-control {
	border-radius:10px !important;
}

.modal-home .btn-primary {
	background: #ff5f1e;
	border-radius: 50px;
    text-transform: uppercase;
    padding: 5px 25px;
    font-weight: 600;
	border:none;
}

.modal-home .modal-content {
	background-image: url('https://www.livfastnigeria.com/public/frontend/assets/images/formbg.jpg');
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
    background-color: #f2f2f2;
	padding-top: 175px !important;
    text-align: center;
}

.modal-header { border:none !important; }
.modal-header .btn-close {
	top: 13px;
    position: absolute;
    right: 13px;
}

.stellarnav.desktop li.mega .has-sub a.dropdown-title { text-transform: uppercase !important; }

 .facebook-embed-container {
    position: relative;
    padding-top: 150%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }

  .facebook-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }