@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    /* outline: 0 */
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
    display: inline-block;
    color: #005aa3
}

a:hover {
    text-decoration: none
}

h1 {
    font-weight: 700;
    font-size: 24px;
    color: #033085
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 700
}

p,
span {
    font-weight: 400;
    margin-bottom: 0
}

.inner-text p {
    margin-bottom: 1rem
}

input,
textarea {
    width: 100%;
    padding: 12px 20px;
    /* outline: none; */
    resize: none;
    font-weight: 400;
    border: 1px solid #2f2222c9;
    border-radius: 30px
}

input::placeholder,
textarea::placeholder {
    color: #5c728e
}

button {
    border: none;
    /* outline: none */
}

:root {
    --colorPrimary: #00a6fb;
    --colorSecondary: #2ac28e;
    --colorDeepblue: #4589f4;
    --paraColor: #5c728e;
    --colorBlack: #031d36;
    --colorWhite: #fff;
    --paraFont: 'DM Sans', sans-serif;
    --headingFont: 'Work Sans', sans-serif;
    --boxShadow: rgba(149, 157, 165, .2) 0px 8px 24px;
    --gradiantBg: linear-gradient(45deg, #cdfff1 0%, rgba(203, 245, 246, .73) 28.13%, rgba(240, 251, 224, .8) 79.75%, #f8ffda 100%)
}

.common_btn {
    background: var(--colorPrimary);
    text-transform: capitalize;
    color: var(--colorWhite);
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px
}

.common_btn:after {
    position: absolute;
    content: "";
    width: 23px;
    height: 24px;
    background: url(../images/arrow_icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.common_btn:hover {
    background: var(--colorSecondary);
    padding: 12px 25px 12px 55px;
    color: var(--colorWhite)
}

.common_btn:hover:after {
    opacity: 1;
    left: 17px
}

.common_heading h5 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--paraFont);
    color: var(--colorPrimary);
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-left: 20px
}

.common_heading h5:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 2px;
    height: 20px;
    background: var(--colorPrimary)
}

.common_heading h2 {
    text-align: start;
    font-size: 24px;
    font-weight: 700;
    color: #033085;
    text-transform: capitalize;
    margin-top: 4px
}

.common_heading p {
    text-align: start;
    font-size: 16px;
    margin-top: 22px
}

.center_heading {
    text-align: center
}

.center_heading h2 {
    text-align: center
}

#pagination .page-item.active .page-link {
    color: var(--colorWhite);
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary)
}

#pagination .page-link {
    color: var(--paraColor);
    font-size: 16px;
    font-family: var(--paraFont);
    font-weight: 400;
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 5px;
    border: 1px solid #2d343b29
}

#pagination .page-link:hover,
#pagination .page-link.active {
    z-index: 2;
    color: var(--colorWhite);
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary)
}

#pagination .page-link:focus {
    /* outline: 0; */
    box-shadow: none
}

.play_btn {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: var(--colorPrimary);
    color: var(--colorWhite) !important;
    border-radius: 50%;
    position: relative;
    z-index: 1
}

.play_btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--colorPrimary);
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    animation: play_animate 1.3s infinite;
    -webkit-animation: play_animate 1.3s infinite
}

@keyframes play_animate {
    from {
        transform: scale(1);
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    to {
        transform: scale(1.8);
        opacity: 0;
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        -o-transform: scale(1.8)
    }
}

@keyframes rotate_animi {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg)
    }
}

@keyframes zoom_animi {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }

    to {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1)
    }
}

@keyframes shake_animi {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg)
    }

    to {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg)
    }
}

.inner_image1 {
    width: 100%;
    margin-bottom: 20px;
    height: 300px
}

#superfish-main-toggle span:before {
    content: "\f0c9";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700
}

#superfish-main-toggle {
    font-size: 0px !important;
    height: 32px;
    display: block
}

.topbar {
    width: 100%;
    background: #0858a7;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 5px 0
}

.topbar_link li a,
.topbar_link li p {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--paraFont);
    color: var(--colorWhite);
    margin-right: 25px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.topbar_link li a i,
.topbar_link li p i {
    margin-right: 10px
}

.topbar_link li a:hover {
    text-decoration: underline
}

.topbar_icon {
    line-height: 40px;
    justify-content: end
}

.topbar_icon li a {
    font-size: 14px;
    margin-left: 10px;
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    background: 0 0
}

.topbar_icon li a:hover {
    background: #ffffff40
}

.topbar a {
    color: #fff
}

.topbar i {
    color: #fff;
    font-size: 12px;
    padding-right: 5px
}

a.skip-to-main {
    padding-right: 10px
}

#block-custom-theme-screenreaderaccess {
    padding-right: 15px
}

.banner {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 100vh;
    position: relative;
    overflow: hidden
}

.banner div {
    height: 100%
}

.banner_text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 110px
}

.banner_text h5 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--paraFont);
    color: var(--colorPrimary);
    border-left: 2px solid var(--colorPrimary);
    padding-left: 20px
}

.banner_text h1 {
    text-align: start;
    font-size: 56px;
    font-weight: 700;
    color: var(--colorBlack);
    text-transform: capitalize;
    margin-top: 22px;
    margin-bottom: 15px
}

.banner_text p {
    text-align: start;
    font-size: 18px;
    margin-bottom: 40px
}

.banner_counter {
    margin-top: 100px
}

.banner_counter li {
    text-align: left;
    margin-right: 40px
}

.banner_counter li h3,
.banner_counter li span {
    font-size: 40px;
    font-weight: 600;
    font-family: var(--headingFont);
    color: var(--colorBlack)
}

.banner_counter li p {
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 5px;
    margin: 0
}

.banner_img {
    display: flex;
    justify-content: end;
    align-items: end;
    position: relative;
    z-index: 1
}

.banner_img .img {
    height: 739px
}

