/* A-Z index css */
/* Common styles for both desktop and mobile */
.govsl-directory-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 35rem;
  border: 3px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px 20px 10px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.bl-divider {
  border: 1px solid #ddd;
}

/* Alphabetical links styles */
.govsl-directory-container-az {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 16px;
}

.govsl-directory-container-az li a,
.govsl-directory-container-az li a:visited {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 1%; /* Take full width on smaller screens */
  height: 44px;
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
  background-color: #ccecf2;
  border: 2px solid #377f9d;
  border-radius: 0.01rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: box-shadow 200ms, background-color 200ms;
}

.govsl-directory-container-az li a:hover {
  box-shadow: 0 0 0 3px #1b1b1b;
  background-color: #99deea;
  border: 0;
}

/* Active state */
.govsl-directory-container-az li a.is-active,
.govsl-directory-container-az li a.is-active:hover {
  box-shadow: 0 0 0 0.15rem #000;
  background-color: #fff;
}
.formcenter{
  margin-top: 10px;
  margin-left: 20%;
  margin-right: 20%;
  
}
/* Mobile styles using media query */
@media only screen and (max-width: 600px) {
  .formcenter{
    margin-left: 5%;
    margin-right: 0%;

  }
  .govsl-directory-page-container{
    /* width: 100%; */
    margin-right: 15%;
  }
  .govsl-directory-container-az {
      grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
      gap: 10px;
      
      
  }

  .govsl-directory-container-az li a {
      font-size: 1.2rem;
      padding-left: 10px;
      padding-right: 10px;
      width: 5%;
      
  }
}

/* Add other styles as needed */

