/* Home section slider start */

#slider-section {
    position: relative;
}

#slider-section:hover .paginate-button {
    opacity: 1;
}

#slider-section .paginate-button {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid rgba(10, 81, 115, 0.9);
    color: rgba(10, 81, 115, 0.9);
    position: absolute;
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.21);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

#slider-section .paginate-button:hover {
    color: white;
    background-color: rgba(10, 81, 115, 0.9);
}

@media screen and (max-width: 1000px) {
    #slider-section .paginate-button {
        display: none;
    }
}

#slider-section .swiper-button-prev {
    left: 0%;
    top: 50%;
    transform: translate(-50%);
}

#slider-section .swiper-button-next {
    right: 0;
    top: 50%;
    transform: translate(50%);
}

#slider-section .swiper-button-prev::after {
    font-size: 25px;
}

#slider-section .swiper-button-next::after {
    font-size: 25px;
}

#slider-section .slider-container {
    /* margin: 3rem 0; */
    padding: 3rem;
    /* box-shadow: 0 0 1px 0 rgba(10, 22, 70, 0.06),
        0 16px 16px -1px rgba(10, 22, 70, 0.1); */
    /* border-radius: 18px; */
    background: #fff;
}

#slider-section .owl-item{
       /* box-shadow: 0 0 1px 0 rgba(10, 22, 70, 0.06),
        0 16px 16px -1px rgba(10, 22, 70, 0.1);
    border-radius: 18px; */
}

#slider-section .owl-stage-outer{
    box-shadow: 0 0 1px 0 rgba(10, 22, 70, 0.06),
    0 16px 16px -1px rgba(10, 22, 70, 0.1);
border-radius: 18px;
margin-top: 3rem;
}

#slider-section .slider-container .slider-title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    font-weight: 600;
    color: rgba(10, 81, 115, 0.9);
}

#slider-section .slider-container .slider-desc {
    color: #898989;
    line-height: 1.81;
    margin-top: 0.875rem;
    max-height: 8rem;
    /* text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

#slider-section .slider-container .slider-img {
    width: 100%;
    height: 390px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#slider-section .slider-container .slider-img:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#slider-section .slider-container .slider-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

#slider-section .slider-container .slider-img img {
    width: 100%;
    height: 100%;
}

#slider-section .slider-container .slider-button {
    --color: rgba(10, 81, 115, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    /* display: inline-block; */
    width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    font-size: 17px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
    background-color: white;
    margin-top: 1.2rem;
    cursor: pointer;
}

#slider-section .swiper-container {
    z-index: -100;
}

@media screen and (max-width: 1000px) {
    #slider-section .slider-container .slider-button {
        margin-bottom: 1.5rem;
    }
}

#slider-section .slider-container .slider-button::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 150px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
}

#slider-section .slider-container .slider-button:hover {
    color: white;
}

#slider-section .slider-container .slider-button:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

#slider-section .slider-container .slider-button:hover::before {
    top: -30px;
    left: -30px;
}

#slider-section.hidden{
    display: none;
}

/* #slider-section .slider-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */

#slider-section .slider-text{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width:768px) {
    #slider-section .slider-container .slider-img{
        height: 300px;
    }

}

@media screen and (max-width:968px){
    #slider-section .slider-row{
        flex-direction: column-reverse;
    }
    #slider-section .slider-col{
        margin-top: 1.3rem;
    }
}
/* Home section slider ends */

/* Card section start */
#cards-section {
    padding: 3rem 0;
}

#cards-section .box {
    /* border-radius: 1rem; */
    overflow: hidden;
    position: relative;
    height: 19.5rem;
    margin: auto;
    width: 80%;
    margin-top: 1rem;
    background: rgb(120, 138, 175);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
}
@media screen and (max-width: 1000px) {
    #cards-section .box {
        height: 17.5rem;
    }
}

#cards-section .box:hover .img {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}
/* #cards-section .box .cards-button{
  position: absolute;

} */

