﻿

@font-face {
    font-family: 'Dubai-Bold';
    src: url('../fonts/Dubai-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Dubai-Light';
    src: url('../fonts/Dubai-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Dubai-Medium';
    src: url('../fonts/Dubai-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Dubai-Regular';
    src: url('../fonts/Dubai-Regular.ttf') format('truetype');
}

a, h1, h2, h3, h4, h5, h6, p {
    color: var(--black-color);
}

.opacity1 {
    opacity: 0.5;
}


html {
    font-size: 14px;
    line-height: 20px;
}

    html.font-small {
        font-size: 12px;
        line-height: 16px;
    }

    html.font-large {
        font-size: 16px;
        line-height: 24px;
    }

body {
    margin: 0;
    padding: 0;
    color: var(--black-color);
    --bs-body-text-align: left;
}

.ae {
    --bs-body-text-align: right;
}

body, label, input, textarea, select, button {
    font-family: var(--Dubai);
}
    /* This will make the border gray when the button is not checked. */
    input[type=radio]:not(:checked)::-ms-check {
        border-color: mediumspringgreen !important;
    }

    input[type=radio]::-ms-check {
        border-color: red !important; /* This will make the border red when the button is checked. */
        color: red !important; /* This will make the circle red when the button is checked. */
    }


/*main*/
.show-en {
    display: inline;
}

.show-ar {
    display: none;
}

a {
    text-decoration: none;
}

    a:hover,
    a:focus,
    a:active {
        color: var(--theme-dof);
    }

.floating {
    float: left;
}

.floating-inverse {
    float: right;
}
/*mega menu*/
.gov-dld {
    width: 105px;
}

.dld-logo,
.dsg-logo,
.gov-logo {
    display: inline-block;
}

.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*side menu fix*/
.menu-open ul.nav.navbar-nav {
    padding: 0 32px;
}

.navbar-nav > .nav-item > .nav-link {
    padding: 14px 0;
    position: relative;
    color: var(--dark-theme);
    line-height: 2;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.navbar-nav > .nav-item.active > .nav-link {
    color: var(--theme-dof)
}

.navbar-nav > .nav-item.dropdown .dropdown-menu {
    background-color: #fff;
    border: none;
    margin: 4px 1px 0;
    min-width: 360px;
    padding: 16px 0;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.30);
    /*box-shadow: 0 0 20px 0 rgb(183 183 183 / 30%);*/
    display: none;
}

    .navbar-nav > .nav-item.dropdown .dropdown-menu li > a {
        display: flex;
        border-radius: 8px;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
        text-decoration: none;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
        margin: 0 16px;
        position: relative;
    }

        .navbar-nav > .nav-item.dropdown .dropdown-menu li > a:hover,
        .navbar-nav > .nav-item.dropdown .dropdown-menu li.show > a {
            /*background-color: rgb(0 122 53 / 10%);
            color: var(--theme-dof);*/
            background-color: var(--theme-dof);
            color: white;
        }

.scroll-move .navbar-nav > .nav-item.dropdown .dropdown-menu li > a:hover,
.scroll-move .navbar-nav > .nav-item.dropdown .dropdown-menu li.show > a {
    /*background-color: rgb(0 122 53 / 10%);
            color: var(--theme-dof);*/
    background-color: var(--theme-dof);
    color: white;
}

.navbar-nav > .nav-item.dropdown .dropdown-menu:before {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -10px;
    left: -50px;
    right: -50px;
    z-index: -1;
    background-color: transparent;
}

.navbar-nav > .nav-item .dropdown-submenu > .dropdown-menu:before {
    top: -50px;
    left: 0;
    z-index: -1;
}

.navbar-nav > .nav-item.dropdown .dropdown-menu li.dropdown-submenu > a:before {
    width: 8px;
    height: 8px;
    border: solid var(--theme-dof);
    border-width: 0 3px 3px 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    content: '';
    position: absolute;
    right: 15px;
    top: 40%;
}

.navbar-nav .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px 6px;
    border-radius: 0 6px 6px 6px;
    color: #fff;
}

.navbar-custom .navbar-nav a:visited {
    color: var(--dark-theme);
}

/*buttons*/
.btn-grey {
    background-color: #fbfbfb;
    border: none;
    color: var(--black-color) !important;
    border: 1px solid #dededf;
    box-shadow: none !important;
}

    .btn-grey:hover, .btn-grey:focus, .btn-grey:active {
        background-color: #fbfbfb;
        border: 1px solid #dededf;
    }

.btn_1 {
    background-color: #00893E;
    border: none;
    color: #fff;
    transition: all 300ms ease-in;
}

    .btn_1:hover {
        background-color: #127335;
        color: #fff;
    }

    .btn_1:focus, .btn_1:active, .btn_1:visited, .btn_1:first-child:active, :not(.btn-check) + .btn_1:active {
        color: #fff;
        box-shadow: none;
        background-color: #127335;
    }

    .btn_1.disabled, .btn_1:disabled {
        background-color: #00893E;
        color: #fff;
        opacity: 0.60;
        cursor: not-allowed;
    }

.btn_1_outline {
    background-color: transparent;
    border: 1px solid var(--black-color);
    color: var(--black-color);
    min-width: 160px;
}

    .btn_1_outline:hover, .btn_1_outline:focus, .btn_1_outline:active {
        background-color: var(--black-color);
        border: 1px solid #0f3662;
        color: #fff;
        box-shadow: none;
    }

    .btn_1_outline.disabled, .btn_1_outline:disabled {
        background-color: transparent;
        border: 1px solid #0A6892;
        color: #0A6892;
        opacity: 0.60;
        cursor: not-allowed;
    }

.btn_2 {
    background-color: var(--black-color);
    border: none;
    color: #fff;
    min-width: 160px;
}

    .btn_2:hover, .btn_2:focus, .btn_2:active {
        background-color: var(--black-color);
        color: #fff;
        box-shadow: 0px 10px 30px rgba(7, 71, 100, 0.16);
    }

.btn_3 {
    background-color: #0A6892;
    border: none;
    color: #fff;
}

    .btn_3:hover, .btn_3:focus, .btn_3:active, .btn_3.active {
        background-color: #074764;
        color: #fff;
    }

.btn_ob {
    background-color: #fff;
    border: 1px solid #fbfbfb; /*border-bottom: 1px solid var(--black-color);*/
    color: var(--black-color);
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

    .btn_ob i {
        color: var(--black-color);
    }

    .btn_ob:hover, .btn_ob:focus, .btn_ob:active {
        background-color: var(--black-color);
        border: 1px solid #0f3662;
        color: #fff;
        box-shadow: none;
    }

        .btn_ob:hover i, .btn_ob:focus i, .btn_ob:active i {
            color: #fff;
            background-color: var(--black-color);
            border: 1px solid #0f3662;
        }

.btn_grey {
    background-color: #F7F7F9;
    border: 1px solid #fbfbfb;
    color: var(--black-color);
}

    .btn_grey:hover, .btn_grey:focus, .btn_grey:active, .btn_grey.active {
        background-color: var(--black-color);
        border: 1px solid #0f3662;
        color: #fff;
        box-shadow: none;
    }

.btn_search {
    border-radius: 40px;
}

.search-icon {
    position: absolute;
    right: 10px;
    bottom: 8px;
    padding: .8rem 1.5rem;
}

.btn_style1 {
    padding: .375rem 1.75rem;
}

.btn_1_showdow {
    box-shadow: 0px 10px 30px rgba(10, 104, 146, 0.16);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    bottom: 0;
    right: 0;
}

.dropdown-user .dropdown-toggle::after,
.dropdown-noti .dropdown-toggle::after {
    display: none;
}

.dropdown-user .dld-sub-header__btn,
.dropdown-noti .dld-sub-header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    /*background-color: #f5f5f5;*/
}

.dropdown-user .dropdown-menu,
.dropdown-noti .dropdown-menu {
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    border: none;
    inset: 50px 0 auto auto;
    min-width: 350px;
    border: 1px solid #dededf;
}

    .dropdown-user .dropdown-menu .ddl-title {
        margin-bottom: 0.5rem;
    }

        .dropdown-user .dropdown-menu .ddl-title span {
            font-size: 18px;
            font-weight: 600;
        }

    .dropdown-user .dropdown-menu li .dropdown-item,
    .dropdown-noti .dropdown-menu li .dropdown-item {
        padding: 8px 16px;
        position: relative;
        cursor: pointer;
    }

        .dropdown-user .dropdown-menu li .dropdown-item:hover,
        .dropdown-user .dropdown-menu li .dropdown-item:focus {
            color: var(--theme-dof);
            background-color: #e8f6fc;
            border-radius: 8px;
            text-shadow: 0px 0px 1px var(--theme-dof);
        }

        .dropdown-user .dropdown-menu li .dropdown-item:visited {
            color: #000;
        }

        .dropdown-user .dropdown-menu li .dropdown-item:before {
            content: '';
            width: 8px;
            height: 8px;
            border: solid var(--theme-dof);
            border-width: 0 3px 3px 0;
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            position: absolute;
            right: 10px;
            top: 40%;
        }

    .dropdown-user .dropdown-menu li.user-definition .dropdown-item:before {
        display: none;
    }

    .dropdown-user .dropdown-menu li.user-definition .dropdown-item,
    .dropdown-noti .dropdown-menu li.user-definition .dropdown-item {
        text-align: center;
        color: var(--theme-dof);
        background-color: #e8f6fc;
        border-radius: 8px;
        text-shadow: 0px 0px 1px var(--theme-dof);
    }

    .dropdown-noti .dropdown-menu li .dropdown-item-content + .dropdown-item-content {
        border-top: 1px solid #dededf;
        display: inline-block;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

.icon-notification-bell {
    background-image: url(../assets/img/notification_bell.svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: inline-block;
}

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    background: #fff;
}

.mobile-search-icon {
    display: none;
}

.dubai-logo-white,
.dld-logo-white {
    display: none;
}

.mx-height-inherit {
    max-height: inherit !important;
}

.line-clamp-3 {
    -webkit-line-clamp: 3 !important;
}

.line-clamp-inherit {
    -webkit-line-clamp: inherit !important;
}
/*end main*/

.dld-icon-md {
    font-size: 24px;
}

.dld-footer {
    transition: bottom 0.3s;
    height: 60px;
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px -4px 20px 4px rgba(0, 0, 0, 0.16);
    font-size: 1rem;
}

    .dld-footer .container {
        padding-left: 24px;
        padding-right: 24px;
    }

.footer-position {
    bottom: -60px;
}

/*.sticky-footer-left a,
.sticky-footer-left .chat-fab-link {
    border-left: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}
.sticky-footer-right a,
.sticky-footer-right .chat-fab-link {
    border-right: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}*/

/*.sticky-footer-text {
    margin-left: 10px;
}*/

/*.sticky-footer-left a:first-child {
    padding-left: 0;
}

.sticky-footer-right a:last-child,
.sticky-footer-right .chat-fab-link {
    padding-right: 0;
}

.sticky-footer-left a:last-child,
.sticky-footer-right a:last-child,
.sticky-footer-right .chat-fab-link {
    border-right: none
}*/


.sticky-footer-left a,
.sticky-footer-left .chat-fab-link {
    border-left: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}

.sticky-footer-right a,
.sticky-footer-right .chat-fab-link {
    border-right: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}

.sticky-footer-left a:first-child {
    padding-left: 0;
    border-left: 0;
}

.sticky-footer-right a:last-child,
.sticky-footer-right .chat-fab-link {
    padding-right: 0;
    border-right: 0;
}



.ae .sticky-footer-left a,
.ae .sticky-footer-left .chat-fab-link {
    border-right: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}

.ae .sticky-footer-right a,
.ae .sticky-footer-right .chat-fab-link {
    border-right: 1px solid #e8e8e8;
    padding-left: 12px;
    padding-right: 12px;
}

.ae .sticky-footer-left a:first-child {
    padding-right: 0;
    border: 0;
}

.ae .sticky-footer-left a:last-child {
    padding-left: 0;
    border: 0;
}

.ae .sticky-footer-right a:last-child,
.ae .sticky-footer-right .chat-fab-link {
    padding-left: 0;
    border-left: 0;
}

@media screen and (max-width:991px) {
    .sticky-footer-left a:first-child {
        padding-right: 0;
        padding-left: 0;
        margin-left: 24px;
    }

    .ae .sticky-footer-left a:first-child {
        padding-right: 0;
        padding-left: 0;
        margin-right: 24px;
    }
}



.dld-main-header {
    --main-header-height: 104px;
    height: var(--main-header-height);
    padding: 24px 0;
    width: 100%;
    z-index: 1;
    background-color: transparent;
    position: fixed; /*margin-bottom:60px;*/
}

.dld-main-header__logo {
    width: 100%;
    object-fit: contain;
    height: 52px;
    margin-top: 10px;
}

.dld-main-header__gov-logo {
    width: 100%;
    object-fit: contain;
    max-width: 120px;
    height: 72px;
}

.dld-sub-header {
    /*    --sub-header-height: 3.75rem;*/
    --sub-header-height: 60px;
    height: var(--sub-header-height);
    position: fixed;
    top: 100px;
    width: 100%;
    transition: top 0.3s;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.sub-nav-position {
    top: 40px;
}

.dld-sub-header__actions {
    display: flex;
}

.btn-mic {
    position: absolute;
    right: 8px;
    top: 8px;
    opacity: 0;
    background-color: #f5f5f5;
    border: none;
    z-index: -1;
}

.dld-sub-header__actions .search .search__input {
    width: 100px;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.dld-sub-header__btn {
    width: 41px;
    height: 41px;
    margin-left: 16px;
    cursor: pointer;
    border: none;
    background-color: #f5f5f5;
}

.dld-sub-header__locale,
.dropdown-user .dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: unset;
    padding: 0 16px;
    border-radius: 20px !important;
}

    .dropdown-user .dropdown-toggle .sr-only {
        font-size: 1rem;
        width: unset;
        position: relative;
        height: unset;
        clip: inherit;
        margin-left: 10px;
    }

.icon-account {
    font-size: 18px;
}

.dld-sub-header__actions .search {
    position: relative;
}

    .dld-sub-header__actions .search .icon-search {
        position: absolute;
        left: 24px;
        top: 25%;
    }

    .dld-sub-header__actions .search .search__input, .dld-side-nav .search .search__input {
        height: 40px;
        text-indent: 10px;
        background-color: #f5f5f5;
        border: none;
        border-radius: 50px;
        margin-left: 16px;
        padding-left: 24px;
        padding-right: 12px;
    }

        .dld-sub-header__actions .search .search__input::placeholder, .dld-side-nav .search .search__input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: var(--black-color);
            opacity: 1; /* Firefox */
        }

.icon-chat,
.icon-happiness,
.dld-sub-header__locale:hover,
.accessBtn:hover .icon-accessibility,
.dropdown-user:hover .icon-account {
    color: var(--theme-dof);
}

.icon-location {
    position: relative;
    left: 4px;
}

.accessBtn {
    padding: 0;
}

.accessibility-wheel-chair {
    background-image: url(../assets/img/icon-wheel-chair.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    background-position: center;
}

.dld-head-section {
    width: 100%;
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: var(--head-section-min-height);
}

.service-name,
.service-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: 1;*/
    align-self: stretch;
    color: #000;
    overflow: hidden;
    /*  text-overflow: ellipsis;*/
    transition: all 300ms linear;
}

.service-name {
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    height: 100%;
    width: 100%;
}

.service-description {
    font-size: 1rem;
    line-height: 20px;
    letter-spacing: 0.07px;
    -webkit-line-clamp: 2;
}

.service-icon {
    min-width: 60px;
    min-height: 70px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.most-used-services .service-box .service-icon i {
    width: 100%;
    /*height: 40px;*/
    height: 100%;
    display: inline-flex;
    background-position: center;
    transition: all 300ms ease-in-out;
    background-repeat: no-repeat;
}

.dld-logo-for-mobile.dg {
    display: none;
}

/*home.css*/
.dld-banner-wrapper {
    height: calc(100vh + 90px);
    top: calc(var(--head-section-min-height) * -1);
    position: relative;
    overflow: hidden;
}

@media screen and (min-width:993px) {

    .dld-banner-wrapper {
        height: calc(100vh + 30px);
    }
}

@media screen and (min-width:1024px) {

    .dld-banner-wrapper {
        height: calc(100vh - 60px);
    }
}

.dld-head-section {
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 63.02%, rgba(0, 0, 0, 0.00) 100%);*/
    background: linear-gradient(180deg, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.40) 60.0%, rgba(0, 0, 0, 0.00) 100%);
}

.dld-sub-header {
    background-color: transparent;
}

.dld-sub-header__actions .search {
    background-color: transparent;
}

.most-used-services .service-box .service-icon i {
    filter: invert(70%) sepia(31%) saturate(0%) hue-rotate(151deg) brightness(100%) contrast(95%);
}

.most-used-services .service-box:hover .service-icon i {
    /*filter: invert(100%) sepia(0%) saturate(900%) hue-rotate(228deg) brightness(95%) contrast(95%);*/
    filter: inherit;
}
/*
.icon-head-1 {
    background-image: url(../img/our-services/maliyoun_icon.png);
}

.icon-head-2 {
    background-image: url(../img/our-services/military_icon.png);
}

.icon-head-3 {
    background-image: url(../img/our-services/publication_icon.png);
}

.icon-head-4 {
    background-image: url(../img/our-services/partnership_icon.png);
}

.icon-head-5 {
    background-image: url(../img/our-services/maliyoun_icon.png);
}*/

.icon-head-1 {
    background-image: url(../img/our-services/maliyoun_icon.svg);
}

.icon-head-2 {
    background-image: url(../img/our-services/military_icon.svg);
}

.icon-head-3 {
    background-image: url(../img/our-services/publication_icon.svg);
}

.icon-head-4 {
    background-image: url(../img/our-services/partnership_icon.svg);
}

.icon-head-5 {
    background-image: url(../img/our-services/maliyoun_icon.svg);
}


.h-banner-control {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    margin: 0 auto;
    /*bottom: 275px;*/
    bottom: 240px;
    max-width: 200px;
    left: 0;
    right: 0;
}

.btn-slide-control {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: none;
    display: inline-flex;
    position: relative;
    z-index: 13;
    padding: 0;
    margin: 0 10px 0 0;
}

    .btn-slide-control .icon-play {
        background: url(../img/icon-play.svg), none;
        background-repeat: no-repeat;
        width: 25px;
        height: 25px;
        position: relative;
    }

.h-banner-control .swiper-pagination {
    position: relative;
}

.h-banner-control .swiper-pagination-bullet {
    background-color: #fff;
    width: 6px;
    height: 6px;
    opacity: .7;
}

    .h-banner-control .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
    }

.h-banner-control .swiper-button-next,
.h-banner-control .swiper-button-prev {
    background-color: transparent;
    color: #fff;
    width: auto;
    height: auto;
    top: 29px;
}

    .h-banner-control .swiper-button-next:after,
    .h-banner-control .swiper-button-prev:after {
        font-size: 12px;
    }

.dld-home-banner .slide1 {
    background: url("/Style Library/unifiedassets/img/banners/our_vision_banner.png"), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dld-home-banner .slide2 {
    background: url("/Style Library/unifiedassets/img/banners/GSSP_banner.png"), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dld-home-banner .slide3 {
    background: url("/Style Library/unifiedassets/img/banners/Maliyoun_banner.png"), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dld-home-banner .slide4 {
    background: url("/Style Library/unifiedassets/img/banners/paperless_banner.png"), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dld-home-banner .slide5 {
    background: url("/Style Library/unifiedassets/img/banners/Tahiyah_banner.png"), #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/*
    .dld-home-banner .slide6 .slide-title
    {
        flex-direction: column;
    }*/

.dld-home-banner .swiper-slide {
    display: flex;
    align-items: flex-end;
    padding: 175px 0 260px 0;
}

    .dld-home-banner .swiper-slide:before {
        content: '';
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 9.98%, rgba(0, 0, 0, 0.40) 66.71%, rgba(0, 0, 0, 0.00) 100%);
        height: 595px;
        display: flex;
        width: 100%;
        position: absolute;
        bottom: 0;
    }

.dld-sub-header {
    box-shadow: none;
}

.navbar-nav > .nav-item.dropdown .dropdown-menu li > a {
    color: #000;
}

.dld-sub-header__actions .search .search__input,
.dld-side-nav .search .search__input,
.dld-sub-header__btn,
.dropdown-user .dld-sub-header__btn,
.dropdown-noti .dld-sub-header__btn {
    background-color: rgba(255, 255, 255, 0.25); /*rgba(0, 0, 0, 0.04);*/
}

    .dld-sub-header__actions .search .search__input::placeholder {
        color: #fff;
    }

    .dld-sub-header__actions .search .search__input:-ms-input-placeholder {
        color: #fff;
    }

    .dld-sub-header__actions .search .search__input::-ms-input-placeholder {
        color: #fff;
    }

    .dld-sub-header__actions .search .search__input:focus {
        width: 200px;
        outline: none;
        box-shadow: 0 0 0 0.125rem var(--theme-dof);
    }

    .dld-sub-header__actions .search .search__input:focus {
        box-shadow: 0 0 0 0.125rem #fff;
    }

.scroll-move .dld-sub-header__actions .search .search__input, .scroll-move .dld-side-nav .search .search__input, .scroll-move .dld-sub-header__btn, .scroll-move .dropdown-user .dld-sub-header__btn, .scroll-move .dropdown-noti .dld-sub-header__btn {
    background-color: rgba(0, 0, 0, 0.04);
}

.btn-mic {
    background-color: transparent;
    color: #fff;
}

.icon-notification-bell {
    background-image: url(../img/notification_bell_white.svg);
}

.accessibility-wheel-chair {
    background-image: url(../img/icon-wheel-chair-white.svg);
}

.navbar-light .navbar-toggler {
    color: #fff;
    outline: none !important;
    box-shadow: none !important;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    justify-content: center;
    text-align: start;
    width: 100%;
}

    .slide-content .slide-title {
        display: flex;
        color: #fff;
        font-size: 2.25rem;
        /*font-weight: 700;*/
        line-height: 40px;
        letter-spacing: -0.36px;
        margin-bottom: 10px;
    }

    .slide-content .slide-sub {
        color: #fff;
        /*max-width: 750px;*/
        margin-bottom: 20px;
        align-self: stretch;
        font-weight: normal;
        font-size: 1.25em;
    }

.dld-service-card-inner {
    position: absolute;
    z-index: 1;
    height: auto;
    /*bottom: 40px;*/
    bottom: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
    left: 0;
    right: 0;
}

.most-used-services .service-box {
    display: flex;
    width: 255px;
    height: 172px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: 16px;
    background: #FFF;
    flex-shrink: 0;
    text-align: left;
    animation-duration: 400ms;
    transition: all 400ms cubic-bezier(0.20, 0, 0.35, 0.99);
    cursor: pointer;
}

.mouse {
    width: 16px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid #fff;
    opacity: .6;
    position: absolute;
    top: 35px;
    z-index: 1;
    padding: 2px;
}

    .mouse:before, .mouse:after {
        content: "";
        display: block;
        position: absolute;
    }

.mouse-1:before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 0px;
    left: calc(50% - 3px);
    background: #fff;
    -webkit-animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
    animation: m-1-ball 2s cubic-bezier(0.54, 0, 0.15, 0.98) infinite;
}

@-webkit-keyframes m-1-ball {
    0%, 65%, 100% {
        opacity: 0;
    }

    10%, 40% {
        opacity: 1;
    }

    0% {
        transform: translateY(5px) scale(0.7);
    }

    5% {
        transform: scale(0.7);
    }

    15%, 100% {
        transform: scale(1);
    }

    45%, 65% {
        transform: translateY(14px) scale(0.7);
    }
}

@keyframes m-1-ball {
    0%, 65%, 100% {
        opacity: 0;
    }

    10%, 40% {
        opacity: 1;
    }

    0% {
        transform: translateY(5px) scale(0.7);
    }

    5% {
        transform: scale(0.7);
    }

    15%, 100% {
        transform: scale(1);
    }

    45%, 65% {
        transform: translateY(14px) scale(0.7);
    }
}

.slide-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.70);
    transition: all 300ms ease-in;
}

    .slide-cta:hover, .slide-cta:focus, .slide-cta:active, .slide-cta:focus-visible, :not(.btn-check) + .slide-cta.btn:active {
        background-color: var(--theme-dof);
        color: #fff;
        border-color: var(--theme-dof);
    }


.slide-cta-link {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    border: none;
}

    .slide-cta-link:hover, .slide-cta-link:focus, .slide-cta-link:active {
        background-color: #00893E;
        color: #fff;
        transition: all 300ms ease-in;
    }

.menu-open .dld-sub-header {
    z-index: 2;
}

.scroll-move .dld-sub-header {
    box-shadow: 0px 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.scroll-move .dld-main-header,
.scroll-move .dld-sub-header {
    background-color: #fff;
    transition: all 300ms ease-in-out;
}

.scroll-move .dubai-logo-red,
.scroll-move .dld-logo-default {
    display: inline-block;
}

.scroll-move .dubai-logo-white,
.scroll-move .dld-logo-white {
    display: none;
}

.scroll-move .navbar-nav > .nav-item > .nav-link,
.scroll-move .navbar-custom .navbar-nav a:visited,
.scroll-move .navbar-nav > .nav-item.active > .nav-link,
.scroll-move .dld-sub-header__actions .search .icon-search,
.scroll-move .dld-sub-header__actions .search .search__input,
.scroll-move .dld-sub-header__locale,
.scroll-move .dld-sub-header__locale:hover,
.scroll-move .dropdown-user .dropdown-toggle,
.scroll-move .dropdown-user:hover .icon-account,
.scroll-move .navbar-light .navbar-toggler {
    color: #000;
}

.scroll-move .navbar-nav > .nav-item.dropdown .dropdown-menu li > a {
    color: #000;
}

.scroll-move .dld-sub-header__actions .search .search__input::placeholder {
    color: #000;
}

.scroll-move .dld-sub-header__actions .search .search__input:-ms-input-placeholder {
    color: #000;
}

.scroll-move .dld-sub-header__actions .search .search__input::-ms-input-placeholder {
    color: #000;
}

.scroll-move .dld-sub-header__actions .search .search__input:focus {
    box-shadow: 0 0 0 0.125rem var(--theme-dof);
}

.scroll-move .btn-mic {
    background-color: #f5f5f5;
    color: #000;
}

.scroll-move .icon-notification-bell {
    background-image: url(../img/notification_bell.svg);
}

.scroll-move .accessibility-wheel-chair {
    background-image: url(../img/icon-wheel-chair.svg);
}

#servicesPanelContainer {
    margin-top: -135px;
}
/*start Responsive*/
@media(min-width:575px) {
    .dld-sub-header__actions .search .icon-search,
    .dld-sub-header__actions .search .search__input,
    .dld-sub-header__locale,
    .dld-sub-header__locale:hover,
    .dropdown-user .dropdown-toggle,
    .dropdown-user:hover .icon-account {
        color: #fff;
    }

    .most-used-services { /*gap: 8px; padding-left: 1rem; padding-right: 1rem*/
    }

    .slide-sub-m2 {
        display: none;
    }
}

@media(min-width:576px) {
    .search-ddl-mobile .dropdown-menu {
        display: inline-flex;
        border: none;
        min-width: inherit;
        padding: 0;
        position: relative !important;
        z-index: inherit;
    }

    .dld-footer {
        z-index: 2;
    }
}

@media(min-width:1025px) {
    .most-used-services {
        flex-direction: row;
        justify-content: center;
    }

        .most-used-services .service-box:hover {
            transform: translateY(-28px);
            box-shadow: 0px 8px 120px rgba(48, 48, 52, 0.70);
            z-index: 1;
        }

    .dld-service-card-inner { /*bottom:40px;*/
        padding-top: 40px;
        overflow: visible;
    }
}

@media(min-width:1200px) {


    .scroll-move .navbar-nav > .nav-item:hover .nav-link::after,
    .scroll-move .navbar-nav > .nav-item.active .nav-link:after {
        background-color: var(--theme-dof);
    }

    .navbar-nav > .nav-item > .nav-link,
    .navbar-custom .navbar-nav a:visited,
    .navbar-nav > .nav-item.active > .nav-link {
        color: #fff;
    }

    .myddl-dashboard .my-property .card .card-body {
        padding: 1.25rem;
    }

    .navbar-header {
        display: none;
    }

    .navbar-custom {
        padding: 0;
        flex-direction: row-reverse;
    }

        .navbar-custom .navbar-nav > .nav-item:hover > .dropdown-menu,
        .navbar-custom .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }

    .navbar-nav > .nav-item:hover .nav-link::after,
    .navbar-nav > .nav-item.active .nav-link:after {
        content: '';
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--theme-dof);
        border-top-right-radius: 0.5rem;
        border-top-left-radius: 0.5rem;
        border: none;
        margin: 0;
        position: absolute;
        bottom: 0px;
    }

    .navbar-nav > .nav-item:hover .nav-link::after,
    .navbar-nav > .nav-item.active .nav-link:after {
        background-color: #fff;
    }

    .collapse .navbar-nav > .nav-item {
        margin: 0 12px;
    }

        .collapse .navbar-nav > .nav-item:nth-child(2) {
            margin-left: 0;
        }
}

