@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {
  --primary-color: gold;
}

body {
  background: #F2F2F2;
  margin: 0;
  font-family: 'Poppins';
}

.navbar {
  background:rgba(0,0,0,0.5); /*background: black;*/
  padding: 1em;
  position: fixed;
  top: 0;
  right: 0; 
  left: 0; 
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: gold;
  font-size: 1.2em;
}

.navbar .logo span {
  color: var(--primary-color);
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
}


a {
  color: #444444;
  text-decoration: none!important;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.search-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #000;
  height: 60px;
  border-radius: 40px;
  padding: 10px;

}

.search-form:hover > .search-txt{
  width: 240px;
  padding: 0 6px;
  top: 50px;
}
.search-form:hover > .search-btn{
  background: gold;
  color:#000; 
}
.search-btn{
  color: gold;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  text-decoration: none;
}
.search-txt{
border: none;
background: none;
outline: none;
float: left;
padding: 0;
color: white;
font-size: 16px;
transition: 0.4s;   
line-height: 40px;
width: 0px;
}
section {
  padding-top: 5em;
}

.hero {
  text-align: center;
  background-image: linear-gradient(180deg, black, white);
}

.left-col .subhead {
  text-transform: uppercase;
  font-weight: bold!important;
  color: rgb(32, 30, 30)!important;
  letter-spacing: .3em!important;
}

.left-col h1 {
  font-size: 2.5em!important;
  line-height: 1.3em!important;
  margin-top: .2em!important;
  color: white;
}

.left-col .primary-cta {
  background: var(--primary-color);
  color: black;
  text-decoration: none;
  padding: .6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.left-col .watch-video-cta {
  display: block;
  margin-top: 1em;
}

.left-col img {
  margin-right: .5em;
}

.hero-img {
  width: 100%;
  margin-top: 3em;
}

section.features-section {
  background: white;
  color: white;
}

.features-section li {
  text-align: center;
  padding: 1em 1em;
  width: 80%;
  margin: 0 auto 1em auto;
  border-radius: 1em;
}

.features-section img {
  display: none;
}

.testimonials-section {
  background:linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ), url("https://chow.padlog.com.ng/img/bg1.jpg") no-repeat center;
  background-attachment: fixed;
  color: white;
}

.testimonials-section li {
  background: #006BD6;
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}