.banner_img:after {
    position: absolute;
    content: "";
    background-image: url(/bharatdynamics/themes/custom/custom_theme/assets/css/../images/banner_img_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 680px;
    height: 680px;
    z-index: -1;
    right: -17px;
    top: 207px;
    animation: rotate_animi linear 30s infinite;
    -webkit-animation: rotate_animi linear 30s infinite
}

.react {
    position: absolute;
    top: 555px;
    right: -48px;
    width: 70px !important;
    height: 70px !important
}

.video_call {
    position: absolute;
    top: 212px;
    right: 128px;
    width: 70px !important;
    height: 70px !important
}

.call {
    position: absolute;
    top: 365px;
    left: -26px;
    width: 70px !important;
    height: 70px !important
}

.banner .review {
    position: absolute;
    top: 559px;
    left: -147px;
    width: 167px !important;
    height: 90px !important;
    background: 0 0
}

.banner .review:after,
.banner .review:before {
    display: none
}

.banner:after {
    position: absolute;
    content: "";
    background: url(../images/shape-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation: zoom_animi linear 2s infinite alternate;
    -webkit-animation: zoom_animi linear 2s infinite alternate
}

.team .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    padding: 2px
}

.service {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative
}

.service_overlay {
    background: #ffffff9c
}

.service_slider .single_service {
    margin: 25px 12px 0
}

.single_service {
    margin-top: 25px;
    padding: 20px;
    background: var(--colorWhite);
    transition: all linear .3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.service_page .single_service {
    box-shadow: var(--boxShadow)
}

.service_img {
    position: relative;
    height: 290px
}

.service_img img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

.tf_service_icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    background: var(--colorSecondary);
    color: var(--colorWhite);
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px
}

.tf_service_icon2 {
    background: var(--colorPrimary)
}

.tf_service_icon3 {
    background: #f7588d
}

.tf_service_icon4 {
    background: #ffbc42
}

.service_text {
    margin-top: 25px
}

.service_heading {
    display: block;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--headingFont);
    color: var(--colorBlack);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.service_heading:hover {
    color: var(--colorPrimary)
}

.service_text p {
    margin: 10px 0 15px;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden
}

.service_link {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--paraFont);
    color: var(--colorBlack);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.service_link i {
    margin-left: 5px
}

.service_link:hover {
    color: var(--colorPrimary)
}

.single_service:hover {
    margin-top: 20px
}

.pricipal-message-box {
    background-image: url(../images/principalbg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    border: 1px solid #ebebeb;
    border-radius: 10px
}

.pricipal-message-box .single_team {
    margin-top: 0;
    overflow: hidden;
    display: flex;
    background: #fff0;
    padding: 10px
}

.pricipal-text {
    border-top: 2px solid #dedbdb;
    margin-top: 5px;
    padding-top: 5px
}

.single_team {
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    background: #fff;
    padding: 10px
}

.team_img {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 2px 7px rgba(25, 35, 43, .19)
}

.team_img img {
    border-radius: 10px;
    border: 1px solid #dbdbdbed
}

.team_designation {
    position: relative;
    padding: 7px 0 0 12px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.team_designation h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000
}

.team_designation p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-top: 4px
}

.team_designation a {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    color: var(--colorPrimary);
    background: var(--colorWhite);
    line-height: 36px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%)
}

.pricipal-message-box .pricipal-text {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-top: 0;
    margin-bottom: 11px
}

.read-more {
    color: #fff
}

.deg-line {
    padding-bottom: 3px
}

.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px
}

.slick-dots li button {
    font-size: 0;
    border-radius: 10px;
    background: rgba(0, 166, 251, 0.30);
    width: 15px;
    height: 8px;
    /* margin: 0 2px; */
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.slick-dots li.slick-active button {
    /* background: var(--colorPrimary); */
    /* width: 30px; */
}

.footer {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative
}

.tf_footer_logo {
    width: 165px;
    margin-bottom: 30px
}

.footer_mail span,
.tf_footer_icon span {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorBlack);
    display: inline-block;
    min-width: 85px
}

.footer_mail a {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--paraFont);
    color: var(--paraColor);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.tf_footer_icon ul li a {
    font-size: 16px;
    margin-right: 10px;
    color: var(--colorPrimary);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #fff;
    border-radius: 50%
}

.tf_footer_icon ul li a:hover {
    color: var(--colorWhite);
    background: var(--colorPrimary)
}

.quick_link h5,
.address h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #73d4ff;
    font-size: 18px;
}

.quick_link ul li a {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--paraFont);
    color: var(--colorWhite);
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    display: block
}

.quick_link ul li a:hover {
    color: var(--colorPrimary);
    padding-left: 5px
}

.tf_footer_address {
    margin-top: 15px
}

.tf_footer_address p,
.tf_footer_address a {
    margin-bottom: 0
}

.tf_footer_address p,
.tf_footer_address a {
    display: block;
    padding-left: 30px;
    position: relative;
    padding-bottom: 20px;
    color: var(--paraColor);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.tf_footer_address p i,
.tf_footer_address a i {
    color: var(--colorPrimary);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 18px
}

.tf_footer_address a:hover {
    color: var(--colorPrimary)
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid #ddd
}

.copyright ul li a {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--paraFont);
    color: var(--paraColor);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    margin-left: 25px
}

.copyright ul li a:hover {
    color: var(--colorPrimary)
}

.scroll_btn {
    width: 35px;
    height: 70px;
    border-radius: 25px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 111;
    cursor: pointer;
    text-align: center;
    line-height: 70px;
    background: var(--colorPrimary);
    border: 3px solid var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.scroll_btn span {
    font-size: 16px;
    color: var(--colorWhite);
    animation: scroll_amini linear 2s infinite alternate;
    -webkit-animation: scroll_amini linear 2s infinite alternate;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%)
}

.scroll_btn:hover {
    background: var(--colorSecondary)
}

@keyframes scroll_amini {
    from {
        bottom: -20px
    }

    to {
        bottom: 12px
    }
}

.about_2_img {
    height: 556px;
    margin-right: 80px
}

.about_2_text h2 span {
    text-align: start;
    font-size: 36px;
    font-weight: 700;
    color: var(--colorDeepblue);
    text-transform: uppercase;
    margin-top: 10px;
    display: block
}

.about_2_text h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--colorBlack);
    margin-top: 40px
}

.about_us_signature {
    width: 126px;
    height: 60px;
    margin-top: 18px
}

.team {
    background-image: url(../images/footer-bg.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    background-attachment: fixed
}

.team_2 .home_tow_heading h2 {
    text-align: center
}

.single_team_2 {
    margin-top: 25px
}

.team_2_text {
    box-shadow: var(--boxShadow);
    text-align: center;
    padding: 50px 0 25px;
    position: relative;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px
}

.appoinment_2 .common_heading p {
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: 40px
}

.team_2_text p {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--paraColor);
    margin-top: 3px
}