@media(min-width:1400px) {
    .slide-content {
        max-width: 1320px;
    }

        .slide-content .slide-sub {
            font-size: 24px;
            line-height: 32px;
        }
}

@media (max-width: 1199px) {
    .menu-container .navbar-collapse.collapsing,
    .menu-container .navbar-collapse.collapse {
        background-color: #fff;
        width: 100%;
        max-width: 360px;
        overflow-y: auto;
        padding: 5rem 1rem 12rem;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-100%, 0);
        transition: transform 200ms ease 0s;
    }

        .menu-container .navbar-collapse.collapse.show {
            transform: translate(0px, 0);
        }

    .mobile-menu-title {
        /* margin: 0 0.925rem 0;
        padding-top: 1rem;*/
        /*side menu fix*/
        margin: 0 0 10px;
        padding-top: 1rem;
    }

    .navbar-nav > .nav-item > .nav-link {
        padding: 5px 0;
        border-bottom: 1px solid #dededf;
    }

        .navbar-nav > .nav-item.active > .nav-link,
        .navbar-nav > .nav-item > .nav-link.show {
            border-bottom: 1px solid var(--theme-dof);
        }

    .navbar-nav > .nav-item.dropdown .dropdown-menu:before,
    .navbar-nav > .nav-item .dropdown-submenu > .dropdown-menu:before,
    .navbar-nav.nav > .nav-item.active .nav-link:after {
        display: none;
    }

    .navbar-nav > .nav-item.dropdown .dropdown-menu {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        min-width: inherit;
    }

    .navbar-nav > .nav-item.dropdown > .dropdown-menu.show,
    .navbar-nav .dropdown-submenu .dropdown-menu.show {
        display: block;
    }

    .navbar-nav > .nav-item.dropdown .dropdown-menu li > a {
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #dededf;
    }

        .navbar-nav > .nav-item.dropdown .dropdown-menu li.show > a,
        .navbar-nav > .nav-item.dropdown .dropdown-menu li > a:hover {
            background-color: #fff !important;
            border-bottom: 1px solid var(--theme-dof);
        }

    .navbar-nav > .nav-item .dropdown-submenu > .dropdown-menu li a {
        padding: 10px 15px 10px 30px;
    }

    .navbar-nav > .nav-item.dropdown .dropdown-menu li.dropdown-submenu > a:before {
        right: 5px;
    }

    .navbar-nav > .nav-item.dropdown > .nav-link:after,
    .navbar-nav > .nav-item.dropdown:hover .nav-link::after,
    .navbar-nav > .nav-item.dropdown.active .nav-link:after {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border: solid var(--theme-dof);
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        right: 5px;
        top: 40%;
        display: inline-block;
        background-color: transparent;
        border-radius: 0;
    }

    .ae .navbar-nav > .nav-item.dropdown > .nav-link:after, .ae .navbar-nav > .nav-item.dropdown:hover .nav-link::after {
        right: auto;
        left: 5px;
    }


    .navbar-nav > .nav-item.dropdown > .nav-link.show:after,
    .navbar-nav > .nav-item.dropdown:hover .nav-link.show::after,
    .navbar-nav > .nav-item.dropdown.active .nav-link.show:after,
    .navbar-nav > .nav-item.dropdown .dropdown-menu li.dropdown-submenu > a.show:before {
        border-width: 0 0 3px 3px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
    }

    .dropdown-user .dropdown-menu {
        position: absolute;
    }

    .navbar-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .right-mnu {
        flex-direction: row;
    }

    .navbar-toggler[aria-expanded="true"] .icon-menu {
        align-items: center;
        display: flex;
        padding: .5rem;
        position: relative;
        background-image: url(../img/icon-close.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
        width: 24px;
        height: 24px;
    }

        .navbar-toggler[aria-expanded="true"] .icon-menu:before {
            display: none;
        }

    .navbar-custom .navbar-collapse::-webkit-scrollbar {
        width: 8px;
    }

    .navbar-custom .navbar-collapse::-webkit-scrollbar-track {
        background: #FAFAFA;
        box-shadow: inset 1px 0px 0px #E8E8E8, inset -1px 0px 0px #F0F0F0;
    }

    .navbar-custom .navbar-collapse::-webkit-scrollbar-thumb {
        background: #7F7F7F;
    }

        .navbar-custom .navbar-collapse::-webkit-scrollbar-thumb:hover {
            background: #5f5f5f;
        }

    .menu-container .navbar-collapse.collapse.show .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .dropdown-noti .dropdown-menu {
        position: absolute;
        inset: 50px auto auto -100px;
    }
}