.testimonials-section li img {
  width: 5em;
  height: 5em;
  border: 5px solid #006BD6;
  border-radius: 50%;
  margin-top: -4.5em;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-bottom: 5em;
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 300px;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 86%;
  right: 0;
  top: 0;
  background: #20272E;
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar nav a {
    color: #FFF;
    font-size: 1em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-premium-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 5em;
    font-weight: bold;
    margin-top: -.2em;
  }
  .navbar nav li.go-premium-cta a:hover {
    background: var(--primary-color);
    color: #000;
  }
  .search-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #000;
    height: 60px;
    border-radius: 40px;
    padding: 10px;
  
  }
  
  .search-form:hover > .search-txt{
    width: 240px;
    padding: 0 6px;
    top: 50px;
  }
  .search-form:hover > .search-btn{
    background: gold;
    color:#000; 
  }
  .search-btn{
    color: gold;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
  }
  .search-txt{
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: white;
  font-size: 16px;
  transition: 0.4s;   
  line-height: 40px;
  width: 0px;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 10em 4em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  .hero .container .left-col {
    margin: 3em 3em 0 5em;
  }
  .hero .container .left-col h1 {
    font-size: 3em;
    width: 90%;
  }
  .hero-img {
    width: 30%;
    margin-right: 8em;
  }
  .hero-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .primary-cta {
    margin-right: 1em;
  }
  ul.features-list {
    display: block;
    margin-left: 5em;
  }
  li {
    font-size: 1.2em;
  }
  li:before {
    width: 30px;
    height: 30px;
  }
  .features-section {
    position: relative;
  }
  .features-section img {
    display: block;
    position: absolute;
    right: 0;
    width: 350px;
    bottom: -2em;
  }
  .features-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .features-section ul li {
    margin: 0 0.6em;
  }
  .testimonials-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .fin-section {
    position: relative;
    margin-bottom: 10em;
  }
  .fin .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fin-left {
    position: absolute;
    left: 10%;
    top: 0;
    width: 40%;
    height: 100%;
  }
  .fin-right {
    position: absolute;
    right: 5%;
    top: 0;
    width: 40%;
    height: 100%;
  }
  .contact-section {
    position: relative;
  }
  .contact-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-left {
    position: absolute;
    left: 10%;
    top: 0;
    width: 40%;
    height: 100%;
  }
  .contact-right {
    position: absolute;
    right: 5%;
    top: 0;
    width: 40%;
    height: 100%;
  }
  .foots .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foots-one {
    position: absolute;
    left: 10%;
    top: 0;
    width: 30%;
    height: 100%;
    padding-top: 2em;
  }
  .foots-two {
    position: absolute;
    left: 45%;
    top: 0;
    width: 10%;
    height: 100%;
    padding-top: 2em;
  }
  .foots-three {
    position: absolute;
    left: 65%;
    top: 0;
    width: 10%;
    height: 100%;
    padding-top: 2em;
  }
  .foots-four {
    position: absolute;
    left: 85%;
    top: 0;
    width: 10%;
    height: 100%;
    padding-top: 2em;
  }
  .featured ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-right iframe {
    height: 100%;
  }
  .search-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #000;
    height: 60px;
    border-radius: 40px;
    padding: 10px;
  
  }
  
  .search-form:hover > .search-txt{
    width: 240px;
    padding: 0 6px;
    top: 50px;
  }
  .search-form:hover > .search-btn{
    background: gold;
    color:#000; 
  }
  .search-btn{
    color: gold;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    text-decoration: none;
  }
  .search-txt{
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: white;
  font-size: 16px;
  transition: 0.4s;   
  line-height: 40px;
  width: 0px;
  }
}

@media only screen and (min-width: 1200px) {
  .features-section:before {
    content: '';
    position: absolute;
    width: 10%;
    height: 20em;
    background: var(--primary-color);
    left: 0;
    top: -4em;
  }
  .features-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 20em;
    background: url(https://chow.padlog.com.ng/img/dots.svg) no-repeat;
    left: 4.5em;
    top: 2em;
  }
}
/*# sourceMappingURL=main.css.map */