.team_2_text .social_media {
    width: 170px;
    height: auto;
    background: var(--colorSecondary);
    padding: 15px 25px;
    border-radius: 100px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.team_2_text .social_media ul {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.team_2_text .social_media ul li a {
    font-size: 20px;
    color: var(--colorWhite);
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.team_2_text .social_media ul li a:hover {
    transform: translateY(-3px)
}

.single_team_2:hover .social_media {
    background: var(--colorDeepblue)
}

.single_team_2 .title {
    color: var(--colorBlack);
    font-size: 24px;
    font-weight: 600;
    display: block;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s
}

.single_team_2 .title:hover {
    color: var(--colorSecondary)
}

.company_img {
    width: 185px;
    height: 70px
}

.footer-left {
    display: flex
}

.footer-box {
    display: flex
}

.main-footer {
    background: #0c285b;
    color: #fff;
    padding: 20px 0
}

.footer_three .tf_footer_icon a:hover {
    color: var(--colorDeepblue)
}

.footer_three .tf_footer_address p i,
.footer_three .tf_footer_address a i {
    color: var(--colorWhite)
}

.hospital-title h2 {
    font-size: 20px
}

.double-line-bottom-theme-colored-2 {
    margin-bottom: 20px;
    margin-top: 8px;
    padding-bottom: 5px;
    position: relative
}

.double-line-bottom-theme-colored-2:after {
    border-radius: 8px;
    bottom: 1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 64px
}

.double-line-bottom-theme-colored-2:before {
    border-radius: 8px;
    bottom: -1px;
    content: "";
    height: 6px;
    left: 10px;
    position: absolute;
    width: 24px
}

.double-line-bottom-centered-theme-colored-2 {
    margin-bottom: 20px;
    margin-top: 8px;
    padding-bottom: 5px;
    position: relative
}

.double-line-bottom-centered-theme-colored-2:after {
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 100%;
    background: #cd5208
}

.double-line-bottom-centered-theme-colored-2:before {
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 3px;
    bottom: -1px;
    left: -597px;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 38px;
    background: #cd5208
}

.double-line-bottom {
    margin-bottom: 31px;
    margin-top: 4px;
    padding-bottom: 8px;
    position: relative
}

.double-line-bottom:before {
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 6px;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 24px;
    background: #1098d3
}

.double-line-bottom:after {
    border-radius: 8px;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 64px;
    background: #1098d3
}

.safdarjung-hospital p {
    height: 85px
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.second-facility-item {
    border: 2px solid #ee2405;
    text-align: center;
    padding: 16px;
    position: relative;
    z-index: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    background-color: #001430
}

.second-facility-item:before {
    content: "";
    position: absolute;
    border-radius: 100px;
    background-image: url(/../images/facility-shape-img.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    height: 165px;
    width: 165px;
    top: 0;
    left: 0;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-animation: rotation 30s linear infinite;
    animation: rotation 30s linear infinite;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    z-index: -1;
    opacity: .2;
    -webkit-transition: all .5s;
    transition: all .5s
}

.second-facility-item img {
    max-width: 70px;
    margin-bottom: 22px
}

.second-facility-item h3 {
    font-size: 18px;
    color: #fff
}

.service_3 .single_service_2 {
    text-align: start;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, .1)
}

.service_3 .single_service_2 .item_img {
    position: relative
}

.service_3 .single_service_2 .item_img .icon {
    left: 235px;
    top: 130px;
    transition: all linear .3s
}

.service_3 .single_service_2:hover .item_img .icon {
    opacity: 0
}

.service_3_overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    /* background: #d8; */
    display: BLOCK;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all linear .3s;
    text-align: CENTER;
    padding: 10px;
    color: #fff
}

.service_3_overly .overly_icon {
    width: 50px;
    height: 50px;
    background: var(--colorDeepblue);
    border-radius: 10px;
    padding: 10px
}

.service_3 .single_service_2:hover .service_3_overly {
    opacity: 1 !important
}

.service_2 {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important
}

.service_2 .common_heading {
    text-align: center
}

.service_2 .common_heading h2 {
    text-align: center
}

.single_service_2 {
    background: var(--colorWhite);
    transition: all linear .3s;
    margin-left: 10px;
    margin-right: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.single_service_2:hover {
    box-shadow: 0px 5px 25px 0px rgba(69, 137, 244, .1)
}

.single_service_2 .item_img {
    overflow: hidden;
    position: relative;
    height: 200px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.single_service_2 .item_img .icon {
    width: 50px;
    height: 50px;
    background: var(--colorDeepblue);
    border-radius: 10px;
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 10px
}

.single_service_2 .item_img .icon img {
    width: 100%
}

.single_service_2 .item_text {
    padding: 15px 20px 20px;
    text-align: center
}

.single_service_2 .heading {
    font-size: 24px;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
    color: var(--colorBlack);
    transition: all linear .3s
}

.single_service_2 .heading:hover {
    color: var(--colorDeepblue)
}

.single_service_2 p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
    margin-top: 15px
}

.single_service_2 .link {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorWhite);
    background: var(--colorBlack);
    text-transform: capitalize;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 17px;
    transition: all linear .3s
}

.single_service_2 .link:hover {
    background: var(--colorDeepblue)
}

.medical_service_slider .slick-slide {
    margin: 0 12px
}

.service_3 {
    background-image: url(../images/product-bg.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1
}

.button-text-space {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 5px;
    font-size: unset !important;

}

#colorpick ul {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0
}

#colorpick .style-default {
    background: #fff;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    margin-right: 5px;
    padding: 2px;
    display: block;
    color: #000;
    font-size: 14px !important
}

#colorpick .style-black {
    background: #000;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    margin-right: 5px;
    padding: 2px;
    display: block;
    color: #fff;
    font-size: 14px !important
}

#colorpick .style-gray {
    background: #6d6b6b;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    margin-right: 5px;
    padding: 2px;
    display: block;
    color: #fff;
    font-size: 14px !important
}

.top-right {
    justify-content: end;
    display: flex
}

.topbar_link {
    display: flex
}

.topbar_link a {
    color: #fff
}

.topbar_link a:hover {
    color: #fff
}

.dropdown {
    position: relative;
    padding: 0;
    margin-right: 1em;
    border: none
}

.dropdown summary {
    list-style: none;
    list-style-type: none
}

.dropdown>summary::-webkit-details-marker {
    display: none
}

.dropdown summary:focus a.button {
    border: 2px solid #fff
}

.dropdown ul {
    position: absolute;
    margin: 0;
    padding: 10px 0;
    width: var(--dropdown-width);
    box-sizing: border-box;
    z-index: 2;
    background: var(--dropdown-background);
    border-radius: 6px;
    list-style: none
}

.dropdown ul li {
    margin: 0;
    float: none !important;
    text-align: left;
    width: 100%;
    position: relative;
    height: auto;
    padding: 0;
    border-left: 0 solid #eee;
    border-top: 1px solid #fff;
    background: #1666a5
}

.color-theme .texts-box {
    margin-top: -3px
}

.dropdown ul li a:link,
.dropdown ul li a:visited {
    font-size: 14px !important;
    display: inline-block;
    padding: 5px .5rem;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff
}