@media(max-width: 1023px) {
    .dld-main-header {
        margin-bottom: 0;
    }

    /* .dld-head-section {
        min-height: 72px;
    }*/
}

@media (max-width: 992px) {
    .nav-item.nav-item-notification {
        position: relative;
    }

        .nav-item.nav-item-notification > .nav-link .red-dot {
            top: 0;
        }

    .navigation-mobile-view .right-mnu li.nav-item-notification .nav-link:after {
        position: absolute;
        content: "";
        border-right: 1px solid #ffffff;
        right: 0;
        width: 1px;
        height: 14px;
        top: 4px;
    }

    .widge-04 {
        margin: 0 1rem;
    }
}

@media (max-width: 991px) {
    .myddl-dashboard .my-property .card, .quick-action .card {
        margin-bottom: 1.5rem;
    }

    .dld-footer {
        height: 60px;
        padding: 1rem 4px 1rem;
        background-color: transparent;
        box-shadow: none;
    }

        .dld-footer .container {
            padding-left: 16px;
            padding-right: 16px;
        }

        .dld-footer span {
            display: none;
        }

    .sticky-footer-left a,
    .sticky-footer-right a,
    .sticky-footer-right .chat-fab-link {
        width: 48px;
        height: 48px;
        background-color: #fff;
        border-radius: 100%;
        /*box-shadow: 0 0 20px 0 rgb(183 183 183 / 30%);*/
        box-shadow: 0 0 20px 0 rgb(0 0 0 / 100%);
        padding: 0;
    }
}