/****************** featured start ****************/
.features{
  height: auto!important;
}
.featured{
  width: 100%;
  height:auto;
  min-height:100%;
  position: relative;
  padding: 15px 0;
  top: 6em;
  margin-bottom:15px 0 15px 0;
}
.featured:before{
  content: "";
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0;
  right: 0;
  opacity: .6;
  z-index: -1;
  background: linear-gradient(160deg, gold 52.8%, #000 0%);
}

.featured li {
  background: #000;
  text-align: center;
  padding: 2em 1em;
  width: 80%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}
.featured li:hover {
  background: #fff;
}
.featured ul li {
  margin: 0 1em;
}
.box{
  text-align: center;
 border-radius: 6px;
  transition: 0.3s ease;
  background: #000;
  
}
.box:hover{
  background: #fff;
  color: #000;
}
.box p{
  color: #E1E1E1;
}
.box h1{
  font-size: 22px;
  margin-top: 20px;
  color: #E1E1E1;
}
.box h2{
  font-size: 14px;
  color: #E1E1E1;
}
.box:hover p{
  color: #000;
}
.box:hover h1{
  color: #000;
}
.box:hover h2{
  color: #000;
}
.box a img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 20px;
}
.box a:after{
  content: "\f10d";
  font-family: FontAwesome;
  width: 40px;
  height: 40px;
  background: linear-gradient(to right, #0467B4 0%, #3ccdbb 0%, #16c9f6 100%);
  color: white;
  position: absolute;
  top: 120%;
  left: 70;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-indicators{
  position: absolute;
  right: 0;
  bottom: -60px!important;
}
.carousel-indicators li{
  background-color: #F7951D!important;
}
.menu nav{
  width: 20%;
  margin: 2% 42% 0 0;
  float: right;
}
.menu nav a{
  color: #331D0C;
}
.menu nav a:hover{
  color: #F7951D;
  border-bottom: #F7951D solid 1px;
}
.menu nav ul{
  margin: 0;
  padding: 0;
  display: flex;
}
.menu nav li {
  margin: 6% 5%;
}
.menu nav button{
  display: none;
}
@media only screen and (max-width: 500px) {
  /*shows elements in a column*/
  .menu nav{
      margin: 6%; 
      float: left;
  }
  .menu nav ul{
    flex-direction: column;
  }
  
  /* deletes margin on top or bottom of the a tag*/
  .menu nav li{
    margin: 3%;
  }
 /* makes sure that the a tag will take the entire screen*/
 .menu nav a{
    display: block;
  }
  
  .menu nav button{
      /*makes the button visible*/
      display: block;
      
      /*since we are here, we can style it a little bit!*/
      padding: 4%;
      font-size: 3vh;
      background: none;
      border: none;
      
      /*outline none removes the default blue border that appears anytime you click on the button*/
      outline: none;
      
      cursor: pointer;
    }
}
.pillar{
  width: 100%;
  margin: 1% 0 2% 0;
  padding: 1% 0 0 0;
  border-bottom: #971B1E solid 1px;
  color: #331D0C;
}
.title{
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  cursor: default;
}
.tbox{
  text-align: center;
  border: 1px solid rgba(136, 132, 132, 0.3);
  box-shadow:  0 5px 10px 0 rgba(0,0,0,0.3);
  border-radius: 6px;
  transition: 0.3s ease;
  padding: 8% 2% 4% 2%;
  height: 80px;
  margin-top: 10%;   
}
.tbox:hover{
  background: #F7951D;
}
.tbox h2{
  font-size: 16px;
  color: #E1E1E1;
}
.tbox:hover h2{
  color: #E1E1E1;
}
#mtitle{
  border-left: #E02124 solid 3px;
  color: #E02124!important;
}

#mbox{
  background: #E02124;
}
#mbox:hover{
  background: #F7951D;
  transform: scale(1.1);
}
#mbox h2{
  font-size: 16px;
  color: #E1E1E1;
}
#mbox:hover h2{
  color: #E1E1E1;
}
#stitle{
  border-left: #F7951D solid 3px;
  color: #F7951D!important;
}

#sbox{
  background: #F7951D;
}
#sbox:hover{
  background: #E02124;
  transform: scale(1.1);
}
#sbox h2{
  font-size: 16px;
  color: #E1E1E1;
}
#sbox:hover h2{
  color: #E1E1E1;
}
#ftitle{
  border-left: #0467B4 solid 3px;
  color: #0467B4!important;
}

#fbox{
  background: #0467B4;
}
#fbox:hover{
  background: #331D0C;
  transform: scale(1.1);
}
#fbox h2{
  font-size: 16px;
  color: #E1E1E1;
}
#fbox:hover h2{
  color: #E1E1E1;
}
/****************** featured end ****************/
.card-header{
  margin-bottom: 8px;
}
.accordion-title{
  position: relative;
  display: block;
  padding:8px 0 8px 50px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
  transition: all .4s ease-in-out; 
}
.accordion-title:hover{
  position: relative;
  display: block;
  padding:8px 0 8px 70px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
  transition: all .4s ease-in-out; 
  
}

#accordionExample i{
  position: absolute;
  width: 60px;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  background: radial-gradient(rgba(#213744, .8), #213744);
  text-align: center;
  border-right: 1px solid transparent;
}
#accordionExample i:hover{
  padding-left: 10px;
  background: #213744;
  color: #fff;
  border-right: 1px solid #fff;
}
.accordion-body{
  padding: 40px 55px;
  color: #000;
}
      