/* #cards-section .box .img {
  height: fit-content;
  width: 73%;
}
#cards-section .box .img img{
  width: 100%;
  height: 100%;
} */

#cards-section .box .card-button {
    --color: rgba(10, 81, 115, 0.9);
    font-family: inherit;
    display: inline-block;
    width: 6em;
    height: 2.6em;
    overflow: hidden;
    font-size: 1.4em;
    font-weight: 500;
    z-index: 1;
    color: var(--color);
    border: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 27%;
    background-color: white;
    /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

#cards-section .box .card-button::before {
    position: absolute;
    content: "";
    background: var(--color);
    width: 100rem;
    height: 200px;
    z-index: -1;
    border-radius: 6px;
}

#cards-section .box .card-button:hover {
    color: white;
}

#cards-section .box .card-button:before {
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

#cards-section .box .card-button:hover::before {
    top: -30px;
    left: -30px;
}

#cards-section .box:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.3s;
}

/* #cards-section .box:hover img {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
} */

/* #cards-section .box:hover .content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
} */

#cards-section .box .img {
    height: 73%;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    position: absolute;
    top: 0;
    /* -o-object-fit: cover;
  object-fit: cover; */
}
#cards-section .box img {
    height: 100%;
    width: 100%;

    /* -o-object-fit: cover;
  object-fit: cover; */
}

#cards-section .box .content {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
    width: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    padding-top: 4rem;
}

#cards-section .box .content h3 {
    font-size: 2rem;
    text-transform: capitalize;
    color: #222;
}

#cards-section .box .content p {
    padding: 1rem 0;
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    margin-bottom: 0;
}

/* Card section ends */

/* Activites section starts */
/* #activity-section {
} */
/* #activity-section .card {
  width: 100%;
  height: 70px;
  background: #edefff4f;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  backdrop-filter: blur(10px);
  transition: 0.2s ease-in-out;
}

#activity-section .card:hover {
    cursor: pointer;
    transform: scale(1.05);
}

#activity-section .img {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 1.3rem;
    background: linear-gradient(#1b63b6, #6baee7);
    color: white;
}

#activity-section .card:hover > .img {
    transition: 0.5s ease-in-out;
    background: linear-gradient(#6baee7, #1b63b6);
}

#activity-section .textBox {
    margin-left: 10px;
    color: #333335;
}

#activity-section .textContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#activity-section .span {
    font-size: 10px;
}

#activity-section .h1 {
    font-size: 20px;
    font-weight: bold;
    margin-left: 15px;
}

#activity-section .p {
    font-size: 12px;
    font-weight: lighter;
}

@media screen and (max-width: 968px) {
    #activity-section .card {
        margin-top: 1rem;
    }
} */

#activities-section .activity-box {
    height: 85px;
    display: flex;
    background-color: white;
    color: rgba(10, 81, 115, 0.9);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
}

#activities-section .activity-box:hover {
    color: white;
    background-color: rgba(10, 81, 115, 0.9);
    transition: all 0.6s;
}

#activities-section .activity-box .title-div {
    display: flex;
    align-items: center;
}

#activities-section .row {
    justify-content: center;
}

#activities-section .activity-box .title {
    font-size: 40px;
    font-weight: 500;
    margin-left: 10px;
}
#activities-section .activity-box .img {
    height: 100%;
    width: 80px;
}
#activities-section .activity-box .img .telephone-icon {
    height: 100%;
    width: 100%;
}
.telephone-icon path {
    fill: rgba(10, 81, 115, 0.9);
}

#activities-section .activity-box:hover .telephone-icon path {
    fill: white;
    transition: all 0.6s;
}
/* Activities section ends */