.dropdown ul li a:hover {
    background-color: var(--dropdown-highlight);
    color: #fff
}

.dropdown>summary:before {
    display: none
}

.dropdown[open]>summary:before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

.button-text-size img {
    width: 15px
}

.button-text-size {
    background: #fff;
    border-radius: 5px;
    width: 24px;
    height: 24px;
    display: block;
    text-align: center;
    font-size: unset !important;
}

#toggleSearch {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    width: 24px;
    height: 24px;
    display: block
}

.button-text-space img {
    width: 15px
}

.search-box img {
    width: 15px
}

a.language-link {
    padding-left: 15px
}

.text-space img {
    width: 15px
}

#header {
    background: #033085
}

#block-custom-theme-healthministerlogo,
#block-custom-theme-healthministerlogo-2 {
    text-align: right
}

#block-custom-theme-patientsafetylogo,
#block-custom-theme-patientsafetylogo-2 {
    padding-top: 10px
}

ul.sf-menu a,
ul.sf-menu span.nolink {
    color: #033085;
    font-weight: 600
}

#hero {
    width: 100%;
    position: relative
}

.main-banner {
    position: relative;
    margin-bottom: -22px;
}

#hero .container {
    margin-top: -75px;
    padding-bottom: 25px
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: #124265
}

#hero h2 {
    color: #fff;
    margin: 10px 0 15px 15px;
    font-size: 24px
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: .5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: .5s;
    margin-top: 30px;
    color: #fff;
    background: #2487ce
}

#hero .btn-get-started:hover {
    background: #3194db
}

#hero .icon-boxes {
    margin-top: 100px
}

#hero .icon-box {
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, .08);
    transition: all .3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    text-align: center;
    background: #fff
}

#hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 14px;
    height: 30px
}

#hero .icon-box .title a {
    color: #b15110;
    transition: .3s;
    font-size: 18px !important
}

#hero .icon-box .description {
    font-size: 1em;
    line-height: 28px;
    margin-bottom: 0
}

#hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all .3s ease-in-out;
    font-size: 60px;
    line-height: 1;
    color: #16a59c
}

#hero .icon-box:hover {
    transform: scale(1.08)
}

#hero .icon-box:hover .title a {
    color: #040404
}

.color-b1 {
    background: #193471
}

.color-b2 {
    background: #009ffd
}

.color-b3 {
    background: #005bfd
}

.color-b4 {
    background: #19c3e4
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed
    }
}

@media (max-height: 800px) {
    #hero {
        height: auto
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px
    }
}

#hero {
    width: 100%;
    position: relative;
    background-size: cover;
    position: relative;
    padding-bottom: 15px;
    background: #0858a7
}

#block-custom-theme-blocktabshometab {
    padding-top: 100px
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #0858a7 !important;
    background: #0858a7;
    font-weight: 400;
    color: #fff !important
}

#sidebar ul li {
    list-style: none
}

.sidebar-list-item1 ul li:before {
    content: "\F0D8" !important
}

.link a {
    color: #fff
}

.accordion {
    width: 100%;
    margin: 0 auto 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background: #0858a7;
    border-radius: 5px;
    list-style: none;
    padding: 0
}


.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 7px 15px 38px;
    font-size: 14px;
    border-bottom: 1px dashed #d6effc61;
    color: #fff;
    position: relative;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.accordion li:last-child .link {
    border-bottom: 0
}

.accordion li i {
    position: absolute;
    top: 9px;
    /* left: 255px; */
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    right: 0;
}



.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 16px
}

.accordion li.open .link {
    color: #000
}

.accordion li.open i {
    color: #fff
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

#accordion .menu-item .link a:before {
    content: "\EEAF";
    font-family: remixicon;
    position: absolute;
    left: 18px;
    color: #c2f0ff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400
}

#accordion .menu-item--expanded .submenu a:before {
    content: "\ea54";
    font-family: remixicon;
    position: absolute;
    left: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    content: "\F0D8" !important
}

.inner-page #block-custom-theme-content {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 23px 30px;
    background: #fff;
    box-shadow: 0px 2px 8px rgba(63, 77, 192, .2)
}

.explore-heading {
    color: #000 !important;
    text-transform: Uppercase !important
}

a.view-more {
    color: #fff
}

.hospital-text {
    text-align: justify
}

.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 70%;
    right: 0;
    width: 194px;
    display: flex;
    flex-direction: column
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0 0 50px;
    text-align: left;
    margin: 1px;
    text-decoration: none;
    text-transform: capitalize;
    padding: 5px;
    font-size: 12px !Important;
    transition: all .8s;
    font-weight: 600
}

.sticky-icon a:hover {
    color: #fff;
    transform: translate(0px, 0px)
}

.sticky-icon a:hover i {
    transform: rotate(360deg)
}

.Facebook {
    background-color: #0058a6;
    color: #fff
}

.Youtube {
    background-color: #b50000;
    color: #fff
}

.Twitter {
    background-color: #000;
    color: #fff
}

.Instagram {
    background-color: #00635b;
    color: #fff
}

.Insta {
    background-color: #9436a4;
    color: #fff
}

.sticky-icon a i {
    background-color: #fff;
    height: 25px;
    width: 25px;
    color: #098c83;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    margin-right: 8px;
    transition: all .5s;
    display: inline-block;
    font-size: 14px
}

.sticky-icon a i.ri-facebook-fill {
    background-color: #fff;
    color: #2c80d3
}

.sticky-icon a i.bi-instagram {
    background-color: #fff;
    color: #9436a4
}

.sticky-icon a i .bi-envelope-at-fill {
    background-color: #fff;
    color: #fd1d1d
}

.sticky-icon a i.bi-youtube {
    background-color: #fff;
    color: #fa0910
}

.sticky-icon a i.bi-twitter-x {
    background-color: #fff;
    color: #010101
}

.ui-widget.ui-widget-content {
    height: 395px
}

#accordionDept {
    background: #fff !important
}

.counter {
    font-family: 'Nunito Sans', sans-serif;
    background: #fff;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, .2);
    position: relative
}

.counter:before {
    content: '';
    background-color: #9dd662;
    height: 105px;
    width: 100%;
    border-radius: 30px 30px 0 0;
    position: absolute;
    left: 0;
    top: 0
}

.counter .counter-icon {
    color: #fff;
    background: #7ca936;
    font-size: 50px;
    line-height: 90px;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    position: relative;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%)
}

.counter .counter-icon:before {
    content: "";
    background: #8ac248;
    width: 120px;
    height: 90px;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%)
}

.counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all .3s ease
}

.counter h3 {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px
}

