@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
    --blue: #021d4c;
    --black: #000;
    --white: #fff;
    --yellow: #FCD20F;
    --text-para-color: #212121;
    --grey: #656565;
    --bgGrey: #f5f5f5;
    --green: #006B3D;
    --light-blue: #e6ecf2;
    --greeV2: #deeedb;
    --red: #CF0921;
    --redv2: #f2e2e1;
    --striped-bg-pink: #f2e2e1;
    --striped-bg-light-green: #deeedb;
    --font-ligt: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --font-semi-bold: 600;
    --sub-head: 18px;
    --main-head: 35px;
    --meadium-head: 24px;
    --paragrph-mb: 18px;
    --text-20: 20px;
    --table-sm: 66%;
    --table-l00: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.table {
    margin-bottom: 0;
}

.table-sm {
    width: var(--table-sm);
}

.table-sec thead th {
    background-color: var(--blue) !important;
    color: var(--white);
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    padding: 15px 15px;
}

.table-sec table td {
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    padding: 15px 15px;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background-color: var(--striped-bg-pink);
    box-shadow: none;
}

.table-striped>tbody>tr:nth-child(even)>td,
.table-striped>tbody>tr:nth-child(even)>th {
    background-color: var(--striped-bg-light-green);
}

.nb-box {
    position: relative;
    padding: 15px 15px;
    background-color: var(--light-blue);
    border-left: 2px solid var(--green);
    width: 70%;
}

body {
    font-family: "IBM Plex Sans", system-ui;
    font-weight: normal;
    font-size: 1.125rem;
    line-height: 1.5;
    background: var(--white);
    color: var(--black);
    height: 100%;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
}

p {
    margin: 0 0 1.5em;
    font-size: 1rem;
    line-height: 1.75rem;
    font-family: "IBM Plex Sans", system-ui;
    color: var(--text-para-color);
    font-weight: var(--font-regular);
    font-style: normal;
    margin-bottom: 0px;
}

h1 {
    color: var(--black);
}

.sub-head {
    /* max-width: 812px; */
}

.sub-head2 {
    width: 85%;
}

.sub-head p {
    font-size: var(--sub-head);
    color: var(--text-para-color);
    line-height: 1.75rem;
    font-style: normal;
    font-weight: var(--font-regular);
}

.main-head h1 {
    color: var(--black);
    font-weight: var(--font-medium);
    margin-bottom: 15px;
}

.head2 h3 {
    font-weight: var(--font-medium);
    color: var(--black);
}

.cmn-bold-text h6 {
    font-weight: var(--font-semi-bold);
}

.cmn-btn {
    position: relative;
    font-size: 16px;
    font-weight: var(--font-medium);
    background-color: var(--yellow);
    padding: 14px 14px 14px 40px;
    height: 48px;
    width: fit-content;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in;
}

.cmn-btn2 {
    background-color: var(--green);
    color: var(--white);
}

.cmn-btn2:hover {
    background-color: var(--green)!important;
    color: var(--white)!important;
}

.cmn-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.cmn-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-out;
}

.cmn-btn:hover::after {
    transform: scaleX(1.2) scaleY(1.6);
    opacity: 0;
    background-color: var(--yellow);
}

.cmn-btn2:hover::after {
    background-color: var(--green)!important;
}


/*===============Icon styling=================*/