/* Fun section start */
#fun-fact {
    padding: 0rem 3rem;
}
.fun-fact-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.fun-fact .box,
.fun-fact .box a {
    /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem; */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-fact .box img {
    height: 4rem;
    filter: grayscale(100%);
}

.fun-fact .box h3 {
    font-size: 1rem;
    text-transform: capitalize;
    color: #334;
    font-weight: bold;
}

.fun-fact .box p {
    font-size: 14px;

    color: #777;
    padding-top: 0.3rem;
}

.fun-fact .box:hover img {
    filter: grayscale(0%);
}
/* Fun section ends */

/* Contact us section */
#contact-us .contact-us {
    background: #fff;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#contact-us .contact-us form {
    padding: 30px 35px;
}
#contact-us .contact-us form button {
    padding: 0.6rem;
}

#contact-us .contact-us .title {
    display: inline-block;
    /* margin-left: auto; */
    margin-right: auto;
    margin-left: 30%;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    line-height: 2.25rem;
    font-weight: 600;
    color: rgba(10, 81, 115, 0.9);
}

#contact-us .number-inputs {
    display: flex;
    align-items: stretch;
}

#contact-us .number-inputs .number_input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#contact-us .number-inputs .prefix {
    font-size: 1.25rem;
    background: gainsboro;
    display: flex;
    align-items: center;
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    padding: 0.2rem;
}
/* Contact us section */

#hr {
    border: none;
    height: 20px;
    width: 90%;
    height: 50px;
    margin-top: 0;
    border-bottom: 1px solid #1f1209;
    box-shadow: 0 20px 20px -20px #333;
    margin: -80px auto 35px;
    background-color: transparent;
}

/* CARDS */
.cardContainer{
    box-shadow: 0px 80px 80px -20px rgba(154, 156, 165, 0.08), 0px 30px 24px -10px rgba(154, 156, 165, 0.05), 0px 12px 10px -6px rgba(154, 156, 165, 0.04), 0px 4px 4px -4px rgba(30, 33, 44, 0.03);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-top: 24px;
}

.cardContainer .cardImgContainer{
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
    >img{
        width: 100%;
        height: 100%;
        border-radius: 4px;
        transition: all 500ms ease;
        object-fit: cover;
    }
}

.cardContainer:hover .cardImgContainer img{
    transform: translateY(-30px);
}

.cardContainer .description{
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    padding: 16px 0 24px;
    transition: all 500ms ease;
}

.cardContainer:hover .description{
    transform: translateY(-38px);
}

.cardContainer .visitInfo{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    text-align: center;
}

.cardContainer:hover .visitInfo{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    bottom: 16px;
}

.cardContainer .visitInfo a{
    font-size: 14px;
    padding: 6px 28px;
    border: 1px solid #634ff7;
    background-color: transparent;
    color: #634ff7;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 500ms ease;
    outline: none;
    cursor: pointer;
    vertical-align: unset;
}

.cardContainer .visitInfo a:hover{
    background-color: #634ff7;
    color: #fff;
    box-shadow: 0px 0px 25px 4px rgba(0, 0, 0, 0.1);
}

/* SERVICE WEBSITE ROUTES CSS STARTS */

.routes_to_services{
    background-color: #edf0f2;
    padding: 2rem 0 4.5rem 0;
}

.routes_to_services .electronic_services_header{
    margin-bottom: 60px;
    font-size: 40px;
    text-align: center;
    font-weight: 600;
    color: #1b324b;
}

.routes_to_services .box_container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.routes_to_services .route_box{
    padding: 0px 0px 20px 0px;
    border-radius: 4px;
    border: 0.0625rem solid #e5e5e6;
    background-color: #fff;
}