.counter .counter-value {
    color: #7ca936;
    font-size: 30px;
    font-weight: 600;
    display: block
}

.counter.blue:before {
    background-color: #5a9bef
}

.counter.blue .counter-icon {
    background-color: #2a70b5
}

.counter.blue .counter-icon:before {
    background-color: #367dcb
}

.counter.blue .counter-value {
    color: #367dcb
}

.counter.red:before {
    background-color: #fd6d4b
}

.counter.red .counter-icon {
    background-color: #d14026
}

.counter.red .counter-icon:before {
    background-color: #ea5736
}

.counter.red .counter-value {
    color: #ea5736
}

.counter.gray:before {
    background-color: #777
}

.counter.gray .counter-icon {
    background-color: #444
}

.counter.gray .counter-icon:before {
    background-color: #666
}

.counter.gray .counter-value {
    color: #666
}

@media screen and (max-width: 990px) {
    .counter {
        margin-bottom: 40px
    }
}

.monthly-status {
    background: #0a172a
}

.item-list li {
    padding-left: 0;
    position: relative;
    text-align: left;
    margin-left: 31px;
    padding-top: 13px;
    margin-right: 9px;
    padding-bottom: 20px;
    list-style: none;
    border-bottom: 1px dashed#6666;
    text-align: justify
}

.item-list li:before {
    content: "\f137";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: -28px;
    color: #033085;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400
}

.inner-page .item-list li {
    margin-left: 19px
}

#superfish-main a {
    text-decoration: none
}

.page-updated ul {
    list-style: none;
    display: inline-flex;
    padding: 10px;
    margin-top: 10px
}

.breadcrumb {
    display: flex;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    margin-top: 35px;
    width: 100%;
    height: 35px;
    transform: translateY(-50%);
    z-index: 1;
    justify-content: start;
    margin-left: 44px;
    margin-bottom: 10px
}

.breadcrumb-item {
   
    background-color: #0858a7;
    color: #fff;
    letter-spacing: 1px;
    transition: all .3s ease;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: skew(-21deg);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .26);
    margin: 4px 0;
    padding: 0 10px;
    cursor: pointer
}

.breadcrumb-item a {
    color: #fff
}

.breadcrumb__inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg)
}

.breadcrumb-item a {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg)
}

.breadcrumb-item a:hover {
    color: #fff
}

.none-link {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg)
}

.breadcrumb-items {
    margin-top: 3px;
    margin-left: -44px
}

.breadcrumb-items li:last-child {
    background: #033085;
    color: #fff
}

.breadcrumb-item+.breadcrumb-item:before {
    display: none
}

.pager__item a {
    display: inline-block;
    padding: 5px 14px;
    background: #0858a7;
    border: 1px solid #062765;
    border-radius: 15px;
    margin: 0 5px;
    color: #fff;
    text-decoration: underline
}

.pagination {
    display: inline-flex
}

li.pager__item {
    display: inline-flex
}

.pager ul {
    text-align: center
}

.pager {
    margin-top: 10px
}

.flt {
    text-transform: uppercase
}

.qr-code {
    display: inline-flex
}

.footer-logo-text {
    padding-left: 10px;
    padding-top: 4px
}

.qr-img-logo {
    padding-left: 5px
}

.cssvalid {
    padding: 10px 0
}

.facility {
    width: 19.666667%
}

.about-bottom {
    display: flex;
    align-items: center
}

.about-bottom .about-btm-btn {
    padding-right: 1rem;
    margin-right: 3rem;
    border-right: 1px solid #bbb
}

.about-bottom .about-btm-user {
    display: flex;
    align-items: center;
    gap: 15px
}

.about-bottom .about-btm-user .about-btm-bio h6 {
    line-height: 1;
    margin-bottom: 10px;
    font-size: 1.8rem
}

.about-bottom .about-btm-user .about-btm-bio span {
    line-height: 1;
    font-size: 1.6rem;
    display: block
}

.about-opt {
    display: grid;
    align-items: center;
    gap: 30px;
    grid-template-columns: 150px 1fr;
    margin-bottom: 4rem
}

.about-opt .about-yr .about-yr-element {
    height: 150px;
    width: 150px;
    background-color: #202942;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px
}

.about-opt .about-yr .about-yr-element:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    z-index: -1;
    background: #202942;
    opacity: 1;
    top: 0;
    right: -16px;
    clip-path: polygon(100% 0, 0 0, 0 100%)
}

.about-opt .about-yr .about-yr-element .about-value {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    color: var(--clr-white);
    font-weight: 900
}

.about-opt .about-yr-text h4 {
    font-size: 25px;
    text-transform: capitalize
}

.about-opt .about-yr-text p {
    margin: 0
}

.about-jahaj-2 {
    position: absolute;
    bottom: 0;
    right: -38rem;
    z-index: -1
}

.about-left-img {
    position: relative;
    z-index: 1
}

.about-left-img .about-left-img-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1
}

.about-opt-2 {
    display: grid;
    gap: 5rem;
    grid-template-columns: 250px 1fr
}

.about-opt-left-2 {
    padding: 50px 30px;
    border: 2px solid;
    border-radius: 8px
}

.about-opt-left-2 p {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--clr-heading);
    line-height: 1.6
}

.about-opt-right-box-2 {
    display: flex;
    align-items: center;
    gap: 2rem
}

.about-opt-right-box-2 .about-opt-icon-2 i {
    height: 5rem;
    width: 7rem;
    line-height: 80px;
    background-color: #1098d3;
    text-align: center;
    display: block;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px
}

.about-opt-right-box-2 .about-opt-desc-2 h2 {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1
}

.about-opt-right-box-2 .about-opt-desc-2 h5 {
    font-size: 18px;
    font-weight: 600
}

.about-opt-right-pd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.logo-section {
    height: 100%;
    display: flex;
    position: relative
}

.top-logo:before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    left: -172px;
    height: 100%;
    width: 20%;
    background-color: #033085
}

.top-logo {
    background: url(../images/bg-nav.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 114px;
    left: 9%
}

.top-logo img {
    height: 114px;
    left: 24px;
    margin-left: 273px;
    position: absolute
}

.logo-section .container {
    position: relative;
    top: -3px
}

.ready-logo {
    text-align: center
}

.ministry-logo {
    text-align: right
}

.about-opt-desc-2 .read-more a {
    color: #033085 !important;
    text-decoration: underline;
    font-weight: 600
}

.directormsg h2 {
    background: #0858a7;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    font-weight: 600
}

.directormsg {
    background: #e4f5fd;
    border: 1px solid #edebeb;
    text-align: center
}

.directorimg {
    width: 30%;
    margin: 16px auto
}

.directorimg img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 4px rgb(108 110 111/29%)
}