#accordionExample ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
#accordionExample li {
  padding-left: 1.2rem;
  text-indent: -1.2rem;
  text-decoration: none;
}
#accordionExample li:before {
  content: "\f10a";
  padding-right: 5px;
  font-family: "Flaticon";
  font-size: 16px;
  font-style: normal;
  color: #213744;
  text-decoration: none;
}
#accordionExample li:hover{
  padding-left: 60px;
  background: #213744;
  color: #fff;
  border-right: 1px solid #fff;
  text-decoration: none;
}
.description-block{display:block;margin:10px 0;text-align:center}
.description-block.margin-bottom{margin-bottom:25px}
.description-block>.description-header{font-size:16px;font-weight:600;margin:0;padding:0}
.description-block>.description-text{text-transform:uppercase}
.description-block .description-icon{font-size:16px}
.list-group-unbordered>.list-group-item{border-left:0;border-radius:0;border-right:0;padding-left:0;padding-right:0}
.list-header{color:#6c757d;font-size:15px;font-weight:700;padding:10px 4px}
.list-seperator{background-color:rgba(0,0,0,.125);height:1px;margin:15px 0 9px}
.list-link>a{color:#6c757d;padding:4px}
.list-link>a:hover{color:#212529}
.user-block{float:left}
.user-block img{float:left;height:40px;width:40px}
.user-block .comment,.user-block .description,.user-block .username{display:block;margin-left:50px}
.user-block .username{font-size:16px;font-weight:600;margin-top:-1px;color: #468eec;}
.user-block .description{color:#6c757d;font-size:13px;margin-top:-3px}
.user-block.user-block-sm img{width:1.875rem;height:1.875rem}
.user-block.user-block-sm .comment,.user-block.user-block-sm .description,.user-block.user-block-sm .username{margin-left:40px}
.user-block.user-block-sm .username{font-size:14px}
.img-lg,.img-md,.img-sm{float:left}
.img-sm{height:1.875rem;width:1.875rem}
.img-sm+.img-push{margin-left:2.5rem}
.img-md{width:3.75rem;height:3.75rem}
.img-md+.img-push{margin-left:4.375rem}
.img-lg{width:6.25rem;height:6.25rem}
.img-lg+.img-push{margin-left:6.875rem}
.img-bordered{border:3px solid #adb5bd;padding:3px}
.img-bordered-sm{border:2px solid #adb5bd;padding:2px}
.img-rounded{border-radius:.25rem}
.img-circle{border-radius:50%}
.img-size-32,.img-size-50,.img-size-64{height:auto}
.img-size-64{width:64px}
.img-size-50{width:50px}
.img-size-32{width:32px}
.size-32,.size-40,.size-50{display:block;text-align:center}
.size-32{height:32px;line-height:32px;width:32px}
.size-40{height:40px;line-height:40px;width:40px}
.size-50{height:50px;line-height:50px;width:50px}


.investor{
  font-size: 0.9em;
  color: #999;
  background-color: #E1E1E1!important;
}
.inv{
  background-color: white!important;
}
.investor h6{
  color: #971B1E;
}
.investor i{
  color: #331D0C;
}
.investor .explorex:hover {
  background-color: #F7951D;
  color: #fff;
}
.investor .explorex:hover > i{
  background-color: #F7951D;
  color: #fff;
}

.foot{
  background-color: fff!important;  
  color: #331D0C!important;
  position: fixed; 
  right: 0; 
  bottom: 0; 
  left: 0; 
  padding: 2rem;
  margin-top: 5%;
  font-size: 0.8em;
  font-weight: 200;
  z-index: 999;
}
.foots{
  position: fixed;
  background-color: #000!important;  
  color: #fff!important;
  right: 0; 
  bottom: 0; 
  left: 0; 
  padding: 1rem;
  margin-top: 5%;
  font-size: 0.8em;
  font-weight: 200;
  z-index: 999;
}

.foots li{ 
  list-style: none;
  padding-bottom: 5%;
  font-size: 1.1em;
  padding-left:0;
}
.foots a{ 
  color: white;
  text-decoration: none;
}
.foots p{ 
  font-size: 1.0em;
}
