@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Quicksand', sans-serif;
}

html{
	scroll-behavior: smooth;
	}
body{
    min-height:100vh;
    font-size:16px;
}

a{
    text-decoration:none;
}

.topbar{
    background:#009933;
    width:100%;
    color:white;
    font-size:1rem;
    font-weight:400;
    position:fixed;
}

.icon{
   margin:0 5px;
}

.phone{
    margin-left:20px;
}
.top{
    background:#2c3e50;
    color:#fff;
    height:40px;
    padding:0.3125em;
    display:flex;
    align-items:center;
    justify-content: center;
    font-weight:500;
    font-size:0.9em;
}

nav{
    box-shadow: 0px 15px 10px -15px #111; 
    width:100%;
    z-index:1000;
    background:rgba(255, 255, 255, 0.95);
    height:100px;
    display:flex;
    justify-content: center;
    align-items:center;
    position:sticky;
    top:0;
    }

.container{
    width:90%;
    max-width:1300px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 auto;
    
}nav .wrapper{
    width:90%;
    max-width:1300px;
    display:flex;
	justify-content:space-between;
    align-items: center;
    margin:0 auto;
    height:100%;
    
       
}
.container{
    width:90%;
    max-width:1300px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 auto;
}

.logo{
    width:300px;
    display:flex;
    justify-content: center;
    align-items: center;
    height:100px;
}

.menu{
    width:75%;
    
}


.menu li a{
    color:#333;
    text-transform: uppercase;
    font-weight:600;
    transition:all 0.3s ease-in-out;
    font-size:0.9rem;
    height:100px;
    display:flex;
    justify-content: center;
    align-items: center;
    
}

.menu{
    list-style:none;
    display:flex;
    gap:2rem;
    justify-content: flex-end;
}


.menu li{
    text-align:center;
    position:relative;
}





.menu li a:hover, .menu li a:focus{
     color:#ff781f;
     font-weight:700;
     
   
}

.menu .current{
    color:#ff781f;
    font-weight:700;
}

.logo a{
    height:100px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.logo a img{
    width:100%;
    height:auto;
}

.menu-icon{
	display:none;
	}

.menu-btn{
        display:none;
    }
/*** Submenu ****/

.dropdown{
    display:block;
    position:relative;
           
}

.submenu{
    display: block !important;
	overflow: hidden !important;
	max-height:0;
	transition:max-height 0.3s ease-out;
	position:absolute;
    width:200px;
    z-index:1000;
     
}

.submenu a{
	display:block;
	width:100%;
	overflow:hidden;
	color: #fff !important;
	font-size:0.95rem !important;
	background:#ff781f;
	height:50px!important;
    text-transform:capitalize!important;
            
}

.submenu a:hover{
	background:#1d2553;
}

.dropdown:hover .submenu{
	max-height:15em;
}

/***SLIDER***/
#carousel{
    position:relative;
    height:500px;
    width:100%;
}
 .slider{
     position:relative;
     overflow:hidden;
     height:100%;
     width:100%;
 }
 .slide{
     position:absolute;
     top:0;
     left:0;
     width:100%;
     height:100%;
     opacity:0;
     transition:opacity 0.4s ease-in-out;
    }
    .slide.oga{
        opacity:1;
    }

    .slide .content{
        position:absolute;
        bottom:70px;
        width:600px;
        opacity:0;
        left:-600px;
        padding:35px;
    }

    .slide .content h1{
       font-size:3rem;
       color:#fff;
       text-shadow: 2px 2px 8px #000000;
       font-weight:700;
       margin-left:2rem;
    }

    .slide .content p{
        font-weight:700;
        color:white;
        margin-left:2rem;
        text-shadow: 2px 2px 8px #000000;

     }

    .slide.oga .content{
        opacity:1;
        transform:translateX(600px);
        transition:all 0.7s ease-in-out 0.3s;
    }

    button#next{
        position:absolute;
        top:45%;
        right:15px;
    }
    button#prev{
        position:absolute;
        top:45%;
        left:15px;
    }

    .buttons button{
        border:2px solid #fff;
        background-color: transparent;
        color:#fff;
        cursor: pointer;
        padding:10px 14px;
        border-radius: 50%;
        outline:none;
    }
    .buttons button:hover{
        background-color: #fff;
        color:#333;
    }
    .slide:first-child{
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix1.jpg') no-repeat center center/cover;
    }
    .slide:nth-child(2) {
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix2.jpg') no-repeat center center/cover;
    }
    .slide:nth-child(3) {
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix3.jpg') no-repeat center center/cover;
    }
    .slide:nth-child(4) {
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix4.jpg') no-repeat center center/cover;
    }
    .slide:nth-child(5) {
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix5.jpg') no-repeat center center/cover;
    }
    .slide:nth-child(6) {
        background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url('../images/pix6.jpg') no-repeat center center/cover;
    }
    