#block-custom-theme-blocktabshometabs {
    align-self: baseline !important;
    margin-top: 116px
}

.directorname {
    font-weight: 600;
    font-size: 16px
}

.designation {
    border-bottom: 1px solid #8b8b8b;
    padding-bottom: 7px;
    margin: 10px 20px 11px
}

.directortext {
    margin: 5px 20px;
    padding-bottom: 10px
}

.directorlink a {
    background: #0858a7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px
}

.readmore {
    background: #0858a7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px;
    float: right
}

#block-custom-theme-aboutus h1 {
    padding-bottom: 10px
}

#block-custom-theme-aboutus {
    padding: 0 10px
}

#block-custom-theme-aboutus p {
    text-align: justify
}

ul.sf-menu .sf-sub-indicator:after {
    content: "+" !important;
    left: 10px;
    line-height: 1;
    position: absolute;
    text-indent: 0;
    top: -2px;
    font-weight: 400;
    font-size: 16px
}

ul.sf-menu .sf-sub-indicator {
    height: 1em;
    line-height: 9999px;
    opacity: .8;
    overflow: hidden;
    position: absolute;
    /* speak: none; */
    text-indent: -9999px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.5em
}

.buttons button {
    border: none;
    border-radius: 63px;
    position: relative;
    padding: 0;
    min-width: 60px;
    top: -13px;
    height: 50px;
    z-index: 99;
    height: 25px;
    line-height: 1;
    background: #1098d3
}

.buttons {
    display: flex;
    justify-content: center
}

.buttons button .ri-pause-circle-fill,
.buttons button .ri-play-circle-fill {
    font-size: 22px;
    color: #fff
}

.footer-content p {
    padding: 0;
    margin: 0;
    font-weight: 300
}

#clients {
    background: #e6f1f7;
    padding-top: 20px;
    padding-bottom: 30px;

}

#clients .field-content a {
    /* border: 1px solid #e6e6e6; */
    /* background: #fff; */
    /* width: 90%; */
}

#clients .field-content img {
    /* width: 100%; */
}

.slick-arrow:before {
    font-size: 2rem
}

.photo_gallery .item_text {
    background: #0858a7;
    padding: 10px;
    text-align: center;
    height: 80px
}

.photo_gallery {
    margin-right: 20px
}

.photo_gallery .item_text a {
    color: #fff
}

.photo_gallery img {
    width: 100%;
    height: 196px
}

.home-events {
    margin-top: 8%
}

.slick-arrow:before {
    color: #1098d3
}

ul.sf-menu ul {
    left: 0;
    position: absolute;
    top: -9999px;
    width: 12em;
    background: #d6effc
}

ul.sf-menu li:hover>ul,
ul.sf-menu li.sfHover>ul {
    left: 0
}

ul.sf-menu.sf-horizontal.sf-shadow ul,
ul.sf-menu.sf-vertical.sf-shadow ul,
ul.sf-menu.sf-navbar.sf-shadow ul ul {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.news-btns .toggle:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro" !important;
    position: relative;
    left: 0;
    color: #fff;
    font-size: 14px
}

.news-btns .et-run:before {
    content: "\f04c";
    font-family: "Font Awesome 5 Pro" !important;
    position: relative;
    left: 0;
    color: #fff;
    font-size: 14px
}

.event-item {
    background: #fff;
    margin-right: 15px;
    margin-left: 15px
}

.event-title {
    text-align: left;
    padding: 15px;
    font-weight: 700;
    color: #0858a7;
    /* min-height: 92px; */
}

.event-text {
    text-align: left;
    padding: 0 15px;
    min-height: 72px
}

.event-readmore {
    text-align: center;
}

.event-readmore a {
    font-size: 14px;
    background: #0858a7;
    padding: 5px 12px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 9px;
    border-bottom: 2px solid #062765;
    border-radius: 19px;
}

.event-date {
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    color: #005f87;
}

#block-custom-theme-views-block-cg-events-block-1 .views-field.views-field-nothing {
    margin-right: 15px
}

.home-events h2 {
    color: #fff;
    margin: 10px 0 15px 11px;
    font-size: 24px
}

#ui-id-1 {
    font-weight: 600
}

#ui-id-2 {
    font-weight: 600
}

#ui-id-3 {
    font-weight: 600
}

.ui-state-default a {
    color: #000;
    text-decoration: none
}

.ui-widget-content a {
    color: #000
}

#blocktabs-home_tabs {
    position: relative;
    padding: 0
}

#block-custom-theme-blocktabshometabs .ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 0 solid #003eff00 !important;
    background: #033085 !important;
    font-weight: 400;
    color: #fff !important;
    border-radius: 5px !important
}

#block-custom-theme-blocktabshometabs .ui-tabs .ui-tabs-nav li {
    margin: 0 .2em 6px 0 !important
}

#block-custom-theme-blocktabshometab .ui-tabs .ui-tabs-nav li {
    margin: 0 .2em 6px 0 !important
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 0 solid #fff !important;
    background: #e9f5fe !important;
    font-weight: 400;
    color: #000 !important;
    border-radius: 5px !important
}

.ui-tabs .ui-tabs-nav {
    margin: 0 !important;
    padding: .3em .2em 0 !important;
    background: #0858a7 !important
}

.news-btns {
    float: right
}

.news-btns .down {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0;
    width: 30px;
    height: 30px;
    margin-right: -3px
}

.news-btns .downew {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0;
    width: 30px;
    height: 30px;
    margin-right: -3px
}

.news-btns .up {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0;
    width: 30px;
    height: 30px;
    margin-left: -3px
}

.news-btns .upnew {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 0;
    width: 30px;
    height: 30px;
    margin-left: -3px
}

.news-btns .toggle {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 5px;
    width: 30px;
    height: 30px
}

.news-btns .togglenew {
    background: #0858a7;
    color: #fff;
    padding: 5px 3px 5px 5px;
    width: 30px;
    height: 30px
}

.latest-news {
    background: #0858a7;
   
}

.main-banner .buttons {
    display: flex;
    justify-content: center;
    margin-top: -69px;
}

.newslider .bn-controls button {
    width: 25px;
    float: left;
    cursor: pointer;
    border: none;
    text-align: center;
    background-color: #03308500;
    margin-right: 1px
}

.newslider .bn-controls {
    right: 1px;
    top: -39px
}

.newslider .bn-news ul li a {
    color: #fffefe
}

.news-title {
    float: left;
    background: #033085;
  padding-bottom: 15px;
}

.news-title h2 {
    font-size: 16px;
    color: #ffff;
    padding-left: 80px;
    padding-top: 15px
}