.cmn-btn i {
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.cmn-btn:hover i {
    opacity: 1;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.btn-text {
    transition: opacity 0.3s, transform 0.3s;
}


/* Text shift on hover */

.cmn-btn:hover .btn-text {
    transform: translateX(-12px);
    transition: transform 0.3s ease;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: var(--green);
}

ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

li {
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 0;
}

label {
    font-size: 16px;
    font-weight: 500;
    color: #272727;
    margin-bottom: 0.5rem;
}

.form-control:focus,
input:focus,
select:focus {
    box-shadow: none !important;
}

.form-select {
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    padding: 11px 15px;
}

.form-control {
    font-size: 14px;
    border-radius: 0;
    padding: 11px 15px;
}

.py-30 {
    padding: 30px 0px;
}

.read-more-btn a {
    width: fit-content;
    font-weight: 500;
}

.read-more-btn a:hover {
    color: var(--green);
}

.read-more-btn a:hover i {
    padding-left: 5px;
}

.read-more-btn a i {
    font-size: 23px;
    margin-left: 8px;
    transition: all 0.2s ease-in;
}

.mandatory {
    color: var(--red);
}


/*-----------header css start here--------------*/

.header-top {
    padding: 25px 0px;
    background-color: var(--red);
    color: var(--white);
}

.header-top-lft ul {
    margin-bottom: 0px;
    padding-left: 0px;
}

.header-top-lft ul li {
    display: inline;
    font-weight: 500;
    margin-right: 30px;
}

.header-top-lft ul li a {
    color: var(--white);
}

.header-top-lft ul li a:hover {
    color: var(--yellow);
}

.header-top-lft ul li:nth-last-child() {
    margin-right: 0px;
}

.header-top-lft ul li i::before {
    margin-right: 10px;
    color: var(--yellow);
}

.header-top-rgt ul li {
    display: inline;
    padding: 0px 15px;
}

.header-top-rgt ul li:last-child {
    padding-right: 0;
}

.header-top-rgt ul li a {
    font-size: 25px;
    color: var(--white);
}

.header-top-rgt ul li a:hover {
    color: var(--yellow);
}

.nav-sec .logo {
    width: auto;
    display: flex;
    align-items: center;
}

.nav-sec .main-menu {
    width: auto;
    display: flex;
}

.nav-sec .nav-menu>li::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 12px;
    top: 44%;
    background-color: #000;
}

.nav-sec .nav-menu>li:last-child::after {
    display: none;
}

.nav-menus-wrapper-open .nav-menu>li>a {
    padding: 14px 10px !important;
    font-size: 16px !important;
}

.contact-mob {
    width: 100% !important;
    background-color: var(--blue);
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
}

.contact-mob ul li {
    color: var(--white);
    margin-bottom: 10px;
    width: 100%;
    list-style: none;
}

.contact-mob ul li i::before {
    margin-right: 10px;
}

.contact-mob ul li a {
    color: var(--white);
}


/*==============header section css end here=================== */

.banner-sec .bnr-lft {
    background-color: var(--red);
    color: var(--white);
    padding: 0px 50px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-sec .bnr-lft::after {
    content: "";
    background-image: url(/washington/backend_assets/flight-vector.png);
    background-repeat: no-repeat;
    position: absolute;
    background-position: bottom;
    bottom: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-sec .bnr-lft h3 {
    font-weight: 400;
    display: inline;
}

.banner-sec .bnr-lft h3 span {
    font-size: 30px;
    display: block;
}

.banner-sec .bnr-lft h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--white);
}

.banner-sec .bnr-rght .carousel-caption {
    right: 0;
    left: 0;
    bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    color: var(--white);
    text-align: left;
    background-color: #0000003d;
}

.banner-sec .bnr-rght .carousel-caption p {
    color: var(--white);
    margin-bottom: 0px;
}

.banner-sec .bnr-rght .carousel-control-next-icon,
.banner-sec .bnr-rght .carousel-control-prev-icon {
    background-color: #fff;
    border-radius: 50%;
    background-size: 64%;
    padding: 22px;
}

.banner-sec .bnr-rght .carousel-control-next-icon {
    background-image: url("../backend_assets/chevron-right.svg");
}

.banner-sec .bnr-rght .carousel-control-prev-icon {
    background-image: url("../backend_assets/chevron-left.svg");
}

.banner-sec .bnr-rght .carousel-control-next:hover .carousel-control-next-icon,
.banner-sec .bnr-rght .carousel-control-prev:hover .carousel-control-prev-icon {
    background-color: #fff;
}


/*================ banner bottom passport and visa application section css=========== */

.bnr-bottom-sec-innr,
.bnr-bottom-sec .apply-now-strip {
    position: relative;
    width: 100%;
    background: rgb(146 190 168);
    background: linear-gradient( 90deg, rgb(146 190 168) 0%, rgba(254, 234, 152, 1) 100%);
    overflow: hidden;
    padding: 25px 0px;
}

.bnr-bottom-sec-innr::after,
.bnr-bottom-sec .apply-now-strip::after {
    position: absolute;
    content: "";
    background-image: url(/washington/backend_assets/ghana-flag-sm.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 330px;
    height: 115px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.bnr-bottom-sec .apply-now-strip {
    width: auto !important;
}

.bnr-bottom-sec .apply-now {
    text-align: right;
    padding-right: 25px;
    position: relative;
    z-index: 9;
}

.apply-now-btn {
    z-index: 9;
}

.bnr-bottom-sec .apply-now h3 {
    font-weight: var(--font-ligt);
}

.bnr-bottom-sec .apply-now h3 span a {
    font-weight: var(--font-bold);
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
    animation: none;
    line-height: 0;
}

.apply-now:hover .arrow-btn {
    animation: moveRight 0.3s infinite alternate;
    /* Apply the animation on hover */
}

.arrow-btn i::before {
    font-size: 25px;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
        /* Start position */
    }
    100% {
        transform: translateX(10px);
        /* Move to the right */
    }
}


/* =============home page welcome note section start here===================*/

.welcome-sec {
    background-color: #f5f5f5;
}

.welcome-sec .welcome-main {
    position: relative;
}

.welcm-title:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 118px;
    background-color: var(--black);
    right: -40px;
    top: -13px;
}

.welcome-sec .welcome-main .welcm-title {
    width: 28%;
    position: relative;
}

.welcome-sec .welcome-main .welcm-desc {
    width: 33%;
}

.wlcm-btm-box {
    padding: 30px 15px;
    background-color: var(--white);
    -webkit-box-shadow: 7px 15px 76px -36px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 7px 15px 76px -36px rgba(0, 0, 0, 0.44);
    box-shadow: 7px 15px 76px -36px rgba(0, 0, 0, 0.44);
}

.wlcm-btm-box .welcom-btm-icon {
    transition: transform 0.4s;
    transform-style: preserve-3d;
}

.wlcm-btm-box:hover .welcom-btm-icon {
    transform: translateY(10px);
    transition: transform 0.4s;
}

.wlcm-sec-btm {
    position: relative;
    margin-top: 75px;
}

.welcom-btm-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #b1e0bc;
    margin-bottom: 15px;
}