/*END SLIDER*/

/***PRICE_GRID***/
#content{
    padding:100px;
}

.content-heading h1{
    font-size:2.5rem;
    color:#333;
    text-align:center;
    margin-bottom:50px;
    font-weight:700;
}

.price-grid{
	display:flex;
	justify-content:center;
    flex-wrap: wrap;
    text-align:center;
  
}

.card{
	background:linear-gradient(#6a89cc, #130f40);
	color:white;
	padding:2.5rem;
	font-weight:700;
	text-align:center;
	width:18.75em;
    transition:all 0.5s ease-out;
    cursor:pointer;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
    border-radius:10px;
    margin:1rem;
}

.card:hover{
	transform: translateY(-10px);
}

.card a{
    display:inline-block;
    padding:0.7em 1em;
    font-size:0.9em;
    background:linear-gradient(#d35400, #e67e22);
    color:white;
    border-radius: 5px;
    margin:2em auto;
    white-space: nowrap;
}
.card-alt{
	background:#130f40;
}
.card-text{
	font-size:0.85rem;
}

.card-image i{
	font-size:3rem;
    color:orange;
}
.caption{
	text-align:center;
}

.my-button{
	background:steelblue;
	color:white;
	border:none;
	padding:10px 20px;
	font-size:0.9em;
	margin:15px auto;
	border-radius:20px;
}

.card-title h2{
	margin:30px 0;
    font-size:1.7rem;
    font-weight:700;
}
/***END PRICE GRID***/
.call-us{
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/naira_note.jpg');
	background-attachment:fixed;
	background-size:cover;
	background-position:center;
	padding:5rem 2rem;
	display:flex;
	justify-content:center;
	align-items:center;
}

.call-us-content{
    color:white;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:5rem;
    width:70%;

}

.call-us-card h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
    text-align: center;
    color:orange;
}

.unique{
    padding:1rem;
    background:rgba(29,37,83,0.5);
}

.location{
    display:flex;
    justify-content:flex-start;
    align-items: center;
    gap:0.5rem;
    margin-bottom:0.8rem;
    border-bottom:1px solid rgba(29,37,83,0.7);
    padding-bottom:0.8rem;
}

.location-icon i{
    color:orange;
    font-size:2rem;
    margin-left:1rem;
}
.call-us-card p{
    text-align:center;
}

.sticky{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
}
/***open account***/
.open-account{
    padding:5rem 2rem;
    width:100%;
    background:linear-gradient(#f2f2f2, #fff);
}

.oa-container{
    justify-content:space-between;
    height:100%;
}
.open-account h1{
    font-weight:700;
    color:#333;
    margin-right:2rem;
    font-size:1.5rem;
    text-align:center;
    margin:0 auto;
    
}

.open-account a{
    display:block;
    background:rgb(255, 120, 16);
    padding:1rem 2em;
    border-radius:2rem;
    transition:all 0.5s ease;
    color:white;
    font-weight:700;
    font-size:1em;
    white-space: nowrap;
}

.open-account a:hover{
    background:rgba(255, 120, 16, 0.7);
    color:#333;
    }
/***End open account***/
/**footer-start**/
footer{
    background:linear-gradient(#273c75,#192a56);
    color:white;
    
}

.footer-container{
    width:90%;
    max-width:1300px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
    height:100%;
}

.footer-links{
    display:flex;
    justify-content: space-between;
    padding:5rem 2rem;
}
.footer-links-card{
    width:22%;
    
   
}
.footer-links-card-logo{
    width:70%;
    margin-bottom:20px;
}


.footer-links-card-logo img{
    width:100%;
    
}

.footer-links-card h2{
    margin-bottom:30px;
}

.footer-links-card-links a{
    display:block;
    color:white;
    height:30px;
    line-height:30px;

}


.footer-links-card-links a:hover{
    color:orange;
    font-weight:700;

}

.footer-links-card:first-child{
    width:45%;
}

.copyright{
    background:#333;
    font-size:0.85rem;
    padding:1rem 2rem;
}

.copyright-container{
    width:90%;
    max-width:1300px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 auto;
    height:100%;    
}

/**footer-End**/
.accordion-window{
    margin:80px auto;
    display:block;
    line-height:30px;
    width:80%;
    height:100%;
}
.main-window{
    display:block;
    margin:5rem auto;
   
}
.main-window h1{
    text-align:center;
    font-size:2rem;
    margin:0 auto 2rem auto;
    color:#ff781f;
    font-weight:700;
}

hr{
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin-bottom:2rem;   
}

.main-window p{
    font-size:1.1rem;
    margin-bottom:2rem;
    font-weight:600;
    color:#333;
    text-align: justify;   
}

.vision{
    width:50%;
    margin:0 auto;
    text-align:center;
    margin:50px auto;
}
.vision h2{
    background:rgb(255, 120, 31);
    color:white;
    padding:1rem;
    text-transform:uppercase;
    font-size:2rem;
    border-radius:1rem 1rem 0 0;
    text-shadow:2px 2px 8px #000;
    border-bottom:2px solid white;
}


.vision p{
    background:#1d2553;
    color:white;
    padding:2rem;
    font-weight:700;
    border-radius:0 0 1rem 1rem;
}

.management{
    background:rgba(164, 182, 232, 0.05);
    padding:2rem;
    display:flex;
    justify-content: space-between;
    width:100%;
    gap:2rem;
    margin-bottom:2rem;
}
.avatar{
    width: 32%;
    text-align: center;
    
}

.management-profile{
    border-left:6px solid rgba(164, 182, 232, 0.5);
    padding-left:2rem;
    font-weight: 600;
    text-align:justify;
    width:65%;
}

.avatar-image{
    width:100%;
}

.avatar-image img{
    border-radius:50%;
    margin:0 auto;
    display:block;
}

.avatar-text{
    background:rgb(255,120,31);
    color:white;
    font-weight:700;
    margin-top:1rem;
    text-align:center;
    width:100%;
}

.certification{
    font-size:0.7rem;
    font-style: italic;
    margin-left:7px;
}


.role{
    display:block;
    font-size:0.8rem;
    margin-top:-5px;
}

.form-input{
    display:block;
    width:100%;
    height:3rem;
    margin-bottom:1rem;
    padding:0.5rem;
    outline:none;
    font-weight:700;
}

.form-input:focus{
    background:rgba(255, 120, 31,0.05);
    outline:none;
    border:none;
}

.ta{
    height:10rem;
}

.bs{
    background:rgb(255,120,31);
    color:white;
    font-weight:700;
    font-size:1.2em;
    border:none;
    transition:all 0.5s ease;
    cursor:pointer;
    }

    .bs:hover{
        background:rgba(255,120,31,0.4);
        color:#1d2553;
    }
.contact-info h2{
    margin-bottom:2rem;
}

.contact{
    display:flex;
    justify-content: space-between;
}

.contact-info{
    width:45%;   
}

.contact-info-inner{
    margin-bottom:2rem;
    text-align:center;
    border-bottom:0.5px solid rgba(0,0,0,0.2);
    padding:1rem;
}

.contact-info-details{
    font-weight:600;
}

.contact-info-icon i{
    color:#192a56;
    font-size:3rem;
}

.blanket{
    padding:80px 0;    
}

.blanket-inner{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

.blanket-inner h1{
   text-align:center;
   color:#ff781f;
   font-size:2.5rem;
   margin-bottom:10px;   
}

.profile{
    display:flex;
    justify-content: center;
    text-align:center;
    width:auto;
    flex-wrap: wrap;
    padding:20px;
    background-image:linear-gradient(145deg,#2c3e50,#95a5a6);    
}

.pix{  
        background-image:linear-gradient(#d1eff6,#f8eee6);
        color:white;
        padding:40px;
        display:flex;
        justify-content: center;
        align-items: center; 
        border-radius:5px 5px 0 0; 
}

.pix div{
    width:250px;
    height:250px;
    border-radius:50%;
    padding:4px;
    background:#1d2553;
    border:2px solid white;
}


.pix img{
    width:100%;
    height:100%;
    border-radius:50%;
}

.single-profile{
    width:350px;
    margin:20px;
    background:white;
    border-radius:5px;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black;
    border:2px solid #eee;    
}

.blanket{
	background:#f2f2f2;
}

.blanket-inner{
	width:100%;
    max-width:1200px;
    margin:0 auto;
	padding:30px 80px;
	background:#f2f2f2;
	}

.image-grid{
	padding:20px;
	background:white;
	display:grid;
	--gap:16px;
	--num-cols:4;
	--row-height:300px;

	padding:var(--gap);
	grid-template-columns:repeat(var(--num-cols), 1fr);
	grid-auto-rows:var(--row-height);
	gap:var(--gap);
}

.image-grid .foto img{
	width:100%;
	height:100%;
	object-fit: cover;
	cursor:pointer;
}

.major-col{
	grid-column:span 2;
}

.major-row{
	grid-row:span 2;
}

.features{
	padding:10px;
	background:white;
}

.features h3{
	color:#26a550;
}


.features p{
	color:#333;
	font-size:1.5rem;
	font-weight:700;
}
.blanket-card{
	background:white;
}
.blanket-card img{
	height:100%;
	width:100%;
}
.card .anchor{
	display:block;
	height:100%;
	width:100%;
	}
#lightbox{
	position:fixed;
	z-index:1500;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.8);
	display:none;

}
#lightbox.active{
	display:flex;
	justify-content: center;
	align-items: center;
}
#lightbox img{
	max-width:90%;
	max-height:80%;
	padding:4px;
	background-color:black;
	border:2px solid white;
}
.text{
    padding:2rem;
    padding-top:1rem;
}

.text h3{
    color:#ff781f;
    font-weight:700;
    font-size:1.1rem;
}

.text .role{
    color:#333;
    font-size:0.9rem;
    font-weight:600;
    font-style: italic;
}

.bio{
    margin-top:30px;
    text-align:justify;
    font-weight:500;
}

.products-container{
    padding:4rem 0;
    display:block;
    text-align:center;
}

.products-container h1{
    text-align:center;
    width:100%;
    background-image:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url('../images/naira_1.jpg');
    height:100px;
    display:flex;
    align-items: center;
    justify-content: center;
    color:white;
    font-size:2.5rem;
    font-weight:700;
    
}


.products-container div{
    width:100%;
    background:linear-gradient(#fcfcfd, #fff);
    padding:3rem 0;
        
}

.products-container div span{
    width:50%;
    font-size:1.2rem;
    text-align:center;
    font-weight:700;
    display:block;
    margin:0 auto;
}


.products-container a{
    padding:1em 2em;
    background:linear-gradient(#d35400, #ff781f);
    color:white;
    white-space: nowrap;
    display:inline-block;
    margin:1rem auto;
    text-align:center;
    font-size:1rem;
    font-weight:700;
    }

.products-container a:hover{
    background:#ff781f;
    }

/*Accordion*/
.accordion-wrapper{
    width:90%;
    max-width:1000px;
    margin:0 auto;
    }

.accordion-wrapper h1{
   text-transform:uppercase;
   margin:3rem auto;
   text-align: center;
   font-size:2.3rem;
   color:#e67e22;
   font-weight:700;
  
    }
    .accordion-wrapper hr{
        background-image:linear-gradient(to right, transparent, #303030, transparent);
    } 
.accordion-wrapper h3{
    text-align:center;
    margin-bottom:3rem;
    font-size:1.1rem;
    color:#333;
    }

.accordion{
    background:#f2f2f2;
    padding:1rem;
    margin-bottom:3rem;
}

.accordion-item{
    background:white;
    margin-bottom:2rem;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    
}

.accordion-item:last-child{
    margin-bottom:0;
      
}

.accordion-item-title{
    background:linear-gradient(#1d2553, #130f40);
    text-align:center;
    padding:1rem;
    font-size:1.5rem;
    color:white;
    font-weight:700;
    text-transform: uppercase;
}

.odd{
    background:linear-gradient(#e67e22, #d35400);
}


.accordion-item-body{
    background:white;
    text-align:center;
    padding:1rem;
    font-size:1.2rem;
    color:#333;
    font-weight:700;
}

/*Accordion End*/

/*Careers*/
.careers{
text-align:center;
}

.careers span{
    color:#273c75;

    }
/*Careers End*/
/*Mission Statement*/
.ms{
    width:100%;
    max-width:800px;
    font-size:2rem;
    margin:2rem auto;
    font-weight:bold;
    text-align:center;
    background:linear-gradient(transparent, #f2f2f2);
    padding:2rem;
}
/*End Mission Statemen*/
/***Responsive Breakpoint One***/
@media (max-width:71em){
    .top{
        display:none;
    }
    nav{
        display:block;
    }
    nav .wrapper {
        display: block;
        height:100px;
        line-height:100px;
             
         }
      
   .logo{
        float:left;
        display:block;
          
        }

    .menu{
        clear:both;
		background:#d35400;
		width:100%;
		display:block;
		position:fixed;
		top:100px;
		left:-100%;
		height:100vh;
		transition:all 0.5s ease-in-out;
        z-index:1000;
         }
             
.menu li a{
    display: block !important;;
    height:40px;
    line-height: 40px;
    text-align:center;
    color:#fff;   
    

}
             
.menu li a:hover{
    background:#ff781f;
    color:#fff;
}
    
.menu-icon{
	display:block;
    float:right;
	cursor:pointer;
	padding:28px 20px;
	position:relative;	
    margin-top: 20px;
}

    
    .menu-icon .nav-icon{
        background:#1d2553;
        display:block;
        height:4px;
        width:28px;
        position:relative;
        transition:background 0.2s ease-out;
        border-radius: 10px;
    }
    
    .menu-icon .nav-icon:before{
        background:#1d2553;
        content:"";
        display:block;
        height:100%;
        width:100%;
        position:absolute;
        transition:all .2s ease-out;
        top:7px;
        border-radius: 10px;
        
    }
    
    .menu-icon .nav-icon:after{
        background:#1d2553;
        content:"";
        display:block;
        height:100%;
        width:100%;
        position:absolute;
        transition:all .2s ease-out;
        top:-7px;
        border-radius: 10px;
    }
    
    .menu-btn{
        display:none;
    }
    
    .menu-btn:checked~.menu{
        left:0;
    }
    
    .menu-btn:checked~.menu-icon .nav-icon{
        background:transparent;
    }
    
    .menu-btn:checked~.menu-icon .nav-icon:before{
        transform:rotate(-45deg);
        top:0;
    }
    
    .menu-btn:checked~.menu-icon .nav-icon:after{
        transform:rotate(45deg);
        top:0;
    }
 
.submenu{
    display:block;
	overflow:hidden;
	max-height:0;
	transition:max-height 0.3s ease-out;
    width:300px;    
}

.submenu a{
    text-transform:lowercase;
}

.dropdown:hover .submenu{
	max-height:38em;
    position:absolute;
}

.wrapper{
    height:100px;
    line-height: 100px;
}
.footer-links {
    flex-direction: column;
}
.footer-links-card:first-child{
    width:100%;
}
.footer-links-card{
    width:100%;
    padding:2rem;
   
}
.footer-links-card-logo {
    width:100%;
}
.vision {
    width:100%;
}
}

@media (max-width:59em){
    .management{
        flex-direction:column;
    }
    #content {
        padding: 100px 0;
    }
    .avatar{
        width:100%;
    }
    .management-profile{
        border-left:none;
        padding-left:0;
        width:100%;
    }
    .contact{
        flex-direction:column;
    }

    .slide .content h1{
        font-size:2.0rem;
        width:40%;    
    }

    .slide .content p{
        font-size:0.9rem;
        width:40%;       
    }
    
.contact-info{
    width:100%;  
}
.oa-container h1 {
    margin-bottom:1rem;
     
 }
 .call-us-content {
    flex-direction: column;
 }

 .products-container div span{
    width:100%;
 }

 .products-container h1{
   font-size:1.5rem;
 }
 .footer-links{
    padding:0;
 }
 .blanket-inner h1 {
    font-size:1.5rem;
 }
}


@media (max-width:41em){
    .content-heading h1{
        font-size:2.0rem;
    }
    
.call-us-content{
    width:100%;

}
.copyright-container {
    flex-direction:column;
    text-align:center;
    
}

.copy{
    margin-bottom:1rem;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
}

   
}

@media (max-width:32em){
    .logo{
       width:200px;
    }
    .content-heading h1{
        font-size:1.5rem;
    }
    .blanket-inner{
        width:100%;
    }
    .oa-container {
        flex-direction:column;
        
    }

    .oa-container h1 {
       margin-bottom:1rem;
       text-align:center;
     
        
    }
    .oa-container a {
       width:100%;
       text-align:center;
         
     }
     .accordion-wrapper h1{
        font-size:1.5rem;
     }
   
}


@media (max-width:22em){
    .logo{
       width:150px;
    }
}
   