.main-banner .buttons button {
    background: #033085
}

.newslider .bn-controls {
    right: 40px;
    top: -30px;
    background: #033085;
    border-radius: 23px;
    height: 27px
}

.newslider .bn-controls button:hover {
    background-color: #eee0
}

.bn-controls button:hover {
    background-color: #eee0
}

.newslider .bn-arrow {
    margin: 0;
    display: inline-block;
    height: 8px;
    position: relative;
    width: 8px;
    top: -6px
}

.newslider .bn-pause {
    position: relative;
    width: 0;
    height: 11px;
    display: inline-block;
    top: -5px;
    left: 0
}

.newslider .bn-pause:after {
    background-color: #fff
}

.newslider .bn-pause:before {
    background-color: #fff
}

.newslider .bn-arrow:after {
    border-color: #fff
}

.newslider .bn-play:after {
    left: 100%;
    top: 55%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #fff;
    border-width: 6px;
    margin-top: -10px
}

.newslider .bn-news ul {
    margin-left: 0 !important
}

.gallery-image-item img {
    width: 100%;
    height: 300px
}

.gallery-image-item {
    margin-bottom: 15px
}

element.style {
    display: flex
}

.accibility {
    display: flex
}

#block-custom-theme-views-block-home-page-banner-block-1 .slick img {
    width: 100% !Important
}

.dept-page {
    display: flow-root
}

.dept-page .col-sm-4.views-row {
    float: left;
    text-align: center
}

.dept-page .views-field-field-photo {
    border: 1px dashed #c3c3c3;
    margin-right: 15px;
    margin-bottom: 0;
    padding: 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 5px
}

.dept-page .field-content {
    background: #cd5208;
    width: 97%;
    display: block;
    color: #fff;
    padding: 10px 4px;
    box-shadow: -2px 14px 7px -10px rgb(7 41 77/45%)
}

.logo-section {
    padding-top: 5px
}

.home-video-image img {
    width: 100%
}

.home-events .event-img img {
    height: 200px
}

#block-custom-theme-views-block-products-block-1 .views-field.views-field-title {
    text-align: center;
    padding: 6px 0 0
}

#block-custom-theme-views-block-products-block-1 .product-title {
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    padding: 8px 2px 0;
    margin-right: 14px;
    margin-top: -10px;
    height: 84px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px
}

#block-custom-theme-views-block-products-block-1 .product-read-more-btn a {
    background: #033085;
    color: #fff;
    padding: 6px 15px;
    border-radius: 23px;
    margin-top: -1px;
    border: 2px solid #fff
}

#block-custom-theme-views-block-products-block-1 .product-read-more-btn {
    margin-top: -23px;
    display: flex;
    justify-content: center
}

.home-video-read-more {
    background: #0858a7;
    padding: 10px;
    text-align: center
}

.home-video-read-more a {
    color: #fff
}

#block-custom-theme-views-block-products-block-1 .views-field-field-product-image {
    background: #fff;
    padding: 7px;
    margin-right: 14px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px
}

.double-line-bottom:before {
    background: #0858a7
}

.double-line-bottom:after {
    background: #0858a7
}

#block-custom-theme-views-block-about-us-block-1 .readmore {
    color: #fff;
    margin-top: 40px
}

#block-custom-theme-views-block-about-us-block-1 h1 {
    padding-bottom: 10px
}

.file {
    display: inline-block;
    min-height: 16px;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center
}

.PDF {
    background-image: url(../images/application-pdf.png)
}

#block-custom-theme-blocktabshometabs .item-list li {
    padding-left: 0;
    position: relative;
    text-align: left;
    margin-left: 31px;
    padding-top: 7px;
    margin-right: 9px;
    padding-bottom: 16px;
    list-style: none;
    border-bottom: 1px dashed#6666
}

#block-custom-theme-blocktabshometabs .item-list li:before {
    content: "\F136";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: -28px;
    color: #0858a7;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700
}

#block-custom-theme-pagetitle h1 {
    margin-bottom: 15px
}

.views-exposed-form {
    display: flex
}

.views-exposed-form .form-select {
    display: block;
    width: 100%;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5;
    margin: 10px 0 15px;
    background-color: #fff;
    background-image: url(../images/down.png) !important;
    background-position: right .75rem center
}

.product-page {
    display: flow-root
}

.product-page .col-sm-4.views-row {
    float: left;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px
}

.product-page .views-field-title {
    background: #0858a7;
    width: 100%;
    display: block;
    color: #fff;
    padding: 10px 4px;
    box-shadow: -2px 14px 7px -10px rgb(7 41 77/45%);
    height: 80px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}

.product-page .views-field-title .field-content a {
    color: #fff;
    font-weight: 700;
    font-size: 16px
}

.product-page img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.views-exposed-form .form-submit {
    background: #0858a7;
    color: #fff;
    padding: 6px 30px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 0;
    float: right;
    font-size: 14px;
    margin-top: 28px;
    letter-spacing: 1px
}

.views-exposed-form .form-actions {
    margin-left: 0
}

.views-exposed-form .form-item {
    margin-right: 10px
}

.views-exposed-form .form-required {
    font-weight: 600
}

#block-custom-theme-views-block-products-block-1 .views-field-field-thumbnail-image {
    background: #fff;
    padding: 7px;
    margin-right: 14px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px
}

#search-block-form {
    display: inline-flex
}

#search-block-form .form-search {
    width: 100%;
    padding: 6px 15px;
    /* outline: none; */
    resize: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #5e5b5b17;
    border-radius: 7px;
    font-size: 14px;
    background: #d8f3ff;
    box-shadow: 2px 2px 2px #e7e7e7b8
}

.slick-slide img {
    display: block;
    width: 100%
}

#block-custom-theme-views-block-products-block-1 .slick-next {
    right: 15px
}

#block-custom-theme-views-block-products-block-1 .slick-prev {
    left: -15px
}

#block-custom-theme-views-block-bdl-events-block-1 .slick-next {
    right: 10px
}

#block-custom-theme-views-block-bdl-events-block-1 .slick-prev {
    left: 0
}

#block-custom-theme-views-block-photo-gallery-block-1 .slick-next {
    right: 10px
}

#block-custom-theme-views-block-photo-gallery-block-1 .slick-prev {
    left: -14px
}

#block-custom-theme-views-block-footer-external-logos-block-1 .slick-next {
    right: 20px
}

#block-custom-theme-views-block-footer-external-logos-block-1 .slick-prev {
    left: -12px
}

#block-custom-theme-views-block-photo-gallery-block-1 .slick-prev {
    top: 40%
}