.welcom-btm-icon img {
    width: 40px;
    height: 40px
}

.loc-bg {
    background-color: #e1e2ac;
}

.annoncemnt-bg {
    background-color: #e2acac;
}

.holidy-bg {
    background-color: #acbbe2;
}


/*=========================consular service section css start here================ */

.consular-sec {
    position: relative;
}

.consular-head {
    width: 100%;
}

.conslr-srvc-card {
    position: relative;
    padding: 20px;
    z-index: 9;
}

.conslr-srvc-card img {
    max-width: 46px;
    min-height: 46px;
}

.conslr-srvc-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--green);
    color: var(--white);
    opacity: 0;
}

.conslr-srvc-card:hover::after {
    opacity: 1;
    z-index: -1;
}

.conslr-srvc-card:hover img {
    filter: invert(96%) sepia(28%) saturate(0%) hue-rotate(313deg) brightness(160%) contrast(100%);
}

.conslr-srvc-card:hover h3,
.conslr-srvc-card:hover p,
.conslr-srvc-card:hover a {
    color: var(--white);
}

.conslr-srvc-card .link-btn i::before {
    font-size: 22px;
    vertical-align: -0.3em;
    transition: transform 0.4s;
}

.conslr-srvc-card:hover i::before {
    transform: translateX(10px);
    transition: transform 0.4s;
}

.conslr-srvc-card p {
    max-width: 350px;
    min-height: 110px;
    color: var(--grey);
}

.conslr-srvc-card .link-btn a {
    font-size: 16px;
    font-weight: 500;
}


/* ================= Home News Section ================= */

.home-news {
    position: relative;
}

.card {
    --bs-card-border-radius: 0px !important;
    --bs-card-inner-border-radius: 0px !important;
    border: none;
    --bs-card-bg: transparent!important;
}

.card-body {
    padding: 20px 0px 0px 0px;
}

