@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap");

:root {
    --body-font: "Roboto", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --theme-color: #227cb7;
    --theme-color2: #0a5d93;
    --color-white: #ffffff;
    --color-dark: #010f34;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
    font-family: "Roboto", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

p {
    margin: 0px;
    font-family: "Roboto", sans-serif;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

.header-top {
    padding: 3px 0;
    background: #ecf1f5;
    position: relative;
    z-index: 999;
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.header-top-left,
.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-top-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.header-top-list a {
    color: var(--color-dark);
    font-size: 15px;
}

.header-top-list a i {
    color: var(--color-dark);
    margin-right: 5px;
}

.header-top-social span {
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 600;
    margin-right: 5px;
}

.header-top-social a {
    margin: 0px 4px;
    margin-top: 0px;
    height: 27px;
    width: 27px;
    line-height: 27px;
    text-align: center;
    border: 1px solid white;
    background-color: var(--theme-color2);
    border-radius: 100%;
    color: var(--color-white);
    font-weight: 500;
    transition: 0.4s ease-in-out;
}

.header-top-list .social-title {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    color: var(--color-dark);
    margin: 0 1px 0 0;
}

.navbar {
    background: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #f3f3fa40;
    z-index: 9999;
}

.navbar.fixed-top {
    position: fixed;
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar-brand {
    margin-right: 0;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 27px;
        padding: 20px 0 20px 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--color-white);
        text-transform: capitalize;
    }

    .navbar.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--color-white);
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 0px 0px;
        margin-top: 0;
        left: -15px;
        border-radius: 4px;
        border: none;
        background: var(--theme-color);
        width: 290px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2);
    }

    .sub_menu_scroll {
        height: 390px !important;
        overflow-y: auto;
    }

    .navbar_number_div_flex {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .icon_div_navbar > span {
        color: var(--color-white);
        background-color: var(--theme-color);
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 100px;
        font-size: 24px;
    }

    .navbar_number_div > p {
        margin-bottom: -5px !important;
        font-weight: 600;
        font-size: 14px;
        color: var(--color-white);
    }

    .navbar_number_div > a {
        color: var(--color-white);
        font-size: 15px;
        font-weight: 700;
    }

    .sub_menu_scroll::-webkit-scrollbar {
        width: 7px;
    }

    .sub_menu_scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 5px;
    }

    .sub_menu_scroll::-webkit-scrollbar-thumb {
        background-color: var(--theme-color);
        border-radius: 5px;
        border: 2px solid #f1f1f1;
    }

    .sub_menu_scroll::-webkit-scrollbar-thumb:hover {
        background-color: #cc5200;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 14px;
        padding: 6px 0px 6px 8px;
        font-weight: 600;
        color: var(--color-white);
        position: relative;
        border-bottom: 1px dashed #ccc;
        overflow: hidden;
        border-radius: 0px;
        text-transform: capitalize;
        transition: var(--transition2);
        z-index: 1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--theme-color2);
        color: var(--color-white);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-left: 0px;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-white);
        border: none;
        padding: 0;
        background: transparent;
        transition: var(--transition);
    }

    .nav-right-link:hover {
        color: var(--theme-color);
    }

    .navbar.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.fixed-top .nav-right-link:hover {
        color: var(--theme-color);
    }

    .nav-right .call-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 7px;
    }

    .nav-right .call-wrap .icon {
        width: 45px;
        height: 45px;
        line-height: 46px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white);
        text-align: center;
        font-size: 18px;
        margin-top: 5px;
    }

    .nav-right .call-wrap .content span {
        color: var(--theme-color);
        font-weight: 500;
    }

    .nav-right .call-wrap .content h6 a {
        color: var(--color-dark);
        font-weight: 800;
    }

    .nav-right .sidebar-btn span {
        display: block;
        width: 24px;
        border-bottom: 3px solid var(--color-white);
        border-radius: 50px;
        margin-top: 6px;
        margin-left: auto;
        transition: var(--transition);
    }

    .nav-right .sidebar-btn span:first-child {
        width: 10px;
        margin-top: 0;
    }

    .nav-right .sidebar-btn span:nth-child(3) {
        width: 15px;
    }

    /* navbar light */
    .navbar.light .nav-item .nav-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-item .nav-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-item .nav-link.active,
    .navbar.light .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar.light .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .nav-right-link:hover {
        color: var(--theme-color);
    }

    .navbar.light .nav-right .sidebar-btn span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .nav-right .sidebar-btn span {
        border-color: var(--color-dark);
    }
}