@media (max-width: 768px) {
    .dld-main-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }

    /* .dld-footer .container {
        padding-left: 0;
        padding-right: 0;
    }*/

    .dld-footer__section {
        width: 50px;
    }

    .dld-footer__icon-wrapper {
        width: 50px;
    }

    .dld-main-header {
        display: none;
    }

    .dld-sub-header {
        top: 0;
    }

    .menu-open .sub-nav-position-m {
        top: 0;
    }

    .dld-main-header__logo {
        /*height: 35px;*/
        margin-top: 0px;
    }

    .dld-logo-for-mobile.dg {
        background-color: #fff;
        padding: 0 1rem .5rem;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .menu-container, .navbar-custom {
        padding: 0;
    }

        .menu-container .navbar-collapse.collapse.show + .dld-logo-for-mobile.dg {
            display: flex !important;
            box-shadow: 0px -2px 6px rgb(0 0 0 / 5%);
        }

    .dld-logo-for-mobile.dg .dld-main-header__gov-logo {
        /*height: 45px;*/ /*side menu fix*/
    }

    .dld-main-header {
        margin-bottom: -20px;
    }

    .search-ddl-mobile .dropdown-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: #fbfbfb;
        padding: 0.5rem 0;
        transition: all 0.7s ease 0s;
        margin: 0;
        border-radius: 0;
        border: none;
        display: none;
    }

        .search-ddl-mobile .dropdown-menu.show {
            display: flex;
        }

        .search-ddl-mobile .dropdown-menu form {
            width: 100%;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 1rem;
        }

            .search-ddl-mobile .dropdown-menu form .search__input {
                width: 100% !important;
                border-radius: 4px;
                margin: 0 !important;
            }

    .search-ddl-mobile.search-ddl-mobile.dropdown.dld-sub-header__actions {
        position: inherit;
    }

    .autocomplete-suggestions {
        min-width: inherit;
    }

    .mobile-search-icon {
        border: none;
        background-color: transparent;
        display: flex;
        padding: 0.5rem;
        display: inline-flex;
    }

        .mobile-search-icon.dropdown-toggle::after {
            display: none;
        }

        .mobile-search-icon i {
            position: inherit;
            color: #fff;
        }

    .menu-open .mobile-search-icon i {
        color: #000;
    }

    .navbar-header-wrapper {
        padding: 22.65px 24px; /*side menu fix*/
        z-index: 1;
    }

    .navbar-nav > .nav-item > .nav-link,
    .navbar-nav > .nav-item.dropdown .dropdown-menu li > a,
    .navbar-nav > .nav-item .dropdown-submenu > .dropdown-menu li a {
        /*margin: 0 1rem;*/ /*side menu fix*/
    }

    .dropdown-user .dropdown-menu {
        position: fixed;
    }

    .mobile-menu-title {
        font-weight: 600;
    }

    .quick-link-mobile {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
        z-index: 1;
    }

        .quick-link-mobile .accessibility-wheel-chair {
            background-image: url(../img/icon-wheel-chair.svg);
        }

        .quick-link-mobile .dropdown .btn {
            display: flex;
            align-items: center;
            position: relative;
            background-color: #f5f5f5;
            height: 41px;
        }

            .quick-link-mobile .dropdown .btn:before {
                content: "\e901";
                font-family: 'icomoon' !important;
                speak: never;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                font-size: 18px;
                margin-right: 10px;
            }

        .quick-link-mobile .dropdown.dropdown-user .btn:after {
            display: none;
        }

        .quick-link-mobile .nav-item .dld-sub-header__btn {
            margin: 0;
            background-color: rgba(0, 0, 0, 0.04) !important;
            font-weight: bold;
            border: 1px solid #fff;
        }

        .quick-link-mobile > .nav-item {
            margin: 0 6px;
        }

            .quick-link-mobile > .nav-item > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin: 0;
            }



    .dropdown-user .dropdown-menu {
        top: auto;
        bottom: 110px;
        margin-bottom: 0.5rem;
        min-width: inherit;
        left: 10px;
        right: 10px;
    }

    .quick-link-mobile .dropdown .dropdown-menu .ddl-title {
        font-weight: 600;
    }

    .quick-link-mobile .user-definition {
        margin-top: -1px;
    }

    .quick-link-mobile .dropdown .btn.show:after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 72px;
        left: 0;
        right: auto;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background-color: rgba(0, 0, 0, 0.5);
        opacity: .9;
        z-index: -1;
        border: none !important;
        margin: 0;
    }

    .btn-mic {
        right: 25px;
        z-index: 0;
        opacity: 1;
    }

    .menu-container .navbar-collapse.collapse.show .navbar-toggler {
        display: none;
    }

    .menu-container .navbar-collapse.collapsing, .menu-container .navbar-collapse.collapse {
        max-width: inherit;
        box-shadow: inset 0px 6px 6px rgb(0 0 0 / 5%);
        padding-left: 0;
        padding-right: 0;
    }

    .service-name {
        -webkit-line-clamp: 2;
    }

    .service-description {
        -webkit-line-clamp: 1;
    }

    .scroll-move .mobile-search-icon i {
        color: #000;
    }

    .menu-open .dld-logo-default {
        display: inline-block;
        transition: all 300ms ease-in-out;
    }

    .menu-open .dld-logo-white {
        display: none;
    }
}