.card-date {
    color: var(--grey);
}

.card-date span {
    font-size: 20px;
    margin-right: 10px;
}

.news-main .card-text {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 0px;
    border-bottom: 1px solid var(--grey);
    min-height: 102px;
    margin-bottom: 15px;
}

#home-news-slider .swiper-button-next:after,
.swiper-button-prev:after,
#innerpage-slide .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    color: #000000;
}

#home-news-slider .swiper-button-next,
#home-news-slider .swiper-button-prev,
#innerpage-slide .swiper-button-next,
#innerpage-slide .swiper-button-prev {
    background-color: #fdd118bd;
    top: 34%;
    border-radius: 50%;
    padding: 10px 22px;
    transition: all 0.2s;
}

#home-news-slider .swiper-button-prev:hover,
#home-news-slider .swiper-button-next:hover,
#innerpage-slide .swiper-button-prev:hover,
#innerpage-slide .swiper-button-next:hover {
    background-color: #fdd118;
}

.swiper-wrapper {
    height: max-content!important;
}


/* ================= Time Section ================= */

.time-main {
    background: rgb(213, 43, 30);
    background: linear-gradient( 143deg, rgba(213, 43, 30, 1) 33%, rgba(0, 121, 52, 1) 33%);
    margin: 50px 0px;
    padding: 35px 40px;
}

.time-head {
    font-size: 25px;
    display: inline-block;
    margin-bottom: 5px;
}

.time-head::after {
    content: "";
    background-color: var(--white);
    height: 1px;
    width: 100%;
    display: block;
}

.working-day {
    font-size: 18px;
}

.working-time {
    font-size: 22px;
    font-weight: 500;
}

.time-contact-sec {
    border-left: 1px solid var(--white);
}

.information {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
}

.time-contact-sec a {
    color: var(--clrWhite);
    border-bottom: 1px solid var(--white);
}

.time-contact-phn,
.time-contact-mail {
    font-size: 16px;
}


/*==================contact page css start here==================*/

.contact-sec .cntct-map {
    position: relative;
    margin: 0px 10px;
}

.contact-sec .contct-rght {
    background-color: var(--green);
    color: var(--white);
    padding: 50px 50px;
    margin: 0px 10px;
}

.contact-sec .contct-rght ul li {
    list-style: none;
    padding-bottom: 20px;
    display: flex;
    font-size: 1.25rem;
}

.contact-sec .contct-rght ul li a {
    color: var(--white);
}

.contact-sec .contct-rght ul li i {
    margin-right: 15px;
}

.contact-sec .contct-rght h5 {
    border-bottom: 1px solid var(--white);
    font-weight: var(--font-medium);
    padding-bottom: 10px;
    margin-bottom: 10px;
}


/* =================common page css  ================= */

.content-paragrph p {
    margin-bottom: var(--paragrph-mb);
}

.grey-strip {
    background-color: var(--light-blue);
    padding: 20px 0px;
}

.grey-strip .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
}

.breadcrumb {
    font-size: 1rem;
}

.citizen-registration {
    padding: 45px 0px;
}

.citizen-registration ul li {
    font-size: 1rem;
}

.green-strip {
    background-color: var(--greeV2);
    padding: 28px 20px;
    width: fit-content;
    margin: 40px 0px;
    border-left: 2px solid var(--green);
}

.custom-paragrph p {
    font-size: 18px;
    font-weight: var(--font-regular);
    margin-bottom: 0;
}

.cmn-bold-text h6 {
    font-weight: var(--font-medium);
    margin-bottom: 16px;
}

.citizen-registration ul {
    padding-left: 20px;
}

.quick-links .quick-tab {
    font-size: var(--meadium-head);
    background-color: var(--light-blue);
    padding: 24px 20px;
    position: relative;
    display: block;
    transition: all 0.2s ease-in;
    margin-bottom: 20px;
}

.quick-links .quick-tab:hover {
    background-color: var(--redv2);
}

.quick-links a:hover {
    color: var(--black);
}

.quick-links .quick-tab::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.quick-links .quick-tab:hover::before {
    left: 0;
    right: auto;
    width: 100%;
}