@media all and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .nav-right {
        margin-left: 15px;
    }

    .nav-right .sidebar-btn,
    .nav-right .call-wrap {
        display: none;
    }
}

/* navbar mobile menu */
.navbar .mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-brand img {
        width: 130px;
    }

    .navbar .offcanvas {
        width: 380px;
    }

    .navbar .offcanvas-header .btn-close {
        background: var(--theme-color);
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50px;
        color: var(--color-white);
        font-size: 18px;
        box-shadow: none;
        opacity: 1;
    }

    .navbar .offcanvas-brand {
        width: 150px;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        margin-right: 0px;
        font-size: 14px;
        transition: var(--transition);
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color);
    }

    .navbar .nav-item .dropdown-menu {
        border-radius: 4px;
    }

    .navbar .nav-item .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler span {
        display: block;
        width: 22px;
        border-bottom: 3px solid var(--color-dark);
        border-radius: 50px;
        margin-top: 5px;
    }

    .navbar-toggler span:first-child {
        margin-top: 0;
    }

    .navbar-toggler span:nth-child(2) {
        width: 15px;
    }

    .navbar .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .navbar .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .navbar .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .nav-right {
        display: none;
    }

    /* navbar light */
    .navbar.light .navbar-toggler span {
        border-color: var(--color-white);
    }

    .navbar.light.fixed-top .navbar-toggler span {
        border-color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link {
        color: var(--color-white);
    }

    .navbar.light.fixed-top .mobile-menu-right .nav-right-link {
        color: var(--color-dark);
    }

    .navbar.light .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }
}

@media all and (min-width: 992px) {
    .nav-item.mega-menu {
        position: static;
    }

    .navbar .nav-item.mega-menu .dropdown-menu {
        width: 98.2%;
        left: 12px;
    }

    .navbar .mega-menu .mega-content {
        padding: 12px;
    }

    .navbar .mega-menu .mega-menu-title {
        font-size: 17px;
        margin-bottom: 15px;
        color: var(--color-dark);
    }

    .navbar .mega-menu-img img {
        border-radius: 15px;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item {
        padding-left: 0;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item::before {
        left: 0;
    }

    .navbar .nav-item.mega-menu .dropdown-menu .dropdown-item:hover {
        padding-left: 15px;
    }

    .navbar .nav-item.mega-menu.small {
        position: relative;
    }

    .navbar .mega-menu.small .dropdown-menu {
        width: 340px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 8px;
    font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: transparent;
    color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu a:focus {
    background: transparent;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--color-dark);
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}

@media all and (max-width: 991px) {
    .navbar .mega-menu-img {
        display: none;
    }

    .navbar .mega-menu .mega-content h5 {
        margin: 15px 0;
    }
}

.navbar-brand .logo {
    height: 60px;
}

.banner_sec.desktop-banner .carousel-control-next,
.carousel-control-prev {
    border: none;
    background-color: unset;
    z-index: 99;
}

.enqaury-button {
    font-size: 15px;
    color: var(--color-white);
    padding: 6px 20px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.enqaury-button::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.enqaury-button:hover {
    color: var(--color-white);
}

.enqaury-button::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.enqaury-button i {
    margin-left: 8px;
    transform: rotate(-40deg);
    transition: var(--transition2);
}

.sidebar-popup {
    padding: 20px;
}

.sidebar-popup .btn-close {
    background: var(--theme-color);
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    opacity: 1;
}

.sidebar-popup .btn-close:hover {
    background: var(--theme-color);
}

.sidebar-popup .btn-close i {
    transition: var(--transition);
}

.sidebar-popup .btn-close:hover i {
    transform: rotate(180deg);
}

.sidebar-popup-logo img {
    width: 120px;
}

.sidebaar-popup-box {
    z-index: 999999;
}

.sidebaar-popup-box .offcanvas-header {
    padding: 0px 20px;
}

.sidebar-popup-about {
    margin-top: 0px;
}

.sidebar-popup-about h4 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 22px;
}

.sidebar-popup-about p {
    font-size: 14px;
    font-weight: 500;
}

.sidebar-popup-contact {
    margin-top: 20px;
}

.sidebar-popup-contact h4 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.sidebar-popup-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-popup-contact li .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--color-white);
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
    flex-shrink: 0;
}

.sidebar-popup-contact li .content a {
    font-size: 14px;
    font-weight: 500;
}

.sidebar_contactus_information_div_main {
    display: none;
}

.sidebar_contactus_information_div_main {
    padding: 0px 0px;
}

.sidebar_contactus_information_div_main > h4 {
    color: var(--color-dark);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar_media_main_div > .d-flex > .flex-shrink-0 > i {
    background-color: var(--theme-color);
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
}

.sidebar_contactus_content_div > a {
    display: block;
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 27px;
}

.sidebar_media_main_div {
    margin-bottom: 18px;
}

.sidebar_contactus_content_div > p {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 0px !important;
}

.side_bar_main_div_flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 99;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div > a {
    background-color: #dc3545;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes moveUpDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.call_icon_div > a > img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}

.whatsapp_icon_div > a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;
}

@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}

.whatsapp_icon_div > a > img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.mobile_whatsapp {
    display: none;
}

.social_icon_div {
    margin-bottom: 20px !important;
}

.social_icon_div > p {
    margin-bottom: 7px !important;
    color: #333;
    font-size: 15px;
    text-transform: capitalize;
}

.social_icon_div > a {
    background-color: var(--theme-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: 0px 1px;
    font-size: 14px;
    border-radius: 2px;
    color: #fff;
}

.sidebar-popup-contact li a:hover {
    color: var(--theme-color);
}

.sidebar-popup-social {
    margin-top: 10px;
}

.sidebar-popup-social h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-popup-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    margin-right: 8px;
    background: var(--theme-color);
    color: var(--color-white);
    box-shadow: var(--box-shadow);
}

.sidebar-popup-social a:hover {
    background: var(--color-dark);
}

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: rotate(-40deg);
    z-index: 1;
}