@media (resolution: 1.25dppx) {
    .slide-content .slide-sub {
        font-size: 16px;
        line-height: normal;
    }
}
/*end Responsive*/

.most-used-services a:hover, .most-used-services a:active, .most-used-services a:visited, .most-used-services a:hover {
    text-decoration: none;
}

.dld-footer a:hover, .dld-footer a:active, .dld-footer a:visited, .dld-footer a:hover {
    text-decoration: none;
}

.nav-tabs a:hover, .nav-tabs a:active, .nav-tabs a:visited, .nav-tabs a:hover {
    text-decoration: none;
}

.navbar-nav a:hover, .navbar-nav a:active, .navbar-nav a:visited, .navbar-nav a:hover {
    text-decoration: none;
}

#DeltaPlaceHolderMain {
    top: calc(var(--head-section-min-height) * -1);
    position: relative;
}
/*.scroll-move .dld-head-section {
    position: fixed;
}*/
/*Riyaz*/
form {
    margin-block-end: -25px;
}

footer {
    padding-bottom: 0px;
    margin-top: calc((var(--head-section-min-height) * -1) + 25px);
}

.navbar button {
    /* background-color: transparent;*/
    border-color: transparent;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.fancybox-css-container .fancybox-skin {
    border-radius: 10px;
}

.fancybox-css-container.fancybox-opened .fancybox-skin {
    box-shadow: none;
}

.fancybox-css-container .fancybox-close {
    border: 1px solid #007934;
    width: 30px;
    height: 30px;
}

    .fancybox-css-container .fancybox-close:before {
        color: #007934;
        font-size: 16px;
        line-height: 29px;
    }

.fancybox-accessibility-container .fancybox-content {
    height: auto;
    height: fit-content;
    min-height: 100px;
    max-height: 90vh;
    border-radius: 10px;
    padding: 0;
    margin: auto;
    width: 80vw;
}

.fancybox-happiness-container .fancybox-content {
    height: 70%;
    min-height: 100px;
    max-height: 90vh;
    border-radius: 10px;
    padding: 0;
    margin: auto;
    width: 80vw;
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.5;
}

.menu-open .dld-sub-header__actions .search .search__input:focus {
    width: 100%;
}


/*Accessibility popup starts*/

.dda-accessibility-section {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 20px 0 rgba(183, 183, 183, 0.3);
    display: flex;
    overflow: auto;
}

.dda-accessibility-section__fieldset {
    border: 0;
}

.dda-accessibility-section__radio {
    width: 20px;
    height: 20px;
    position: relative;
    appearance: none;
}

[dir="rtl"] .dda-accessibility-section__radio {
    margin-right: unset;
    margin-left: 10px;
}

.dda-accessibility-section__spacer {
    margin-left: 20px;
}

[dir="rtl"] .dda-accessibility-section__spacer {
    margin-right: 20px;
    margin-left: unset;
}

.dda-accessibility-section__radio::after, .dda-accessibility-section__radio::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 21px;
    height: 21px;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    border: 2px solid var(--theme-dof);
}

