:root {
    --navy-blue: #06186a;
    --mid-blue: #2443ce;
    --light-blue: #70cddd;
    --box-shadow-blue: rgba(112,205,221,0.19);
    --primary-white: ghostwhite;
    --box-shadow: rgba(0, 0, 0, 0.2);
    --primary-black: #000;
    --faded-black: rgba(0, 0, 0, 0.6);
    --image-gray: #F0EFF4;
  } 
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .padding-two{
   padding: 10px 20px;
  }
  
  body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
    position: relative;
    background-color: var(--primary-white);
  }
  /* nav section */
  .nav-bar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-white);
    box-shadow: 0 0 5px var(--box-shadow);
  }
  .logo-div {
    width: 10%;
    height: 90px;
  }
  
  .logo-div img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .toggle-btn {
    display: none;
  }
  
  .link-section {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .links {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  
  .links .link a {
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333333;
    transition: 0.5s;
    font-weight: 400;
    transition: 0.5s;
  }
  
  .links .link a:hover {
    color: var(--mid-blue);
  }
  .links .link.preview a:hover + .catalogue-div{
   display: block;
  }


  /* generics  */
  .section-header{
    padding: 20px 0;
    font-size: 1.5rem;
    color: #222222;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 ;
}

/* container section */

.container-fluid{
    padding-top: 100px;
}



/* ---about section--- */

.about-us{
    padding: 10px 50px;
    background-color: var(--image-gray);
 }
 
 .kugadzirwa-card{
   padding: 20px;
 }
 .kugadzirwa-heading{
   font-size: 1.2rem;
   text-transform: uppercase;
   font-weight: 500;
   text-align: center;
 }
 
 .kugadzirwa-detail{
   text-align: center;
   font-weight: 380;
 }
 

 
 .about-us-card{
     margin: 5px auto;
     padding: 5px 10px;
     height: 300px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: space-evenly;
     background-color: var(--primary-white);
     text-align: center;
     transition: 1s;
     box-shadow: 0 0 3px var(--box-shadow);
   }
   .about-us-card:hover{
     transform: scale(1.1);
   }
   
   .clmn-header{
     color: var(--primary-black);
   }
   
   .clmn-header-text{
     font-size: 1.2rem;
     text-transform: uppercase;
     font-weight: 500;
   }
   
   .clm-icon{
     width: 50px;
     height: 50px;
     background-color: var(--mid-blue);
     color: var(--primary-white);
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     font-size: 2rem;
     font-weight: bold;
   
   }
   .clm-txt{
     font-weight: 350;
   }
 


/* -----Our Branches----- */

.branch-card{
    height: 400px;
    padding: 5px 0;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 3px var(--box-shadow);
}

.branch-name{
    height: 8%;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
    color: var(--light-blue);
    text-transform: uppercase;
}

.branch-details-div{
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.branch-details{
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}

.detail-text{
   padding: 0;
   text-transform: capitalize;
   font-size: 0.8rem;
}
.branch-map{
    width: 68%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}







/* ---contact us--------- */
.contact-us{
    margin: 0;
    background-color: var(--navy-blue);
  }
  
  .map-row{
    margin: 10px 0 0 0;
    padding: 0;
  }
  
  .contacts-section-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  
  }
  
  .contacts-section-card i{
    color: var(--light-blue);
  }
  
  .contact-section-heading{
    font-size: 1.4rem;
    color: var(--primary-white);
    padding: 20px;
  }
  .contact-div{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--primary-white);
    margin: 10px 0;
  }
  .contact-div-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
  }
  .quick-link{
    text-decoration: none;
    color: var(--primary-white);
    padding: 10px 5px;
  
  }
  
  
  .order-form{
    width: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .form-input-c{
   width: 100%;
   height: 50px;
   border-radius: 20px;
   padding: 20px;
   margin-bottom: 20px;
  }
  
  .form-input-c:focus,
  .form-input-c:valid{
    outline: transparent;
  }
  
  .form-text-area{ 
    width: 100%;
    border-radius:10px ;
    margin-top: 20px;
    padding: 20px;
  }
  
  .form-text-area:focus,
  .form-text-area:valid{
    outline: transparent;
  }
  
  .place-order-btn{
    padding: 15px 40px;
    background-color: var(--mid-blue);
    color: var(--primary-white);
    border: none;
    margin: 20px;
    border-radius: 20px;
    transition: 0.5s;
  }
  
  .place-order-btn:hover{
    background-color: var(--light-blue);
    color: var(--primary-white);
  }
  
  .place-order-btn:active{
    transform: scale(0.8);
  }
  
  .footer-devider{
    width: 90%;
    height: 5px;
    background-color: var(--primary-white);
    margin: 0 auto;
  }
  
  .social-media-div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .social-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .social-links a{
    text-decoration: none;
    color: var(--primary-white);
    padding: 5px;
    font-size: 1.5rem;
  }
  
  .copyright{
    font-size: 0.8rem;
    color: var(--primary-white);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  



  @media (max-width: 1000px){
    .branch-details-div{
      width: 100%;
      height: 90%;
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
  }
  .branch-details{
      height: 100%;
      width: 100%;
      padding-top: 5px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-evenly;
  }
  
  .detail-text{
     padding: 0 5px ;
     text-transform: capitalize;
     font-size: 0.8rem;
  }
  .branch-map{
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }

  .footer-devider{
    width: 100%;
    height: 5px;
    background-color: var(--primary-white);
    margin: 0 auto;
  }
  .social-media-section{
    display: flex;
    flex-direction: column-reverse;
    align-items: center  ;
    justify-content: baseline;
  }
  .social-media-div{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .social-links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
        
  }