.route_box .color_line{
    height: 12px;
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.route_box .content_box{
    padding: 30px 20px 0 20px;
    display: flex;
    flex-direction: column;
}

.content_box .title_box{
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.content_box .go_website{
    display: flex;
    padding-top: 14px;
    justify-content: end;
}

.title_box .website_name{
    color: #231f20;
}

.content_box .globe{
    font-size: 44px;
    opacity: 0.8;
}

.content_box .info{
    display: flex;
    align-items: center;
}

.content_box .info::before{
    border: 1px solid #000;
    border-radius: 50%;
    padding: 3px 8px 5px 9px;
    cursor: pointer;
}

.content_box .direct_to{
    font-size: 28px;
    padding: 4px 10px;
    transition: all .3s ease;
}

.content_box .direct_to:hover{
    cursor: pointer;
    color: #fff !important;
    border-radius: 6px;
}

.content_box .direct_to.first:hover{
    background: #5767dc;
}

.content_box .direct_to.second:hover{
    background: #9ecdad;
}

.content_box .direct_to.third:hover{
    background: #b5244d;
}

.title_box .website_name{
    font-size: 26px;
    font-weight: 600;
}

.blue_bg{
    background-color: #5767dc;
}

.green_bg{
    background-color: #9ecdad;
}

.red_bg{
    background-color: #b5244d;
}

.blue_clr{
    color: #5767dc;
}

.green_clr{
    color: #9ecdad;
}

.red_clr{
    color: #b5244d;
}

.blue_font{
    color: #3b4abd !important;
}

.blue_font::before{
    color: #3b4abd;
    border-color: #3b4abd !important;
}

.green_font{
    color: #32874d !important;
}

.green_font::before{
    color: #32874d;
    border-color: #32874d !important;
}

.red_font{
    color: #801030 !important;
}

.red_font::before{
    color: #801030;
    border-color: #801030 !important;
}


/* SERVICE WEBSITE ROUTES CSS ENDS */

/* TEMPORARY ELECTION SECTION STARTS */

#election_section{
    margin-bottom: 36px;
}

#election_section .election_section_inner {
    background: center/cover no-repeat #005d96;
    padding: 2.5rem 3.2rem;
    display: flex;
    border-radius: 10px;
}

#election_section .election_section_inner_banner {
    margin-top: 30px;
    padding: 0!important;
    overflow: hidden;
}

#election_section .election_section_inner * {
    color: #fff;
}

#election_section .election_section_inner a {
    font-size: 16px;
    text-transform: uppercase;
    display: block;
}

#election_section .election_section_inner .h2,
#election_section .election_section_inner h2 {
    margin: 0 auto 0 0;
    font-size: 24px;
    font-weight: 700;
}

#election_section .election_section_inner a i {
    margin-top: 3px;
    border-bottom: 2px solid #14a0f4;
    display: block;
}

#election_section .election_section_inner_banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.container_election{
    padding: 0 44px 0 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.card {
    --border-radius: 0.75rem;
    --primary-color: rgba(10, 81, 115, 0.9);
    --secondary-color: #3c3852;
    padding: 1rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    background: #f1f1f3;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
    position: relative;
}

@media screen and (max-width: 1000px) {
    .card:first-child {
        margin-bottom: 24px;
    }
}

.card > * + * {
    margin-top: 1.1em;
}

.card .card__content {
    color: var(--secondary-color);
    font-size: 0.86rem;
}

.card .card__title {
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.card .card__date {
    color: #6e6b80;
    font-size: 0.8rem;
}

.card .card__arrow {
    position: absolute;
    background: var(--primary-color);
    padding: 0.4rem;
    border-top-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    bottom: 0;
    right: 0;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card svg {
    transition: 0.2s;
}

.card .content-container {
    margin-left: 1rem;
}

/* hover */
.card:hover .card__title {
    color: var(--primary-color);
    transition: 0.3s all;
}

.card:hover .card__arrow {
    background: #111;
    transition: 0.3s all;
}

.card:hover .card__arrow svg {
    transform: translateX(3px);
}

.card:hover .st0 {
    transition: 0.3s all !important;
    fill: rgba(10, 81, 115, 0.9);

}

.card-container {
    display: flex;
    flex-wrap: nowrap;

}

/* TEMPORARY ELECTION SECTION ENDS */