.dda-accessibility-section__radio::before {
    width: 13px;
    height: 13px;
    left: 4px;
    top: 4px;
    border-color: transparent !important;
}

.dda-accessibility-section__radio:checked::before {
    border-color: var(--theme-dof);
    background-color: var(--theme-dof);
}

.dda-accessibility-section__radio:checked::after {
    border-color: var(--theme-dof);
}

.dda-accessibility-section__center-section {
    padding-left: 20px;
    padding-right: 20px;
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.dda-accessibility-section__screen-reader-btn {
    width: 100%;
    max-width: 153px;
    height: auto;
}

.dda-accessibility-section p {
    max-width: 100%;
}

.dda-accessibility-section__text-size-btn {
    width: 48px;
    height: 48px;
    padding: 13px 17px;
    background-color: #e8f6fc;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.dda-accessibility-section__text-size-btn--big {
    font-size: 24px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

.dda-accessibility-section__text-size-btn--active {
    border: 3px solid var(--theme-dof);
}

@media screen and (max-width: 768px) {
    .dda-accessibility-section {
        flex-direction: column;
        padding: 32px;
        border-radius: 0;
        height: 100%;
    }

    .dda-accessibility-section__center-section {
        margin: 12px 0;
        padding: 12px 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;
    }
}

.dda-accessibility-section-wrapper {
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

@media screen and (max-width: 895px) {
    .fancybox-happiness-container .fancybox-content {
        width: 93vw;
    }
}

@media screen and (max-width: 768px) {
    .dda-accessibility-section-wrapper {
    }

    [dir="rtl"] .dda-accessibility-section-wrapper {
    }
}

/*Accessibility popup ends*/

.widge-04 img {
    margin-top: -5px;
}

.input-group .btn {
    z-index: 1;
}

/*Inner Page Styles starts*/

.inner-page .dld-head-section {
    min-height: 180px;
}

.inner-page .internal-heading-block .slicer-block-h {
    display: none;
}

.inner-page .internal-heading-block .image-block-h {
    width: 100%;
    height: 17rem;
    right: 0;
    background-size: cover;
}

.inner-page .internal-heading-block .text-block-h {
    width: 100%;
    left: 0px;
}

    .inner-page .internal-heading-block .text-block-h .h1, .internal-heading-block .text-block-h h1 {
        bottom: 0;
        left: auto;
        top: 180px;
        color: #ffffff;
        z-index: 1;
        opacity: 1;
        background: black;
        height: 3rem;
        padding: 0 10px;
        width: auto;
    }



.inner-page .internal-heading-block {
    height: 0;
}

.inner-page #DeltaPlaceHolderMain {
    top: 50px;
    background: #ededed;
}

.inner-page .after-main-menu {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 768px) {
    .inner-page .breadcrumb-menu {
        margin-bottom: 0;
    }
}

.inner-page footer {
    margin-top: 60px;
}

/*Inner Page Styles ends*/

.smalla {
    font-size: 12px;
}

    .smalla span {
        font-size: 12px;
        margin: auto;
        /* margin-top: 7px; */
    }

.mediuma {
    font-size: 14px;
}

    .mediuma span {
        font-size: 16px;
        margin: auto;
        /* margin-top: 7px; */
    }

.biga {
    font-size: 16px;
}

    .biga span {
        font-size: 18px;
        margin: auto;
        margin-top: 5px;
    }


p.text-h6.secondary--text {
    text-align: left;
}

.ae p.text-h6.secondary--text {
    text-align: right;
}

.inverted-color .fancybox-content {
    background: #000;
    border: solid;
}

.inverted-color button, .inverted-color span {
    background: #000;
}
/*to support zooming and landscape view of mobile devices*/
@media screen and (max-height:576px) {

    .dld-main-header.header-position {
        top: calc(var(--main-header-height) * -1);
    }

    .dld-sub-header.header-position {
        top: calc(var(--sub-header-height) * -1);
    }

    .dld-banner-wrapper {
        height: 48rem;
        /*top: -160px;*/
    }

    .dld-home-banner .swiper-slide {
        align-items: flex-start;
        /*padding: 15rem 0 260px 0;
        padding-top: calc(15rem + 20vh)*/
        padding: calc( var(--head-section-min-height) + 60px) 0 0 0;
    }

    .most-used-services .service-box {
        margin-right: 0.5rem;
    }



    .menu-open .mobile-search-icon i {
        color: #000;
    }

    .menu-open .menu-container .navbar {
        overflow-y: scroll;
        height: 100vh;
        background: #fff;
    }


    .menu-open .menu-container .navbar-collapse.collapse {
        height: 100vh;
        position: relative;
        padding-bottom: 10px;
        padding-top: 60px;
        width: fit-content;
        max-width: 50vw;
    }



    .menu-open .dld-logo-for-mobile.dg {
        padding: 0 1rem .5rem;
        position: relative;
        margin: auto;
    }
}

@media screen and (max-width:576px) and (min-height:576px) and (orientation: portrait) {
    .h-banner-control {
        bottom: auto;
        top: calc(var(--head-section-min-height) + 230px);
    }

    .dld-service-card-inner {
        bottom: 5rem;
    }

    .dld-banner-wrapper {
        height: calc(100vh + 6.5rem);
        /*top: -160px;*/
        position: relative;
        overflow: hidden;
    }

    .dld-home-banner .swiper-slide {
        display: flex;
        align-items: flex-start;
        padding: var(--head-section-min-height) 0 0 0;
    }
}


.navbar button {
    padding: 0px;
    /*background: transparent;*//*Fixing Hover issue*/
}

.dld-sub-header-login {
    width: auto;
}

.scroll-move .dld-sub-header__actions .search .search__input, .scroll-move .dld-side-nav .search .search__input, .scroll-move .dld-sub-header__btn, .scroll-move .dropdown-user .dld-sub-header__btn, .scroll-move .dropdown-noti .dld-sub-header__btn {
    background-color: rgba(0, 0, 0, 0.04);
}

.ae .dld-sub-header__actions .search .icon-search {
    left: auto;
    right: 24px;
}

.ae .dld-sub-header__btn {
    margin-left: auto;
    margin-right: 16px;
}

.ae .dld-sub-header__actions .search .search__input, .dld-side-nav .search .search__input {
    margin-left: auto;
    margin-right: 16px;
    padding-left: 0;
    padding-right: 24px;
}

.font-small .ms-rteThemeFontFace-1, .font-small .sidebar ul li a, .font-small .sidebar > .inner-h ul li a, .font-small footer ul a, .font-small ul li {
    font-size: 12px;
}

.font-large .ms-rteThemeFontFace-1, .font-large .sidebar ul li a, .font-large .sidebar > .inner-h ul li a, .font-large footer ul a, .font-large ul li {
    font-size: 16px;
}

.wf-family-o365 {
    font-family: 'ShellIcons' !important;
}

.hidden {
    display: none !important;
}

@media screen and (max-width:991px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

@media screen and (max-width:667px) and (min-height:500px) {


    #swiperPlayButton {
        position: absolute;
        top: calc(var(--head-section-min-height) * -1 + 25px);
        left: 65vw;
        right: auto;
        bottom: auto;
    }

    .ae #swiperPlayButton {
        position: absolute;
        top: calc(var(--head-section-min-height) * -1 + 25px);
        left: -19vw;
        right: auto;
        bottom: auto;
    }

    .h-banner-control {
        align-items: center;
        bottom: auto;
        top: calc(var(--head-section-min-height) + 240px)
    }
}

@media screen and (max-width: 576px) and (min-height: 576px) and (orientation: portrait) {
    .dld-home-banner .swiper-slide {
        display: flex;
        align-items: flex-start;
        padding: calc(var(--head-section-min-height) + 40px) 0 0 0;
    }
}

.ae .rs_addtools .rsbtn_play, .ae .rsbtn .rsbtn_play {
    float: right;
}

.fancybox-content {
    text-align: start;
}


/*Panel Style Starts*/
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
    padding: 10px;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-default > .panel-heading {
    background-image: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
    background-image: -o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
    background-image: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
    background-repeat: repeat-x;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-default {
    border-color: #ddd;
}

.panel {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.panel-group .panel {
    margin-bottom: 5px;
    border-radius: 4px;
}

.panel-group {
    margin-bottom: 20px;
}

.panel-default > .panel-heading {
    background-image: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
    background-image: -o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
    background-image: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
    background-repeat: repeat-x;
}

.panel-body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    font-family: 'DubaiW23-Regular', sans-serif !important;
    border-spacing: 0px;
    box-sizing: border-box;
    padding: 15px;
    border-top: 1px solid #ddd;
    border-top-color: #ddd;
}

/*Panel Style ends*/

.ProjectPhases li {
    padding-top: 10px;
    margin-top: 0px;
}

    .ProjectPhases li:last-child::before {
        height: 32px;
    }

    .ProjectPhases li.active .card {
        margin: 0;
    }



.selectList-wrapper:after {
    content: "\f0d7";
    font-family: 'FontAwesome' !important;
    font-size: 1em;
}



@media screen and (min-height: 600px) {
    .dld-banner-wrapper {
        height: 100vh;
        top: calc(var(--head-section-min-height) * -1);
    }


    .dld-service-card-inner {
        bottom: 68px;
    }

    .h-banner-control {
        bottom: 290px;
        align-items: flex-end;
        top: auto;
        height: auto;
    }



    .dld-home-banner .swiper-slide {
        display: flex;
        align-items: flex-end;
        padding: 175px 0 310px 0;
    }

    .slide-content {
        padding: 0 5px;
    }
}



@media screen and (max-height: 576px) {
    .h-banner-control {
        bottom: 325px;
        align-items: flex-end;
        top: auto;
        height: auto;
    }
}

input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover, button:hover {
    /*border-color: #92c0e0; coming from SP Corev15*/
    background-color: transparent;
}

input[type=button]:active, input[type=reset]:active, input[type=submit]:active, button:active {
    /*border-color: #2a8dd4; coming from SP Corev15*/
    background-color: transparent;
}

@media (max-width: 1199px) {
    .ae .menu-container .navbar-collapse.collapsing, .ae .menu-container .navbar-collapse.collapse {
        right: 0;
        left: auto;
        transform: translate(100%, 0);
    }

        .ae .menu-container .navbar-collapse.collapse.show {
            transform: translate(0px, 0);
        }
}



@media screen and (max-height:576px) and (orientation:landscape) {
    .menu-open div#main-navigation-wrapper {
        /* margin-top: 100px; */
        width: 50%;
        /* margin: 115px auto 0 0; */
        left: 0;
        padding: 0px;
        position: fixed;
        top: 0;
        right: 0;
    }

    ul.nav.navbar-nav {
        padding: 0;
    }
    /*  .menu-open div#main-navigation-wrapper {
        margin-top: 100px;
        width: 40%;
        margin: 172px auto 0 0;
        left: 0;
        padding: 0px;
    }
     */

    .menu-open .menu-container .navbar-collapse.collapse {
        height: 100vh;
        position: relative;
        padding-bottom: 10px;
        padding-top: 60px;
        width: fit-content;
        max-width: 50vw;
    }



    /* .menu-open.ae div#main-navigation-wrapper {
        margin-top: 100px;
        margin: 160px 0 0 auto;
        left: auto;
        right: 0;
        padding: 0px;
    }*/

    .menu-open .navbar-header-wrapper {
        display: none;
    }

    .menu-open .menu-container .navbar {
        overflow-y: auto;
        height: 100vh;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .menu-open .navbar-header-wrapper {
        background-color: #fff;
        width: 100vw;
    }
}

.dld-main-header__gov-logo {
    max-width: unset;
}

.inner-page .internal-heading-block .text-block-h {
    right: 0;
}

body.fancybox-active {
    height: 0;
}

.fancybox-is-open .fancybox-bg {
    opacity: .4;
}

.fancybox-dxb04-container .bottom {
    margin-left: 10px;
    position: absolute;
    bottom: 0;
    display: flex;
    padding: 10px;
    text-decoration: none;
    color: black;
    border: 1px solid #ccc;
    background: white;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

    .fancybox-dxb04-container .bottom:hover {
        cursor: pointer;
    }

.fancybox-dxb04-container .logo {
    width: 40px;
    height: 40px;
}

.fancybox-slide {
    padding: 0;
}

.fancybox-dxb04-container .fancybox-iframe {
    border-radius: 20px;
}


.fancybox-dxb04-container .fancybox-close-small {
    top: -17px;
    right: -17px;
    color: #00aca0;
    border: 2px solid;
    border-radius: 50%;
    background: white;
    opacity: 1;
}

    .fancybox-dxb04-container .fancybox-close-small:hover {
        color: #00aca0;
    }


/* Happiness Fancy Box styles starts */
.fancybox-happiness-container .fancybox-content {
    height: 500px;
    max-height: 500px;
    width: 70vw;
    min-width: 500px;
    overflow: auto;
    border-radius: 20px;
    border: 0;
}

.fancybox-happiness-container .fancybox-iframe {
    border-radius: 20px;
    border: 0;
    width: 100%;
    overflow: auto;
    overflow-y: auto;
}

@media screen and (min-width: 1200px) {
    .fancybox-happiness-container .fancybox-content {
        max-height: 500px;
        height: 80vh;
        max-width: 60vw;
    }
}


@media screen and (min-width: 1536px) {
    .fancybox-happiness-container .fancybox-content {
        max-height: 70vh;
        max-width: 60vw;
        overflow: visible;
    }
}



@media screen and (min-width: 1600px) {
    .fancybox-happiness-container .fancybox-content {
        max-height: 60vh;
        max-width: 55vw;
        overflow: visible;
    }
}


@media screen and (min-width: 1600px) and (max-height:768px) and (orientation:landscape) {
    .fancybox-happiness-container .fancybox-content {
        height: 450px;
        max-height: 450px;
        max-width: 33vw;
        overflow-y: auto;
    }
}

@media screen and (max-width: 1200px) {
    .fancybox-happiness-container .fancybox-content {
    }
}

@media screen and (max-width: 992px) {
    .fancybox-happiness-container .fancybox-content {
    }
}

@media screen and (max-width: 992px) and (max-height:768px) and (orientation:landscape) {
    .fancybox-happiness-container .fancybox-content {
        height: 450px;
        max-height: 450px;
    }
}


@media screen and (max-width: 768px) {
    .fancybox-happiness-container .fancybox-content {
    }
}

@media screen and (max-width: 768px) and (max-height: 576px) and (orientation:landscape) {
    .fancybox-happiness-container .fancybox-content {
        height: 118vh;
        max-height: 190vh;
        max-width: 87vw;
        overflow-y: auto;
    }
}

@media screen and (max-width: 576px) {
    .fancybox-happiness-container .fancybox-content {
        max-width: 450px;
    }
}

@media screen and (max-width: 480px) {
    .fancybox-happiness-container .fancybox-content {
        height: 400px;
        overflow-y: auto;
        min-width: 90vw;
    }
}
/* Happiness Fancy Box styles ends */



/* DXB04 Fancy Box styles starts */
.fancybox-dxb04-container .fancybox-content {
    height: 100vh;
    width: 100vw;
    overflow: visible;
    border-radius: 20px;
}

@media screen and (min-width: 1200px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 75vh;
        max-width: 50vw;
        overflow: visible;
    }
}


@media screen and (min-width: 1536px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 70vh;
        max-width: 60vw;
        overflow: visible;
    }
}



@media screen and (min-width: 1600px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 80vh;
        max-width: 65vw;
        overflow: visible;
    }
}