/* Media queries can be simplified, consolidated, and removed based on needs */
@media all and (min-width: 64em) {
    .grid-container,
    .grid-container-card,
    .grid-container-card-lg,
    /* ... Add other grid-container styles ... */
    .grid-container-widescreen {
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media all and (min-width: 30em) {
    .mobile-lg\:grid-container,
    .mobile-lg\:grid-container-card,
    .mobile-lg\:grid-container-card-lg,
    /* ... Add other mobile-lg styles ... */
    .mobile-lg\:grid-container-widescreen {
        margin-left: auto;
        margin-right: auto;
        max-width: 64rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media all and (min-width: 40em) {
    .tablet\:grid-container,
    .tablet\:grid-container-card,
    .tablet\:grid-container-card-lg,
    /* ... Add other tablet styles ... */
    .tablet\:grid-container-widescreen {
        margin-left: auto;
        margin-right: auto;
        max-width: 64rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media all and (min-width: 64em) {
    .desktop\:grid-container,
    .desktop\:grid-container-card,
    .desktop\:grid-container-card-lg,
    /* ... Add other desktop styles ... */
    .desktop\:grid-container-widescreen {
        margin-left: auto;
        margin-right: auto;
        max-width: 64rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.govsl-directory-letter-heading {
    font-family: sans-serif;
    font-size: 38px;
    text-align: center;
    line-height: 57px;
    outline: solid .15rem #1b1b1b;
    width: 57px;
    height: 57px;
    margin-left: 10px;
    margin-top: 10px;
    
}


/* accordion css  */

/* Common styles for both desktop and mobile */
.accordionnewgrid {
  display: grid;
  grid-template-columns: 30% auto ;
  gap: 10%;
  margin-right: 3%;
  margin-top: 2px;
  margin-bottom: 10px;
}
/* .accordionnewgridcontainer1 {
  
} */
.accordionnewgridcontainer {
  text-align: left;  /*Center content in each container */
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media only screen and (max-width: 768px) {
  .accordionnewgrid {
    grid-template-columns: 100%; /* Change to a single column for mobile */
    gap: 15px;
    text-align: center;
  }
  .accordionnewgridcontainer {
    text-align: center; /* Center content in each container */
  }
}


.accordion-item {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
  margin-top: 10px;
}

.active1, .accordion-item:hover {
  background-color: #ccc;
}

.accordion-item:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active1:after {
  content: "\2212";
}

.panel-body {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.30s ease-out;
}

.imagesize {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    /* width: 270px; */
}

.container12 {
   /* display: flex;  */
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 30px;
  flex-direction: column;
  align-content: space-around;
}

.column {
    flex: 1; /* Equal width for both columns */
    margin-top: 10px;
    border-radius: 0.01rem;
    padding: 10px;
}

.column2 {
    flex: 1; /* Equal width for both columns */
    margin-top: 10px; /* Adjust the margin as needed */
    text-align: justify;
}


/* Media query for screens with a maximum width of 600px (typical for mobile devices) */
@media only screen and (max-width: 600px) {
  .container12 {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: flex-start;
  }
  .column {
    flex: 1; /* Equal width for both columns */
    margin-top: 10px;
    border-radius: 0.01rem;
    padding: 10px;
}

.column2 {
    flex: 1; /* Equal width for both columns */
    margin-top: 20px;
    text-align: justify;
}
  .imagesize{
    margin-left: 10%;
    margin-right: 20%;
    float: right;
  }
  .accordion-item,
  .panel-body {
      width: 100%; /* Full width on smaller screens */
  }

  
}





  form.example input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 70%;
    background: #f1f1f1;
  }
  
  form.example button {
    float: left;
    width: 20%;
    padding: 10px;
    background: #2196F3;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
  }
  
  form.example button:hover {
    background: #0b7dda;
  }
  
  form.example::after {
    content: "";
    clear: both;
    display: table;
  }
  .spacecontent{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
 
  .spacetop{
    margin-top: 10px;
  }



.navul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    
  }
  
  .navli {
    float: left;
  }
  
  .navli a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navli a.active {
    color: white;
}
.navli a.actives {
    color: white;
}
.navli a:hover:not(.active) {
    background-color: #111;
}


.white-text {
    color: white;
}

/* Slideshow container */
.slideshow-container {
    
    position: relative;
    margin-top: 10px;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }
  .accordion1-item1 {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    margin-top: 10px;
}

.accordion1-item1:hover {
    background-color: #ccc;
}

/* Home page importan links Css */
/* Float four columns side by side */
.columnhome {
  width: 25%;
  margin-left:50px;
  padding: 30px 30px 30px 30px;
  box-sizing: border-box; /* Include padding and border in the width */
}

/* Center the columns */
.rowhome {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
  margin: bottom 10px;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .columnhome {
    width: 100%;
    margin-bottom: 20px;
    
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: white;
  
}
.links-container {
    padding-bottom:10px;
    text-align: left;
}
.a{
    margin-top:10px;
    margin-bottom:10px;
}
.row1-boxes {
  display: flex;
}

.newcss{
  list-style-type: none;
}


.col1-1 {
    flex: 1;
   /* margin-right: 10px;  Adjust the margin as needed for spacing */
}

.govlk_wrapper_loadmore1 {
    flex: 1;
}
/* Add this to your CSS file or style section */
.no-outline {
    outline: none;
}
/* Add this to your CSS file or style section */
.flink-border-bottom {
    border-bottom: none;
}

.active4 {
    background-color: #0178BA;
}
/* Add this to your CSS file or style section */
.govk-wrapper-heading a {
    font-weight: bold;
}
/* Add this to your CSS file or style section */
.footer-topic.important_links {
    font-weight: bold;
}

/* Footer Css */
.bp-footer p {
  color: #b7b7b7;
  line-height: 25px !important;
}
.bp-footer.top-section {
  padding-bottom: 16px;
}
.bp-footer {
  padding: 2rem;
  background-color: #015989;
}
article, aside, figure, footer, header, hgroup, section {
  display: block;
}
.bp-footer .row {
  justify-content: flex-start;
}

.row:not(.is-desktop) {
  display: flex;
}
.row:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.col.is-one-quarter, .col.is-one-quarter-tablet {
  flex: none;
  width: 25%;
}
.padding--bottom--lg {
  padding-bottom: 2rem !important;
}
.col {
  word-wrap: break-word;
}
.col {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
  max-width: 100%;
}
.bp-footer .row {
  justify-content: flex-start;
}

.row:not(.is-desktop) {
  display: flex;
}
.row.is-multiline {
  flex-wrap: wrap;
}
.row:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}

.col.is-four-fifths, .col.is-four-fifths-tablet {
  flex: none;
  width: 80%;
}
.col.is-multiline {
  flex-wrap: wrap;
}
.col {
  word-wrap: break-word;
}
.row {
  
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.row.is-top{
  margin-left: 50px;
}
.col {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
  max-width: 100%;
}
#footer_heading_color{
  color:white;
  margin-bottom: 15px;
}
#social-link-desktop{
  color:white; 
}
.is-hidden-mobile{
  margin-bottom: 10px;
}
.service-title {
  color: #1d70b8; /* Replace #ff0000 with your desired color code */
}
/* Style the counter cards */
.card {
  width:80%;
  height: 60px;
  box-shadow: 0 4px 8px 0 rgba(0.2, 0.2, 0.2, 0.2);
  padding: 20px;
  text-align: center;
  margin-left:15px;
  background-color: #f1f1f1;
  margin-top:20px;
}
.setpical{
  margin-top:20px;
}

.col-4-cs {


padding-top: 10px;
padding-right: 0px;
margin-right:0px;
margin-left:0px;
margin-bottom:20px;
box-sizing: border-box;
}

/* quick link css */


.quicklink-sub1{
  list-style-type: none;
  
}
.quicklinkgrid {
  display: grid;
  grid-template-columns: 20% 20% 20% ;
  gap: 15%;
  margin-right: 3%;
  margin-top: 2px;
  margin-bottom: 10px;
  padding-left: 10%;
}

.quicklinkgridcontainer {
  text-align: center; /* Center content in each container */
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media only screen and (max-width: 768px) {
  .quicklinkgrid {
    grid-template-columns: 100%; /* Change to a single column for mobile */
    margin-bottom: auto;
    gap: 0px;
    text-align: center;
  }
}

/* important links css */
.importanlinkgrid {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  gap: 10px;
  margin-right: 3%;
  margin-top: 2px;
  margin-bottom: 10px;
}

.importanlinkgridcontainer {
  text-align: center; /* Center content in each container */
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media only screen and (max-width: 768px) {
  .importanlinkgrid {
    grid-template-columns: 100%; /* Change to a single column for mobile */
    gap: 15px;
    text-align: center;
  }
}


/* Footer mobile css */
.footerallpage-sub1 {
  list-style-type: none;
  padding-bottom: 10px;
}
.footerallpage-sub1 li {
  margin-bottom: 10px;
}


.footerallpagegrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-right: 3%;
  margin-top: 2px;
  margin-bottom: 10px;
  /* padding-left: 10%; */
}

.footerallpagegridcontainer {
  text-align: center; /* Center content in each container */
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media only screen and (max-width: 768px) {
  .footerallpagegrid {
    grid-template-columns: 100%; /* Change to a single column for mobile */
    margin-bottom: 10px;
    gap: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.social-icon {
  width: 40px;
  filter: invert(100%); /* Invert color to white */
}