.quick-links .quick-tab i {
    transition: all 0.2s ease-in;
    position: relative;
}

.quick-links .quick-tab:hover i {
    color: var(--red);
    -webkit-animation: icon 1s infinite;
    animation: icon 0.9s infinite;
}

@-webkit-keyframes icon {
    0%,
    100% {
        right: 0px;
        opacity: 1;
    }
    50% {
        right: 10px;
        opacity: 0.2;
    }
}

@keyframes icon {
    0%,
    100% {
        right: 0px;
        opacity: 1;
    }
    50% {
        right: 10px;
        opacity: 0.2;
    }
}


/*==================== Photo Gallery & Video Gallery Page start ================== */

.photo-gallery .card-body,
.video-gallery .card-body {
    padding: 14px 0px 0px 0px;
}

.photo-gallery .card,
.video-gallery .card {
    margin-bottom: 50px;
    width: 95%;
}

.photo-gallery .card-text,
.video-gallery .card-text {
    font-size: var(--text-20);
    font-weight: var(--font-medium);
    line-height: 26px;
}

.photo-gallery .card-img {
    position: relative;
}

.photo-gallery .card-img::after {
    position: absolute;
    content: "";
    background-color: #00000090;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0;
    transition: all 0.2s ease-in;
}

.photo-gallery .card:hover .card-img::after {
    opacity: 1;
}

.plus-icon {
    position: absolute;
    top: 29%;
    left: 45%;
    z-index: 999;
    color: #fff;
    font-size: 50px;
    opacity: 0;
    transition: all 0.2s ease-in;
}

.photo-gallery .card:hover .plus-icon {
    opacity: 1;
}

.photo-gallery .carousel-indicators [data-bs-target] {
    height: auto;
    width: 80px;
}

.photo-gallery .modal-body {
    padding: 10px;
}

.photo-gallery .btn-close {
    position: absolute;
    right: -46px;
    background-color: transparent;
    filter: invert(1);
    opacity: 1;
}

.photo-gallery .carousel-control-next-icon,
.photo-gallery .carousel-control-prev-icon {
    background-color: #fdd118bd;
    border-radius: 50%;
    background-size: 64%;
    padding: 22px;
}

.photo-gallery .carousel-control-next-icon {
    background-image: url("../backend_assets/chevron-right.svg");
}

.photo-gallery .carousel-control-prev-icon {
    background-image: url("../backend_assets/chevron-left.svg");
}

.photo-gallery .carousel-control-next:hover .carousel-control-next-icon,
.photo-gallery .carousel-control-prev:hover .carousel-control-prev-icon {
    background-color: var(--yellow);
}

.video-gallery .card-img {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio (9/16 * 100) */
    height: 0;
    overflow: hidden;
}

.video-gallery iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}


/*==================== News & Events Page start ================== */

.news-events .card {
    margin-bottom: 55px;
}

.news-events .card-body {
    padding: 0px 0px 0px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 96%;
}

.news-events .card img {
    width: 95%;
}

.news-events .card-date {
    font-size: 16px;
}

.news-events .card-text {
    font-size: var(--sub-head);
    font-weight: var(--font-semi-bold);
    line-height: 24px;
    min-height: 96px;
}

.news-events .card-text a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.news-events-details p img {
    width: 390px;
    float: left;
    margin: 0px 30px 20px 0px;
}

.news-events-details .card-date,
.news-events-details .card-date span {
    font-size: 16px;
}

.news-author {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.news-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px 8px 0px 15px;
}

.news-author::after {
    content: "|";
    position: absolute;
    left: 0;
}

.news-events-details p {
    margin-bottom: 12px;
}


/* ================= citizen-registration page ================= */

.citizen-registration .form-main {
    padding: 25px;
    margin-top: 30px;
    background-color: #e5ecde;
}

.citizen-registration .form-group {
    margin-bottom: 15px;
}


/* ================= announcement page ================= */

.announcement-main {
    padding: 30px;
    background-color: #e5ecde;
    margin-bottom: 20px;
    border: 2px solid #bbcfa2;
}