@media screen and (max-width: 1200px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 75vh;
        max-width: 45vw;
    }
}

@media screen and (max-width: 992px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 90vh;
        max-width: 54vw;
    }
}

@media screen and (max-width: 768px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 100vh;
        max-width: 55vw;
    }
}

@media screen and (max-width: 768px) and (max-height: 576px) and (orientation:landscape) {
    .fancybox-dxb04-container .fancybox-content {
        height: 450px;
        max-height: 88vh;
        max-width: 90vw;
        overflow-y: visible;
    }
}

@media screen and (max-width: 576px) {
    .fancybox-dxb04-container .fancybox-content {
        max-height: 450px;
        max-width: 90vw;
    }
}

@media screen and (max-width: 480px) {
    .fancybox-dxb04-container .fancybox-content {
        height: 450px;
        max-height: 80vh;
        max-width: 90vw;
        overflow-y: visible;
    }
}
/* DXB04 Fancy Box styles ends */



/* Accessibility Fancy Box styles starts */
.dda-accessibility-section {
    padding: 50px 50px;
    display: flex;
    justify-content: space-between;
    box-shadow: none;
    display: flex;
    overflow: auto;
}

.fancybox-accessibility-container .fancybox-content {
    height: 100vh;
    width: 100vw;
    overflow: auto;
    border-radius: 20px;
    border: 0;
}