#scroll-top:hover {
    transform: rotate(0);
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
}

.about-sec-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.about-img img {
    border-radius: 200px;
}

.about-img .img-2 {
    margin-top: 90px;
}

.about-experience {
    background: var(--theme-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    line-height: 1.2;
    border-radius: 100px;
    text-align: center;
    border: 10px solid var(--color-white);
}

.about-experience h5 {
    color: var(--color-white);
    font-size: 40px;
    margin-top: 15px;
}

.about-experience p {
    color: var(--color-white);
    font-weight: 600;
}

.about-left-box {
    position: relative;
    margin-right: 40px;
}

.about-left-box::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 80%;
    border-radius: 200px;
    border: 10px double var(--theme-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-right {
    position: relative;
    display: block;
}

.site-heading {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    line-height: 20px;
}

.site-title {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    color: var(--color-dark);
    margin-bottom: 0;
}

.site-title span {
    color: var(--theme-color);
}

.about-text {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: justify;
}

.enqaury-button.discover-button {
    margin-top: 10px;
}

.site-title-tagline {
    display: inline-block;
    color: var(--color-white);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 2px 15px 2px 15px;
    margin-bottom: 5px;
}

.how-it-work-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.how-it-work-sec .col-lg-3.col-sm-12.col-md-12 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.how-it-work-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.how-it-work-highlights {
    display: flex;
    align-items: center;
}

.work-step-item-line {
    background-color: var(--theme-color2);
    height: 2px;
    flex-grow: 1;
}

.work-step-item-gap {
    flex-grow: 0;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
}

.use-step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    line-height: 1em;
    transition: 0.3s;
    width: 131px;
    height: 80px;
    background-color: var(--theme-color);
    color: #ffffff;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

img.arrow-deign {
    position: absolute;
    right: -98px;
    width: 100px;
    z-index: 9;
}

.work-graphic-text {
    font-family: "Arimo", Sans-serif;
    font-size: 30px;
    font-weight: 400;
}

.work-step-label {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff4d4d;
    color: #ffffff;
    padding: 5px 5px 5px 5px;
    border-radius: 10px 10px 10px 10px;
    min-width: 0px;
    min-height: 0px;
}

.work-step-item-content {
    padding: 10px 10px 10px 10px;
    text-align: center;
}

.how-it-works-same:first-child .work-step-item-line:first-child {
    opacity: 0;
}

.how-it-works-same1:last-child .work-step-item-line:last-child {
    opacity: 0;
}

.how-it-work-box:hover .use-step-icon {
    background-color: var(--theme-color2);
}

.step-item-content-title {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0px;
}

.step-item-content-text {
    color: var(--color-dark);
    margin-top: 0px;
    font-size: 15px;
    font-weight: 500;
}

.how-it-work-sec .site-heading {
    margin-bottom: 30px;
}

.counter-area {
    position: relative;
    background: rgb(10 93 147 / 60%);
    overflow: hidden;
    z-index: 1;
    padding: 40px 0px 40px;
}

.counter-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/counter-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}

.counter-item {
    display: flex;
    gap: 12px;
    position: relative;
    padding: 15px 10px 15px 15px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}

.counter-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    bottom: -2px;
    width: 40%;
    border: 3px solid #fff;
    border-radius: 100px 0 0 100px;
    border-right: none;
    transition: var(--transition);
}

