{
    box-sizing: border-box;
  }
  
  .row::after {
    content: "";
    clear: both;
    display: block;
  }
  
  [class*="col-"] {
    float: left;
    padding: 15px;
  }
 /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}

  @media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
  }
  
  @media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
      width: 100%;
    }
  }
.header{
    padding-bottom:1rem;
    background-image: url(images/zakcbull_top.png);
    background-size: cover;
 }
 .topbar{
  margin-top:0px;
  background-color: #f1f1f1;
  width:100%;
  
  padding:5px 0;
  }
  .topbar a{
      text-decoration: none;
  }
  .navbar {
    margin-top:30px;
    background-color: #FF1000;
    display: flex;
    position: relative;
    width:100%;
    justify-content: space-between;
    font-size: 1.1rem;
    overflow: hidden;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
}
.navbar ul{
    display: flex;  
    list-style: none;
  }
.navbar li{
    list-style: none;
    text-decoration: none;
    padding:0.4rem;
    float:left;
    margin-right: 10px;
    
}
.navbar a{
    text-decoration: none;
  color:#f0f0f0;
}
.navbar li:hover {
    background-color: rgb(252, 198, 117);
    color:#FF1000;
    font-size: 1.4rem;
}
.navbar a:hover{
    text-decoration: none;
  color:black;
}
.checkbtn {
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }
 /* ------------------MOBILE DEVICES ----------------------------- */ 
  @media (max-width: 768px) {
   
    .checkbtn {
      display: block;
      order: 1;
      margin-right: 20px;
     
    }
   
    .navbar li {
        position: absolute;
        top: 90px;
        right: -100%;
        background-color:#FF1000;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
      }
      .navbar ul li {
        margin: 20px 0;
      }
    
      .navbar ul li a {
        font-size: 20px;
      }
    
      #check:checked ~ ul {
        right: 0;
      }
      .subdisplay{
        width:100%;
         margin:auto;
         background-color: white;
         justify-content: center;
         text-align: center;
          }
}

/* ------- END OF MOBILE MEDIA QUERY -------------*/

.service-menu{
    background-color: #16029e;
    font-weight: bold;
    font-size: 1rem;
    color:white;
    padding: 0 1rem;
}
.service-menu ul{
    list-style: none;
padding-top: 10px;
}
.service-menu li{
    padding:0.3rem;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 5px;
}
.service-menu li a{
    text-decoration: none;
    color:red;
    text-transform: capitalize;
}
.service-menu li:hover { 
    font-size: 18px; 
   color:#16029e;
 }
 .service-menu h1{
    animation: blink 1s infinite;
 }
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
 
.quot{
  background-color: #f1f1f1;
}
.form-input{
  padding:5px;
  width:100%;
    }
   .quotpr .form-input{
     margin-bottom:10px;   }







 .navigation{
    position: fixed;
    display:flex;
    justify-content:space-between;
     background:rbga(255,255,255,0.5);
     overflow:hidden;
   }
  .navigation ul{
    list-style-type: none;
    background-color: #727684;
    overflow: hidden;
    margin: 1rem;
    }
   
    .nav-btn{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .navigation li{
        list-style: none;
        text-decoration: none;
      border: solid 1px #f1f1f1;
      margin-right:0.4rem;
      border-radius: 1rem;
      background: #f1f1f1;
    }
    
     .navigation li a{
      display: block;
      padding:3px 8px;
      text-decoration: none;
      color:purple;
      font-family:fangsong;
       }
  .navigation li a:hover{
      background-color: white;
    color:black;
    }
  /* Hide the link that should open and close the topnav on small screens */
  .navigation .icon {
    display: none;
  }
  /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 600px) {
    .navigation a:not(:first-child) {display: none;}
    .navigation a.icon {
      float: right;
      display: block;
    }
  }
  @media screen and (max-width: 600px) {
    .navigation.responsive {position: relative;}
    .navigation.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navigation.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
  .mySlides{
    
  height:100%;
 }

 .mySlides img{
    width:100%;
    <!-- object-fit:cover; -->
   }

        .faq{
        flex: 1 1 40rem;
     }
     .faq .title{
        padding-bottom: .5rem;
        font-size: 1.5rem;
        color: var(--sub-color);
        text-transform: capitalize;
        text-align: center;
     }
     
    .faq .box{
        border-radius: .5rem;
        border: var(--border);
        margin-top: 0.3rem;
     }
     
    .faq .box h3{
        background-color: #191980;
        color: white;
        padding: 0.5rem;
        font-size: 1.1rem;
        border-radius: .5rem;
        cursor: pointer;
     }
     
    .faq .box p{
        padding:0.2rem 1.4rem;
        line-height: 1.5;
        font-size: 1.1rem;
        color: var(--sub-color);
        display: none;
     }
     
    .faq .box.active p{
        display: inline-block;
        margin-top: -20px;
     }
   .Services{
  /*background-image:url(../images/zakcbull-bg2.png );
background-size:cover;
  overflow:hidden; */
}
     .Services div{
  border:2px solid #191980;
  text-align:center;
  margin:15px 8px;
  overflow:hidden;
  border-radius:10px;
  height:400px;
    background-color:rgba(255,255,255,0.6);
    box-shadow:2px 5px;
    max-width:300px;
}
.Services h3{
  background-color:yellow;
  width:100%;
  padding:3px;
}
.Services img{
  max-width:100%;
}
.txt-center{
    text-align:center;
}
.footer{
    /*background-image:url(../images/footerbg.jpg);*/
   background-size:cover;
    margin-top:100px; 
    padding:10px 0px;
   text-align:center
  }
  .footer div{
    background-color:rgba(2, 70, 156, 0.8);
    font-family:helvetica; 
    color:white;
    text-align: center;
   padding:0px; 
   height: 200px;
  }
  .footer input{
    margin-bottom: 10px;
    font-size: 1.2rem;
    border-radius: 10px;
    width: 100%;
    text-align: center;
  }
  .footer div a{
    display: block;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
  }
  .footer a:hover{
   background-color: #faf8fa;
    color: rgb(250, 0, 0);
    text-decoration: none;
    margin-bottom: 10px;
  }
 .footer button{
  font-size: 1.2rem;
  border-radius:10px;
   padding:5px 30px;
 }