.announcement-main h3,
.announcement-date {
    margin-bottom: 12px;
}

.announcement-main p {
    display: inline-block;
    margin-bottom: 8px;
}

.citizen-registration .form-main {
    padding: 25px;
    margin-top: 30px;
    background-color: #e5ecde;
}

.citizen-registration .form-group {
    margin-bottom: 15px;
}

.citizen-reg-form thead th {
    background-color: #819585;
    color: #fff;
}

.imp-note {
    font-size: 13px;
    margin: 5px 0px 15px 5px;
}

.form-control:disabled {
    background-color: #fff;
}

.checklist-table.table-sec thead th {
    background-color: #819585!important;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    font-weight: 500;
}

.checklist-table.table-sec table td {
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    font-size: 16px;
}

.checklist-table.table-sec table tr {
    vertical-align: middle;
}

.form-check .form-check-input {
    border: 1px solid #7a7a7a;
}

.check-up-img img {
    max-width: 100px;
    max-height: 100px;
}


/* ================= Footer Section ================= */

.footer-top {
    background-color: var(--bgGrey);
    padding: 90px 0px;
    font-size: 16px;
    font-weight: var(--font-medium);
}

footer a {
    text-decoration: none;
    transition: all 0.2s ease-in;
}

.footer-head {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-head::after {
    content: "";
    background-color: var(--black);
    height: 1px;
    width: 38%;
    display: block;
}

.footer-top ul,
.social-icons ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-top ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-top a:hover,
.footer-top ul li:hover::before {
    color: var(--green);
    padding-left: 1px;
}

.footer-top ul li::before {
    content: "-";
    margin-right: 5px;
    transition: all 0.2s ease-in;
}

.footer-top .footer-address-area ul li:hover::before {
    padding-left: 0;
}

.footer-top .footer-address-area ul li::before {
    content: "";
    margin-right: 0px;
}

.footer-address-area a span {
    border-bottom: 1px solid var(--black);
}

.footer-bottom {
    background-color: var(--red);
    color: var(--white);
    padding: 28px 0px;
}

.footer-social {
    font-size: 18px;
    font-weight: 500;
}

.social-icons {
    font-size: 20px;
}

.social-icons a {
    color: var(--white);
    text-decoration: none;
}

.social-icons ul li {
    list-style: none;
    margin-right: 14px;
}

.social-icons ul li a:hover {
    color: var(--yellow);
}

.header-top-rgt ul li a:hover {
    color: var(--yellow);
}


/*====================media query start here================== */

@media (max-width: 1399.98px) {
    .nav-sec .logo img {
        max-width: 200px;
    }
    .quick-links .quick-tab {
        font-size: 20px;
    }
    .news-events .card-body {
        gap: 5px;
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .nav-sec .logo img {
        max-width: 160px;
    }
    .nav-sec .nav-menu>li>a {
        padding: 26px 10px;
        font-size: 14px;
    }
    .sub-head {
        max-width: 610px;
    }
    .nb-box {
        width: 100%;
    }
    .quick-links .quick-tab {
        font-size: 18px;
    }
    .news-events .card img {
        width: 100%;
    }
    .news-events .card-body {
        padding: 20px 0px 0px 0px;
    }
    .news-events .card-text {
        min-height: 50px;
    }
}

@media (max-width: 991.98px) {
    .order-2 {
        order: 2 !important;
    }
    .footer-top {
        padding: 30px 0px;
    }
    .working-time {
        font-size: 18px;
    }
    .sub-head {
        max-width: 520px;
    }
    .banner-sec .bnr-lft {
        align-items: center;
        padding: 15px 0px;
    }
    .banner-sec .bnr-lft::after {
        background-image: none;
    }
    .banner-sec .bnr-lft h3,
    .banner-sec .bnr-lft h3 span {
        font-size: 20px;
        display: inline;
    }
    .banner-sec .bnr-lft h1 {
        font-size: 30px;
    }
    .welcome-sec .welcome-main {
        text-align: center;
    }
    .welcm-title:after {
        background: none;
        width: 0;
    }
    .welcome-sec .welcome-main .welcm-desc,
    .welcome-sec .welcome-main .welcm-title {
        width: 100%;
    }
    .wlcm-sec-btm {
        margin-top: 48px;
    }
    .table-100 {
        width: var(--table-l00);
    }
    .quick-links .quick-tab {
        padding: 18px 20px;
    }
    .photo-gallery .card-text,
    .video-gallery .card-text {
        font-size: var(--sub-head);
        font-weight: var(--font-medium);
        line-height: 22px;
    }
    .news-events .card-text {
        min-height: 70px;
    }
    .sub-head2 {
        width: 77%;
    }
}

@media (max-width: 767.98px) {
    .cmn-btn {
        padding: 14px 6px 14px 32px;
        height: 40px;
    }
    .footer-top {
        padding: 20px 0px;
    }
    .time-contact-sec {
        border-left: none;
        border-top: 1px solid #fff;
        padding-top: 15px;
        margin-top: 15px;
    }
    .bnr-btm-lft img {
        max-width: 200px;
    }
    .bnr-bottom-sec .apply-now h3 {
        font-size: 18px;
    }
    .quick-links .quick-tab {
        margin-bottom: 10px;
        padding: 12px 14px;
    }
    .green-strip {
        padding: 14px 8px;
    }
    .photo-gallery .card,
    .video-gallery .card {
        margin-bottom: 50px;
        width: 100%;
    }
    .photo-gallery .btn-close {
        position: absolute;
        right: 0px;
        top: -32px;
        background-color: transparent;
        filter: invert(1);
        opacity: 1;
    }
    .photo-gallery .carousel-indicators [data-bs-target] {
        height: auto;
        width: 50px;
    }
    .news-events .card-text {
        min-height: auto;
    }
    .news-events .row .col-md-6:last-child .card {
        margin-bottom: 0px;
    }
    .news-events-details p img {
        width: 100%;
    }
    .news-author {
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 8px;
    }
    .news-author::after {
        content: "";
    }
    .bnr-bottom-sec-innr::after,
    .bnr-bottom-sec .apply-now-strip::after {
        display: none;
    }
    .sub-head2 {
        width: 100%;
    }
}

@media (max-width: 575.99px) {
    .time-main {
        padding: 20px 20px;
    }
    .time-head {
        font-size: 22px;
    }
    .working-time {
        font-size: 16px;
    }
    .banner-sec .bnr-lft h3 {
        font-size: 18px;
    }
    .banner-sec .bnr-lft h1 {
        font-size: 22px;
    }
    .bnr-btm-lft img {
        max-width: 150px;
    }
    .bnr-bottom-sec .apply-now h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .bnr-bottom-sec .apply-now {
        padding-right: 15px;
    }
    .arrow-btn {
        width: 35px;
        height: 35px;
    }
    .arrow-btn i::before {
        font-size: 16px;
    }
    .bnr-bottom-sec .apply-now-strip::after,
    .bnr-bottom-sec:after {
        width: 50%;
        height: 50%;
        left: -10px;
        z-index: 0;
        bottom: -19px;
    }
    .apply-now-btn {
        z-index: 99;
    }
    .contact-sec .contct-rght {
        padding: 30px 15px;
    }
    .contact-sec .contct-rght ul li {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .banner-sec .bnr-lft::after {
        background-position: initial;
        bottom: 0;
        left: 0;
        top: -20px;
        width: 100%;
        height: auto;
        z-index: 1;
    }
    .banner-sec .bnr-lft h3 {
        font-size: 20px;
    }
    .banner-sec .bnr-lft h3 span {
        font-size: 24px;
    }
    .banner-sec .bnr-lft h1 {
        font-size: 30px;
    }
    .head2 h3 {
        font-size: 18px;
    }
}

@media (min-width: 1400px) {
    p {
        font-size: 1.125rem;
    }
    .main-head h1 {
        font-size: var(--main-head);
    }
    .head2 h3 {
        font-size: 22px;
    }
    .cmn-bold-text h6 {
        font-size: var(--sub-head);
    }
    .citizen-registration ul li {
        font-size: 1.125rem;
    }
    .custom-paragrph p {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .py-md-90 {
        padding: 90px 0px;
    }
}