.counter-item:hover::before {
    width: 50%;
}

.counter-item .icon {
    width: 70px;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: var(--color-white);
    flex-shrink: 0;
}

.counter-item .icon img {
    width: 38px;
}

.counter-item .info {
    display: flex;
    gap: 2px;
}

.counter-item .counter {
    display: block;
    line-height: 1;
    color: var(--color-white);
    font-size: 35px;
    font-weight: 900;
}

.counter-item .unit {
    font-size: 35px;
    color: var(--color-white);
    font-weight: 500;
    line-height: 1;
    margin: 3px 0 0 3px;
}

.counter-item .title {
    color: var(--color-white);
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-area {
    background: #1f2432;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-image: url("../images/footer-banner.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer-area::before {
    content: "";
    position: absolute;
    background-color: rgb(0 0 17 / 70%);
    width: 100%;
    top: 0px;
    left: 0;
    z-index: 1;
    height: 100%;
}

.footer-widget {
    position: relative;
    z-index: 999;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 21px;
    z-index: 1;
}

.footer-widget-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--color-white);
    border-radius: 50px;
}

.cpoy-right-sec {
    background-color: var(--theme-color2);
    padding: 6px 0;
}

.copyright .copyright-text {
    color: #f5faff;
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
}

.footer-widget-wrap {
    padding: 40px 0px 10px;
}

.policy-list {
    margin-left: -35px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.footer-list li a i {
    margin-right: 5px;
}

.footer-list li a:hover {
    margin-left: 0px;
    color: var(--theme-color);
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    gap: 10px;
    color: #f5faff;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--theme-color);
    background: var(--color-white);
    border-radius: 50px;
    text-align: center;
}

.footer-contact .content {
    flex: 1;
}

.footer-contact .content h6 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.footer-widget-box p {
    color: var(--color-white);
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
}

.footer-contact .content a {
    color: var(--color-white);
}

section.banner_sec.desktop-banner {
    margin-top: -70px;
}

.banner_sec.desktop-banner {
    position: relative;
}

.banner_sec.desktop-banner::before {
    background-color: rgb(10 93 147 / 60%);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.5;
    z-index: 9;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 120px;
    padding-bottom: 35px;
    z-index: 1;
    margin-top: -71px;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.contact-us-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f5f5;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 30px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-white);
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--theme-color2);
    opacity: 0.8;
    z-index: -1;
}

.all_pg_bn_sections {
    background-color: #eaeaea;
    padding: 5px 0px;
}