#block-custom-theme-views-block-photo-gallery-block-1 .slick-next {
    top: 40%
}

#block-custom-theme-views-block-products-block-1 .slick-prev {
    top: 40%
}

#block-custom-theme-views-block-products-block-1 .slick-next {
    top: 40%
}

.inner-page p {
    text-align: justify
}

.footer-view {
    background: #0858a7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 19px;
    font-weight: 300;
    border-bottom: 2px solid #062765;
    margin-bottom: 15px
}

.footer-view:hover {
    color: #fff
}

.photogallery-img img {
    width: 100%;
    height: 202px
}

.photo-gallery-view {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px
}

.photogallery-title {
    background: #0858a7;
    padding: 10px;
    text-align: center;
    height: 80px;
    color: #fff
}

.photogallery-title a {
    color: #fff
}

.inner-page #block-custom-theme-content {
    display: flow-root
}

.dir-inner-image {
    float: right;
    padding-left: 10px
}

.js-form-required.form-required:before {
    content: " *";
    color: red
}

.js-form-item.form-item {
    padding-bottom: 15px
}

#webform-submission-retired-employee-medical-benefit-node-1063-add-form .form-select {
    width: 100%;
    padding: 12px 20px;
    /* outline: none; */
    resize: none;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #2f2222c9;
    border-radius: 30px
}

#webform-submission-retired-employee-medical-benefit-node-1063-add-form label {
    padding-bottom: 10px
}

.inner-page-banner img {
    width: 100%
}

.page-banner-title {
    margin-top: -14%;
    font-size: 40px;
    font-weight: 800;
    color: #033085
}

.director-inner-page .views-row {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.Managing-Director {
    margin-right: 15px;
    border: 1px solid #dfdbdb;
    box-shadow: 0px 2px 8px rgb(170 171 179/32%);
    margin-bottom: 15px
}

.Managing-Director-body {
    background: #0858a7;
    text-align: center;
    height: 95px;
    padding: 10px
}

.Managing-Director-text {
    color: #fff;
    text-align: center !important
}

.Managing-Director-text a {
    color: #fff;
    text-align: center !important
}

.director-inner-page h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #033085;
    margin-bottom: 15px
}

.director-inner-page .views-view-grid {
    margin-bottom: 25px
}

.search-block-form .form-submit {
    background-size: 19px !important;
    width: 34px;
    height: 35px;
    cursor: pointer;
    border: 1px;
    overflow: hidden;
    text-indent: -201px;
    font-size: 0px;
    background: url(../img/site-search-white.png) no-repeat center center #033085;
    padding: 7px 21px;
    margin: 0;
    background-color: #033085;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -6px
}

#block-custom-theme-searchform {
    margin-top: 6px;
    position: absolute;
    z-index: 99;
    right: 334px
}

.search-form #edit-basic {
    display: flex
}

#search-form .form-submit {
    left: -22px;
    width: 5%;
    background: url(../img/site-search-white.png) no-repeat center center #033085;
    color: #fff;
    font-size: 0px;
    padding: 5px 20px;
    height: 49px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
}

.sitemap-item ul {
    list-style: disc;
    margin-bottom: 20px
}

.sitemap-item ul ul {
    margin-bottom: 0;
    margin-left: 18px;
    list-style-type: circle;
    margin-bottom: 20px
}

.sitemap-item ul ul ul {
    margin-bottom: 0;
    margin-left: 36px;
    list-style-type: square
}

.event-desc {
    min-height: 114px;
}

.video1 {
    width: 100%;
}

.nav-text {
    display: none;
}

.service_3 .buttons button {
    border: none;
    border-radius: 63px;
    position: relative;
    padding: 0;
    min-width: 60px;
    top: 10px;
    height: 50px;
    z-index: 99;
    height: 25px;
    line-height: 1;
    background: #033085;
}

.home_photo_gallery .buttons button {
    top: 15px;

}

.clients .buttons button {
    top: 15px;
}

.home-events .buttons button {
    top:0px;
}

.news-btns .togglenew:before {
    content: "\f04c";
    font-family: "Font Awesome 5 Pro" !important;
    position: relative;
    left: 0;
    color: #fff;
    font-size: 14px
}

#ticker-controls {

    display: flex;
}

:lang(hi).sm-clean a,
.sm-clean a:hover,
.sm-clean a:focus,
.sm-clean a:active,
.sm-clean a.highlighted {
    padding: 8px;
}


a.Twitter-new {
    color: #fff;
}

.submenu-sidebar {
    display: none;
}

.submenu-sidebar .link {
    background-color: #1098d3;
}



 .about-us-01 h2 {
    font-size: 24px;
    padding-bottom: 10px;
    color: #033085;
}




/* .directormsg h2 {
    font-size: 24px;
    padding-bottom: 10px;
    padding-top: 10px;
} */



.quick_link  h2 {
    font-size: 16px;
    padding-bottom: 10px;
  
}



.accordion-body h3 {font-size:16px;}

.lastupdate {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}



.lastupdate span {
    padding: 0px 5px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


#accordion .menu-item a.link::before {
	content: "\EEAF";
	font-family: remixicon;
	position: absolute;
	left: 18px;
	color: #c2f0ff;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
}





.gov-block-url {
    margin-top: -24px;
}




#block-custom-theme-views-block-products-block-1 .slick-dots {
   
    bottom: -62px;
   
}

#block-custom-theme-views-block-bdl-events-block-1 .slick-dots {
   
    bottom: -44px;
   
}


#block-custom-theme-views-block-photo-gallery-block-1 .slick-dots {
   
    bottom: -36px;
   
}





.clients .buttons {
    display: flex;
    justify-content: center;
    margin-top: -95px;
}

#block-custom-theme-views-block-footer-external-logos-block-1 .slick-dots {
    bottom: -47px;
}





.home_photo_gallery .buttons {
    display: flex;
    justify-content: center;
    margin-top: -91px;
}



.slick-slide:has(> div > .visually-hidden[role="status"]:only-child) {
  display:none !important;
  width:0 !important;
  height:0 !important;
  overflow:hidden !important;
}



.footer-logo .views-field.views-field-nothing {
    background: #fff;
    text-align: center;
    margin-right: 30px;
}

.qr-img{
width: 100%;
}

span {
color: #000;
}

.home-page-event span, #block-custom-theme-breadcrumbs span {
color: #fff;
}

.col-xl-4.col-lg-4.d-lg-block.gov-block {
    color: #fff;
}

a#toggleTextSpace,a#toggleTextSize,a#toggleSearch  {
    color: #005aa3;
}


.new-logo:after {
       content: url(../images/new-blinking2.png) ;

}