.fancybox-accessibility-container .fancybox-iframe {
    border-radius: 20px;
    border: 0;
    width: 100%;
    overflow: visible;
    overflow-y: visible;
}

@media screen and (min-width: 1200px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 300px;
        max-width: 800px;
        overflow: visible;
    }
}


@media screen and (min-width: 1600px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 300px;
        max-width: 800px;
        overflow: visible;
        min-height: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 300px;
        max-width: 80vw;
    }
}

@media screen and (max-width: 992px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 300px;
        max-width: 780px;
    }
}

@media screen and (max-width: 768px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 600px;
        max-width: 60vw;
    }
}

@media screen and (max-width: 992px) and (max-height: 576px) and (orientation:landscape) {

    .fancybox-accessibility-container .fancybox-content {
        height: 300px;
        max-height: 700px;
        max-width: 99vw;
        overflow-y: auto;
    }

    .rs_addtools.mega_toggle .rsbtn_left, .rsbtn.mega_toggle .rsbtn_left {
        margin-left: 2.3rem;
    }
}

@media screen and (max-width: 576px) {
    .fancybox-accessibility-container .fancybox-content {
        max-height: 540px;
        max-width: 90vw;
    }
}

@media screen and (max-width: 480px) {
    .fancybox-accessibility-container .fancybox-content {
        height: 85vh;
        max-height: 600px;
        max-width: 99vw;
        overflow-y: auto;
    }
}
/* Accessibility Fancy Box styles ends */





.sticky-footer-left a:first-child {
    margin-left: 0 !important;
}

.sticky-footer-right a:first-child {
    margin-right: 0 !important;
}

.ae .sticky-footer-left a {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

.ae .sticky-footer-right a:first-child {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}



.most-used-services a:last-child {
    margin-right: 0 !important;
}

.ae .most-used-services a:last-child {
    margin-left: 0 !important;
}

@media screen and (max-height: 576px) {

    .most-used-services .service-box {
        margin-right: 0rem;
    }
}

@media (max-width: 768px) {
    #news-content > .mob-version-wrap-et > .tab-content {
        display: block;
    }
}

.ae .copir *, .copir * {
    font-size: 1rem;
    height: 3rem;
    /* min-height: 402px; */
}

footer .copir {
    padding-top: 0.75rem !important;
    padding-bottom: 1.50rem !important;
}

footer .subscibe p {
    font-size: 1rem;
}

.ms-rteThemeFontFace-1, .sidebar ul li a, .sidebar > .inner-h ul li a, footer ul a, ul li {
    font-size: 1rem;
}

footer .downl {
    font-size: 1.285rem;
    margin-bottom: 10px;
}

.sidebar.profile-h .inner-h .heading-h .user-name-h, footer .intagram span, footer h2 {
    font-size: 1.285rem;
}

.content-area h2, .home-page h2 {
    font-size: 1.785rem;
}

.descr-h, .home-page #news-content .listing-content-wrap .name-person a, .vot-poll .radio input[type=radio] + label, div#our-services-content li, footer .subscibe .email, main p {
    font-size: 1rem;
}

.btn-more {
    font-size: 1rem;
}

.name-person, .name-person a {
    font-size: 1.428rem;
}

    .name-person, .name-person a, .profesion-person, .profesion-person a {
        font-size: 1.142rem;
        letter-spacing: 1px;
        margin-bottom: 5px;
        text-decoration: none;
    }

.slide-content .slide-sub {
    font-size: 1.714rem;
    line-height: 32px;
}

.dld-icon-md {
    font-size: 1.714rem;
}

span.rs-player-loadindicator {
    left: 0 !important;
}

.rsbtn.rsexpanded .rsbtn_play {
    border-right: 1px solid #677077 !important;
}

.rs_addtools .rsbtn_play .rsbtn_left, .rsbtn .rsbtn_play .rsbtn_left {
    margin-left: 1rem;
    margin-right: 0;
}


@media screen and (max-width: 768px) {
    .dda-accessibility-section__center-section {
        min-height: 35%;
    }
}

@media screen and (min-width: 1200px) {
    .fancybox-accessibility-container .fancybox-content {
        max-width: 850px;
    }
}


@media screen and (min-height: 600px) and (min-width:1096px) {
    .dld-home-banner .swiper-slide {
        padding: 175px 0 290px 0;
    }
}


.dubai-logo-red,
.dld-logo-default {
    display: none;
}

.dubai-logo-white,
.dld-logo-white {
    display: inline-block;
}
/*
.scroll-move .dld-head-section {
    position: fixed;
    min-height: 114px;
}

.scroll-move .dld-sub-header {
    top: 104px;
    position: relative;
}

.scroll-move .sub-nav-position {
    top: -64px;
}

.dld-sub-header {
    top: 0;
}*/
.owl-carousel .owl-dots .owl-dot span {
    width: 23px;
    display: inline-block;
    height: 23px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    background: url('/Style Library/img/dotmin.png') 50% 50% no-repeat;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-image: url('/Style%20Library/img/wcir.png');
}


.owl-dots, .play-stops {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
}



.play-stops {
    text-align: right;
    right: 15px;
    bottom: 17px;
}

#quick-links-content .ql .owl-dots {
    bottom: 0px;
}
#quick-links-content .ql .play-stops {
    bottom: 7px;
}
.dda-accessibility-section-wrapper.hide.fancybox-content {
    display: block !important;
}
.dof-hoverable:hover, .dof-hoverable:focus, .dof-hoverable:active, .dof-hoverable:focus-visible, :not(.btn-check) + .dof-hoverable.btn:active {
    background-color: var(--theme-dof) !important;
    color: #fff !important;
    border-color: var(--theme-dof) !important;
}