.all_pg_bn_ovr_txt a {
    margin: 0px 10px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.all_pg_bn_ovr_txt span {
    color: #000;
}

.all_pg_a {
    color: #000 !important;
    font-size: 14px;
    font-weight: 600;
}

.contact-form-box {
    padding: 20px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 0px;
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.contact-form-box > h1 {
    color: #000;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 7px !important;
}

.contact-form-box .input_div_contact {
    margin-bottom: 10px;
}

.contact-form-box .input_div_contact > label {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.contact-form-box .input_div_contact > input {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-dark);
    border: 1px solid #333 !important;
    height: 40px;
    background-color: var(--color-white);
}

.textarea-box {
    border: 1px solid #333 !important;
    height: 80px;
    width: 100%;
    border-radius: 5px !important;
}

.contact-form-box .input_div_contact_btn > button {
    color: var(--color-white);
    background-color: var(--theme-color);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.contact-content {
    background: var(--color-white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin-bottom: 0px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
    font-size: 20px;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    flex-shrink: 0;
    border-radius: 50px;
    background: var(--theme-color);
}

.contact-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-info-content p {
    font-size: 15px;
    color: #000;
    text-align: left;
}

.contact-info-content p a {
    font-size: 15px;
    color: #000;
}

.contact-info-bottom {
    border-bottom: none;
}

.sitemap-sec-page {
    position: relative;
    width: 100%;
    padding: 30px 0px 10px;
}

.sitemap_main_div_list {
    position: relative;
    margin-bottom: 20px;
}

.bharti_collapse_div > li {
    background-color: var(--theme-color);
    margin-bottom: 0px;
    border: 1px solid #e5e4e2;
    padding: 12px 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bharti_collapse_div > li > a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-right: 0px;
    font-weight: 700;
    font-size: 17px;
}

.bharti_collapse_div > li > span {
    cursor: pointer;
    background-color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
}

.collpase_list_ul_div > ul {
    padding: 0px 10px !important;
    list-style: none !important;
}

.collpase_list_ul_div > ul > li {
    border-bottom: 1px dashed #4a4d51;
    padding: 7px 0px 7px 0px;
}

.collpase_list_ul_div > ul > li > a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.product-multiple-box-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.heading-divider {
    display: inline-block;
    position: relative;
    border-bottom: 4px solid var(--theme-color);
    width: 90px;
    height: 4px;
    border-radius: 50px;
}

.heading-divider:after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    border-radius: 0px;
    background-color: var(--color-white);
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(75px);
    }

    100% {
        transform: translateX(-1px);
    }
}

.product-slide-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.prodcut-name {
    padding: 15px 0px 0px 0px;
}

.prodcut-title {
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 10px;
    font-family: var(--heading-font);
}

.product-slide-img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-slide-box:hover .slide-overflow-content {
    right: 0;
}

.product-slide-box:hover img {
    transform: scale(1.1);
}

.slide-overflow-conten p {
    font-size: 15px;
}

.slide-overflow-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgb(34 124 183 / 90%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    padding: 15px;
    transition: right 0.5s ease;
}

.product-discription {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.overlay_read_icon {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background-color: var(--white-color);
    border-top-left-radius: 30px;
    padding: 15px;
}

.product-read-btn {
    width: 50px;
    height: 50px;
    line-height: 47px;
    border-top-left-radius: 30px;
    border: 3px solid var(--theme-color);
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.product-slide-box-all {
    position: relative;
    padding: 8px;
    border-radius: 10px;
    background: var(--color-white);
    text-align: left;
    transition: all 0.5s ease-in-out;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 1px solid var(--theme-color);
}

.why-choose-us-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f5ff;
}

.choose-item {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    position: relative;
    gap: 20px;
    padding: 19px 10px;
}

.choose-img {
    position: relative;
    padding-left: 45px;
}

.choose-img img {
    width: 94%;
    border-radius: 0 100px 100px 100px;
}

.choose-us--items-bottom {
    border-bottom: none;
}

.choose-item::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border-radius: 0 10px 0 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.choose-img::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 90%;
    height: 92%;
    background: var(--theme-color);
    border-radius: 0 100px 100px 100px;
    transform: rotate(-5deg);
    opacity: 0.2;
    z-index: -1;
}

.choose-item-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    line-height: 58px;
    background: var(--theme-color);
    text-align: center;
    border-radius: 50px;
}

.choose-item-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--theme-color);
    border-radius: 50px;
}

.choose-item-icon img {
    width: 38px;
    filter: brightness(0) invert(1);
}

.choose-item-info h4 {
    font-size: 19px;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.choose-item-info p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.products_details_sections {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.products_details_img_div {
    width: 100%;
    position: relative;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    text-align: center;
    margin: auto;
    margin-bottom: 15px;
}

.products_details_img_div img {
    width: 100%;
    transition: 0.5s ease-in-out;
    display: block;
    filter: brightness(90%);
}

.products_details_ovr_en_btn {
    position: absolute;
    right: 0;
    top: 40%;
    transition: 0.5s ease-in-out;
}

.products_details_ovr_en_btn a {
    writing-mode: vertical-rl;
    background-color: var(--theme-color);
    padding: 13px 5px 13px 5px;
    writing-mode: sideways-lr;
    color: white;
    text-align: center;
    border-radius: 2px;
    transition: 0.5s ease-in-out;
}

.products_details_txt {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
}

.product-title-inner-page {
    font-size: 30px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.products_details_txt p {
    color: #333;
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 8px;
}

.products_details_img_div:hover img {
    transform: scale(1.1, 1.1);
    transition: 0.6s ease-in-out;
}

.products_details_txt {
    padding-left: 10px;
}

.sub-text-box-content {
    position: relative;
    padding-top: 6px;
}

.sub-text-box-content p {
    color: #333;
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    letter-spacing: 0.3px;
    word-spacing: 0.3px;
    margin-bottom: 12px;
}

.sub-title-product-page {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.sub-text-box-content ul li {
    margin-bottom: 5px;
    font-size: 15px;
    list-style-type: disclosure-closed;
    padding-left: 0px;
    letter-spacing: 0.3px;
    word-spacing: 0.3px;
    color: #333;
}

.sub-text-box-content ul {
    padding-left: 20px;
}

.privacy_section {
    position: relative;
    padding: 30px 0px 30px 0px;
}

.privacy_content_main_div > h1 {
    color: #212121;
    text-transform: capitalize;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 4px !important;
}

.privacy_content_main_div > p {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: justify;
    color: #212121;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div p .policy-link {
    font-weight: 700;
    text-decoration: underline;
    color: #0049d0;
}

.privacy_content_main_div > ul {
    padding-left: 18px;
}

.privacy_content_main_div > ul > li {
    font-weight: 400;
    font-size: 15px;
    list-style-type: disc !important;
    color: #212121;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 5px !important;
}

.privacy_content_main_div > h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div > h3 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div > h4 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.link-left-one {
    padding-left: 25px;
}

.all_pg_bn_sections {
    display: none;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content {
    border: 4px solid #364e9b;
    border-radius: 10px;
    box-shadow: none;
    background-color: #ffff;
    outline: none;
}

.modal-enquary-box-modal .modal {
    z-index: 99999999;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header {
    padding: 8px 10px !important;
}

.modal-enquary-box-modal
    .modal-dialog.modal-md
    .modal-content
    .modal-header
    .modal-title {
    font-size: 21px;
    color: #000;
    font-weight: 800;
    text-transform: capitalize;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close {
    box-shadow: none;
    position: absolute;
    right: -19px;
    background: #364e9b;
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-weight: 600;
    color: #fff;
    font-size: 22px;
    border: none;
    top: -19px;
}

.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
    padding: 5px 15px;
}

.enquiry_popup_input_div > label {
    font-size: 14px;
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 2px !important;
}

.modal-enquary-box-modal
    .modal-dialog.modal-md
    .modal-content
    .contact_pg_form_right_side
    input,
textarea {
    border: 1px solid #333 !important;
    outline: none !important;
    background: #fff;
    border-radius: 5px !important;
    height: 38px;
    line-height: 38px;
    margin-bottom: 10px;
}

.custom-textarea {
    height: 130px;
}

.popup-btn {
    color: var(--color-white);
    background-color: #364e9b;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}
.slider_section2 {
    display: none;
}

.state_city_section {
    padding: 20px 0px 40px 0px;
}
.state_title_div {
    text-align: center;
    margin-bottom: 2px;
    margin-top: 0px;
}
.state_title_div > h2 {
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--color-dark);
    margin-bottom: 15px;
}
.state_city_dropdown_main_div > li {
    list-style: none !important;
    background-color: var(--theme-color);
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.state_city_dropdown_main_div > li > a {
    color: var(--color-white);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
}
.state_city_dropdown_main_div > li > span {
    color: var(--color-white);
    background-color: var(--secondry-color);
    color: var(--color-white);
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
}
.city_name_list_main_div {
    max-height: 300px;
    overflow-x: auto;
}
.city_name_list_main_div > ul > li {
    background-color: var(--gray-color3);
    padding: 5px 20px 5px 7px;
    border-radius: 0px;
    margin-bottom: 0px !important;
    text-transform: capitalize;
}
.city_name_list_main_div > ul > li > a {
    color: var(--color-dark);
    display: block;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.all_cities_collapse_div a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.paragraph-discription {
    color: #333;
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    letter-spacing: 0.3px;
    word-spacing: 0.3px;
    margin-bottom: 12px;
}
.city-list-menu li {
    margin-bottom: 5px;
    font-size: 15px;
    list-style-type: disclosure-closed;
    padding-left: 0px;
    letter-spacing: 0.3px;
    word-spacing: 0.3px;
    color: #333;
}
.sub-heading-title-sub-header {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.city-list-menu {
    padding-left: 20px;
}
