@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html,
body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

/* -- common reset CSS -- start --- */

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

:focus {
    outline: 0;
}

a,
a:link {
    text-decoration: none;
    outline: none;
}

p {
    padding: 2px 0;
    margin: 0;
}

.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: #616161;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
    color: #11a19c;
}

a:focus {
    outline: none !important;
}

:hover {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

option:hover {
    background-color: #1a6bce !important;
    /* Change this to your desired color */
    color: #fff;
}

h1,
h1 a,
h2,
h2 a,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 10px 0;
    font-weight: normal;
    color: #fff;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

::-webkit-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

table {
    caption-side: unset !important;
    border-collapse: unset !important;
}

table,
th,
td {
    border: 1px solid #FFFFFF !important;
    border-collapse: unset !important;
}

.button_appearance_none {
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;

    -webkit-appearance: none;
    /* remove default appearance on Webkit-based browsers */
    -moz-appearance: none;
    /* remove default appearance on Mozilla-based browsers */
    appearance: none;
    /* remove default appearance on all other browsers */
}

.input_appearance_none {
    background: none;
    border: none;
    box-shadow: none;

    -webkit-appearance: none;
    /* remove default appearance on Webkit-based browsers */
    -moz-appearance: none;
    /* remove default appearance on Mozilla-based browsers */
    appearance: none;
    /* remove default appearance on all other browsers */
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pointer_event_none {
    pointer-events: none;
}

.input_pointer_event_none {
    pointer-events: none;
    background: none !important;
    background-image: none !important;
}

button{
    background: transparent;
    border: none;
}

/* -- common reset CSS -- end --- */

/* .container {
    max-width: 1720px;
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
} */

.container{
    width: 90%;
    margin: 0px auto;
    position: relative;
}


/*....................../ top bar css start /......................*/
.topbar {
    background-color: #485803;
    color: #fff;
    height: 50px;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.topbar-rightcontent {
    display: flex;
    align-items: center;
    height: 100%;
}

.screenpart {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 100%;
    padding: 0px 30px;
    border-right: 1px solid #FFFFFF;
}

.screen_reader_block {
    padding: 0px 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.netbanking {
    padding: 0px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}

.netbanking a {
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: #FFFFFF;
}

/*....................../ top bar css end /......................*/

.logomenu-part{
    position: relative;
}

/*....................../ logo part css start /......................*/
.logopart {
    background-color: #DFF5F1;
    height: 120px;
    display: flex;
    align-items: center;
}

.logopart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-rightpart {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-box {
    position: relative;
    width: 300px;
    border: 1px solid #666666;
    border-radius: 100px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

#search-input {
    width: 100%;
    height: 36px;
    padding: 8px 20px;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    box-sizing: border-box;
    background-color: transparent;
}
#search-btn:hover{
    cursor: pointer;
}
.search-button {
    position: absolute;
    top: 0;
    right: 20px;
    width: 25px;
    height: 36px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.search-button img {
    width: 25px;
    height: 24px;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

/* Style the popup container */
#search-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    display: none; /* Hide the popup by default */
}
.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    width: 50%;
  }
  
  /* Style the search box */
  #search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
  
  /* Style the close button */
  #close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
    background: transparent;
    border: none;
  }


.blue-btn {
    background-color: #045BB7;
    border: 1px solid #045BB7;
    border-radius: 100px;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
}

.blue-btn:hover {
    background-color: #485803;
    border: 1px solid #485803;
    color: #FFFFFF;
}

/*....................../ logo part css end /......................*/

/*....................../ menu part css start /......................*/

.menupart {
    background-color: #045BB7;
    height: 53px;
}


.nav-link {
    color: inherit;
    transition: all 0.4s;
    text-decoration: none;
}

.nav-brand {
    flex: 1 auto;
    padding: 0 16px;
    font-size: 1.5rem;
    line-height: 1.5;
    overflow: hidden;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
    color: #8dcde8;
}

.nav-brand img {
    max-width: 100%;
    height: auto;
    vertical-align: initial;
}


.nav-collapse {
    flex: 1 1 auto;
    order: 0;
    height: 100%;
}

.nav-list {
    display: flex;
    padding: 0;
    list-style-type: none;
    justify-content: space-between;
}

.nav-list__item {
    display: flex;
    align-items: center;
    padding: 15px 29.7px;
    height: 60px;
}
.nav-list__item.active {
    background-color: #FFFFFF;
}
.nav-list__item:hover {
    background-color: #FFFFFF;
    cursor: pointer;
}

.nav-list__item:hover a {
    color: #045BB7;
}

.nav-list__item:hover svg path {
    stroke: #045BB7;
}

.nav-list__item.submenu--trigger:hover i {
    border-right: 2px solid #045BB7;
    border-bottom: 2px solid #045BB7;
}

.nav-list__item.third-submenu--trigger:hover i {
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.nav-list__item.active a {
    color: #045BB7;
}

.nav-list__item.active svg path {
    stroke: #045BB7;
}



.nav-list__item:first-child {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.submenu--trigger {
    position: relative;
    cursor: pointer;
}

.submenu--trigger:hover .submenu {
    visibility: visible;
    opacity: 1;
}

.third-submenu--trigger {
    position: relative;
    cursor: pointer;
}

.third-submenu--trigger:hover .third-submenu {
    visibility: visible;
    opacity: 1;
}

.submenu--trigger i,
.third-submenu--trigger i {
    position: absolute;
    top: calc(50% - 6px);
    right: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.submenu--trigger.active i,
.third-submenu--trigger.active i {
    border-right: 2px solid #045BB7;
    border-bottom: 2px solid #045BB7;
}

.third-submenu--trigger i {
    transform: rotate(-45deg);
}

.submenu,
.third-submenu {
    /* opacity: 0;
    visibility: hidden; */
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    /* background: #045BB7; */
    color: #FFFFFF;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease-out;
    z-index: 999;
}

.submenu li,
.third-submenu li {
    border-top: 1px solid #869791;
}

.nav-list__item:hover .submenu .nav-list__item a {
    color: #fff;
}

.nav-list__item .submenu:hover .nav-list__item a {
    color: #fff;
}

.submenu li a,
.third-submenu li a {
    color: #fff;
}

/* .submenu li:hover,
.third-submenu li:hover {
    background: #007eea;
} */

.submenu {
    top: 55px;
    /* min-width: 200px; */
    white-space: nowrap;
}

.third-submenu {
    top: 0;
    left: 100%;
    /* min-width: 200px; */
    white-space: nowrap;
}

.submenu .nav-link,
.third-submenu .nav-link {
    font-size: 16px;
}

/*....................../ menu part css end /......................*/

/*....................../ note part css start /......................*/

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 50px;
    overflow-x: hidden;
    background-color: #F2CB05;
}

.banner_newsEvent_block .marquee{
    background-color: transparent;
}

.banner_newsEvent_block .marquee a{
    color: #023060;
    
}

.banner_newsEvent_block .marquee a:hover{
    color: #DFF5F1;
}

.banner_newsEvent_block .marquee .content span {
    color: #8d3004;
    position: relative;
    padding: 0px 20px;
}

.banner_newsEvent_block .marquee .content span::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #000;
    left: auto;
    right: 0px;
}


.whatsnew-bar .banner_newsEvent_block .marquee a{
    color: #ffffff;
    
}

.whatsnew-bar .banner_newsEvent_block .marquee .content span::after {
    background-color: #dddddd;
}


.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 95s linear infinite;
}

.marquee .content {
    height: 50px;
    display: flex;
    align-items: center;
}

.marquee .content span {
    color: #8d3004;
    position: relative;
    padding: 0px 20px;
}

.marquee .content span::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #000;
    left: auto;
    right: 0px;
    
}

.marquee .content span:last-child::after {
    display: none;
}

@keyframes marquee {

    /* from { transform: translateX(0); }
    to { transform: translateX(-100%); } */
    0% {
        left: 100%;
    }

    100% {
        left: 0;
        transform: translateX(-100%);
    }
}

/*....................../ note part css end /......................*/

/*....................../ Banner Section css start /......................*/
.home_banner_sec {
    position: relative;
}

.home_banner_part{
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px;
    justify-content: space-between;
}

.home_banner_bg {
    background-color: #485803;
}

.home_banner_bgsec{
    position: relative;
    width: 75%;
}

.home_banner_slide {
    position: relative;
    min-height: 630px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home_banner_slide::before {
    position: absolute;
    content: "";
/*    background: linear-gradient(#ffffff00, #000000);*/
    opacity: 0.9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.home_banner_bg .owl-theme .owl-nav {
    display: none;
}

.home_banner_bg .owl-theme .owl-dots {
    position: absolute;
    z-index: 100;
    bottom: 100px;
    margin: auto;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.home_banner_bg .owl-theme .owl-dots button {
    border-radius: 100%;
    border: 0px solid #fff;
    height: 26px;
    width: 26px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_banner_bg .owl-theme .owl-dots button.active {
    border-width: 1px;
}

.home_banner_text {
    position: absolute;
    /* background-color: rgba(0, 0, 0, 0.25); */
    top: 0;
    bottom: 0;
    right: 0;
    /* left: 50%; */
    left: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: calc(630px - 200px);
    word-wrap: break-word;
    padding-right: 160px;
}

.home_banner_text h2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.3;
}

.home_banner_text h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;

}

.banner_btn_block {
    margin: 20px 0;
}

.banner_btn {
    background-color: #045BB7;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    border-radius: 50px;
    padding: 15px 40px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.banner_btn:hover {
    background-color: #485803;

    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.home_banner_bottom {
    background-color: #dddddd90;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0 10px 0;
    z-index: 1;
}

.whatsnew-bar{
   background-color: #485803; 
}

.banner_newsEvent_block {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner_newsEvent_left {
    border-right: 1px solid #fff;
    padding: 0 15px 0 0;
    min-width: 230px;
}

.banner_newsEvent_left h4 {
    color: #FFF500;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;

}

.banner_newsEvent_right {
    padding: 5px 5px 5px 15px;
    width: calc(100% - 250px);
}

.owl_banner_newsEvent h5 {
    color: #023060;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banner_newsEvent_block .owl-theme .owl-nav {
    display: none;
}

.banner_newsEvent_block .owl-theme .owl-dots,
.banner_newsEvent_block .owl-theme .owl-nav {
    display: none;
}

.owl_banner_newsEvent .item h5 a {
    color: #023060;
}

.owl_banner_newsEvent .item h5 a:hover {
    color: #DFF5F1;
}

/* -- banner sidebar start -- */

.banner_sidebar_bg {
    /* position: absolute; */
    top: 0;
    z-index: 1;
    /* width: 50%; */
    bottom: 150px;
    /* background: rgba(255, 0, 0, 0.281); */
    right: calc(50% + 60px);
    max-width: calc(760px - 60px);
}

.banner_sidebar_bg .banner_sidebar {
    position: relative;
}

.banner_sidebar_bg .banner_sidebar ul {
    /* position: absolute; */
    min-width: 75%;
    display: inline-flex;
    flex-direction: column;
    width: auto;
    margin: 50px 0 0 0;
}

.banner_sidebar ul {
    border-radius: 10px;
}

.banner_sidebar ul li {
    /* padding: 25px 30px 20px 40px; */
    display: flex;
    align-items: center;
    justify-items: flex-start;
    background-color: #045bb7;/*#647A06*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.banner_sidebar ul li:first-child {
    border-radius: 8px 8px 0 0;
}

.banner_sidebar ul li:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: 0px none;
}

.banner_sidebar ul li:hover,
.banner_sidebar ul li:active,
.banner_sidebar ul li:focus {
    background-color: #0b66b4; /*#485803*/
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.banner_sidebar ul li a {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 15px 30px 15px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.banner_sidebar ul li a span {
    display: flex;
}

.banner_sidebar_icon img{
    width: 24px;
    height: 24px;
}

/* -- banner sidebar end -- */


/*....................../ Banner Section css end /......................*/


/*....................../ Home carousel section start /......................*/
.home_carousel_sec {
    background-color: #045BB7;
    padding: 30px 0 30px 0;
    position: relative;
}

hr.blue_carousel_block_hr {
    height: 1px;
    border: 0px none;
    background-color: #fff;
    width: 100%;
    position: absolute;
    bottom: -115px;
}

.owl_home_blue {
    position: relative;
}

.owl_home_blue_block {
    padding: 0 40px 0 0;
}

.owlHome_blue_icon {
    width: 60px;
    height: 60px;
}

.owlHome_blue_icon img {
    max-width: 100%;
    max-height: 100%;
}

.owlHome_blue_text {
    margin: 10px 0 20px;
    min-height: 80px;
}

.owlHome_blue_text h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 0px 0px 10px;
    padding: 0px;
    line-height: 1.2;
}

.owlHome_blue_text p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0px 0px 0px;
    padding: 0px;
    line-height: 1.2;
}

.owlHome_blue_btn {
    background-color: #045BB7;
    padding: 12px 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.owlHome_blue_btn:hover {
    background-color: #485803;
    border: 1px solid #485803;

    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.owl_home_blue.owl-theme .owl-nav {
    display: block;
    opacity: 1;
    pointer-events: all;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
}

.owl_home_blue.owl-carousel .owl-nav button {
    color: #B88E2F;
    font-size: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
}

.owl_home_blue.owl-carousel .owl-nav button:hover {
    background-color: #e2e2e2;
}

.owl_home_blue.owl-carousel .owl-nav button span {
    font-size: 0px;
}

.owl_home_blue.owl-carousel .owl-nav button.owl-prev {
    /* background-color: #fff; */
    background-image: url(../images/carusal-left-icon.png);
    background-repeat: no-repeat;
    background-position: center center;

    position: absolute;
    left: -80px;
    top: 50%;
    margin-top: -25px;

}

.owl_home_blue.owl-carousel .owl-nav button.owl-next {
    /* background-color: #fff; */
    background-image: url(../images/carusal-right-icon.png);
    background-repeat: no-repeat;
    background-position: center center;

    position: absolute;
    right: -80px;
    top: 50%;
    margin-top: -25px;
}


/*....................../ Home carousel section end /......................*/

/*............................../ product service secrion start /..................................*/
.product_service_section {
    position: relative;
}

.product_service_back {
    position: relative;
    height: 480px;
}

.product_service_back::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(4, 91, 183, 0.80);
}

.product_service_content {
    padding-top: 10px;
    padding-bottom: 80px;
    margin-top: -450px;
}

.product_service_content_title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.product_service_content_title .title {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
}

.product_service_content_title .subtitle {
    font-size: 18px;
    color: #fff;
}

.service-item {
    min-height: 400px;
    position: relative;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 90px 10px 10px 10px;
    padding: 80px 50px 50px 50px;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.service-icon {
    height: 100px;
    width: 100px;
    background-color: #007EEA;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-43.72deg);
    position: absolute;
    top: -60px;
}

.service-icon img {
    width: 46px !important;
    height: 50px;
    transform: rotate(43.72deg);
}

.service-title {
    font-size: 30px;
    color: #045BB7;
    text-transform: capitalize;
    /* margin-bottom: 20px; */
    line-height: 1.2;
    min-height: 60px;
}

.service-hr {
    height: 2px;
    width: 100px;
    background-color: #647A06;
    margin: 0px auto;
}

.service-text {
    margin-top: 20px;
}

.service-green-btn {
    padding: 9px 30px;
    background-color: #647A06;
    border: 1px solid #647A06;
    border-radius: 80px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    bottom: 50px;
    /* left: 35%; */
}

.service-green-btn:hover {
    background-color: #fff;
    color: #647A06;
    cursor: pointer;
}

/*............................../ product service secrion end /..................................*/

/*.........................../ homepage checkbox section start /................................*/

.homepage-checkbox {
    position: relative;
    margin-bottom: 70px;
}
.homepage-checkbox-container {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

.homepage-checkbox-content {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.homepage-checkbox-image {
    position: absolute;
}

.homepage-checkbox-greenarea {
    background-color: #647A06;
    border: 1px solid #647A06;
    border-radius: 100px 15px 200px 100px;
    padding: 50px 60px 50px 320px;
    margin-left: 250px;
}
.homepage-checkbox-greenarea-content {
    text-align: left;
}

.homepage-checkbox-greenarea-content ul li {
    font-size: 18px;
    line-height: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.homepage-checkbox-greenarea-content ul li img {
    padding-top: 12px;
}

.homepage-checkbox-greenarea-content span {
    color: #fff;
}

/*.........................../ homepage checkbox section end /................................*/



/*........................./footer section css start/.........................*/
.footer-upper {
    background-color: #007EEA;
    padding: 30px 0px;
    /* height: 500px; */
    color: #fff;
}

.footer-bottom {
    background-color: #045BB7;
    /* height: 100px; */
    color: #fff;
}

.upperfooter-content {
    display: flex;
    justify-content: space-between;
}

.upperfooter-content p a {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.spacer {
    height: 20px;
}

.bigspacer {
    height: 125px;
}

.footmenu a {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
}

.bottomfooter-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* height: 100px; */
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
}

.bottomfooter-content div {
    /* flex: 1; */
}

.bottomfooter-content p {
    text-align: left;
}

.bottomfooter-content a {
    color: #fff;
}
.bottomfooter-center p{
    text-align: center;
}
.bottomfooter-right p{
    text-align: right;
}
/*........................./footer section css end/.........................*/

/*......................./ innerpage css start /...........................*/
.innerbanner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #964B00;
    border: 1px solid white;
    color: white;
    font-size: 10pt;
    text-align: center;
    padding: 10px;
}

.innerbanner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.innerbanner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innerbanner-content {
    position: relative;
    text-align: left;
    padding: 25px 0px;
}

.innerbanner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.innerbanner-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.innerbanner-content a {
    color: white;
    text-decoration: none;
}

.innerpage-content{
    padding: 60px 0;
}

.innerpage-heading{
    font-size: 35px;
    font-weight: bold;
    color: #343434;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.innerpage-content-area{
    display: flex;
    gap: 50px;
}
.innerpage-leftside{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.innerpage-leftbox{
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 35px 15px 35px;
    max-width: 100%;
    background: #DFF5F1;
}
.innerpage-leftbox-contentarea{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #000;
    padding-top: 24px;
}
.innerpage-leftbox-contentarea:first-child{
    padding-top: 0px;
}
.innerpage-leftbox-contentarea:last-child{
    border-bottom: none;
}
.innerpage-leftbox-content{
    width: 100%;
}
/* .innerpage-leftbox-content-img{
    width: 135px;
    height: 60px;
} */
.innerpage-leftbox-text{
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.innerpage-leftbox-btn{
    border: 1px solid #9B9B9B;
    border-radius: 80px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    color: #485803;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    margin: 30px 0;
}

.bradecramb {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.headinglink {
    font-size: 18px;
    font-weight: 500;
    color: #045bb7;
}

/*.............*/
.innerpage-leftbox-menu{
    padding: 5px;
    border-radius: 15px;
    background-color: #045bb7;/*#647A06*/
    width: 100%;
}
.innerpage-leftbox-menu ul li a {
	display: block;
	display: flex;
    background: #045bb7;/*#647A06*/
    align-items: center;
    justify-content: space-between;
	padding: 15px; /*25px 40px*/
    font-size: 18px;
    font-weight: 500;
	color: #fff;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
.innerpage-leftbox-menu ul li a:hover {
	background: #0b66b4;/*#485803;*/
	color: #fff;
}

/* li.leftbox-menu:first-child a{
    border-radius: 15px 15px 0 0;
}
li.leftbox-menu:last-child a{
    border-radius:  0 0 15px 15px;
} */
/* li.leftbox-menu ul li a{
    border-radius: 0px !important;
} */
.menuname{
    display: flex;
    align-items: center;
    gap: 20px;
}
.innerpage-leftbox-menu ul li a .fa {
	width: 20px;
	text-align: center;
	float:right;
}
.innerpage-leftbox-menu ul ul {
	background-color:#ebebeb;
}
.innerpage-leftbox-menu ul li ul li a {
	background: #007eea;
	padding: 10px 20px 10px 50px;
}
.innerpage-leftbox-menu ul li ul li a:hover {
	background: #045295;
	/* border-left: 4px solid #3498db; */
}

.innerpage-leftbox-menu ul li ul li ul li a {
    background: #3591ff;
    padding: 10px 20px 10px 80px;
}
.innerpage-leftbox-menu ul li ul li ul li a:hover {
	background: #abd1ff;
	/* border-left: 4px solid #3498db; */
    color: #045bb7;
}


.innerpage-leftbox-menu .leftbox-menu.active a{
    background: #485803;
}


.innerpage-rightside{
    width: 70%;
}

.innerpage-hr{
    height: 1px;
    background-color: #ddd;
    width: 100%;
}

/*.............*/

.innerpage-table{
    width: 100%;
}
.innerpage-table td{
    background-color: #E7EFFF;
    color: #343434;
    padding: 25px 20px;
    /* word-break: break-all; */
}
.innerpage-table .bluetd{
    background-color: #ABD1FF;
    padding: 25px 30px;
    text-align: center;
}

.innerpagefield span{
    font-size: 18px;
    color: #343434;
}

.innerpagefield select{
    padding: 12px 20px;
    border: 1px solid #999;
    border-radius: 100px;
    width: 300px;
    font-size: 18px;
    color: #666666;
}

.innerpage-selectdata{
    padding-top: 0px;
    overflow-x: auto;
}

.boldtext{
    font-weight: 600;
}

.innerpage-bluetable{
    width: 100%;
    overflow-x: auto;
}

.innerpagetablepart{
    overflow-x: auto;
    width: 100vw;
}

.innerpage-rightside .innerpage-heading{
    background: #e7efff;
    width: fit-content;
    padding: 10px;
}
/*....................../ innerpage css end /......................*/

/*........................../ 404 page css start /.........................*/
.errorpage-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.errorpage-img img{
    width: 100%;
}

.errorpage-btn{
    background-color: #007EEA;
    color: #fff;
    border: 1px solid #007EEA;
    border-radius: 100px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
a.errorpage-btn:hover{
    background-color: #485803;
    border: 1px solid #485803;
    cursor: pointer;
    color: #fff;
}

/*........................../ 404 page css end /.........................*/

/*......................./ contact us page css start /.......................*/
.contactpage-matterbox{
    padding: 30px 0;
    border-bottom: 1px solid #DDDDDD;
}
.contactpage-matterbox:first-child{
    padding-top: 0px;
}
.contactpage-matterbox:last-child{
    border-bottom: none;
    padding-bottom: 0px;
}
.contactpage-matterbox-heading{
    font-size: 30px;
    line-height: 1.3;
    color: #045BB7;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.contactpage-matterbox-content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contactpage-matterbox-points{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.mapsection{
    margin: 30px 0;
}
/*......................./ contact us page css end /.......................*/

/*......................./ tender page css start /.......................*/

.tenderpage-matter-content-item {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.tenderpage-matter-content-item:first-child{
    padding-top: 0px;
}
.tenderpage-matter-content-item:last-child{
    border-bottom: none;
}
.tenderpage-matter-logo {
    width: 15%;
}
.tenderpage-matter-link a {
    color: #045BB7;
}

.pagination{
    margin-top: 60px;
}



.innerpage-content-tablearea{
    width: 100%;
}
#example_wrapper .dt-layout-row:first-child{
    display: none;
}
.dtsb-searchBuilder{
    display: none;
}
#example_wrapper {
    background: #E7EFFF;
    padding: 20px;
    border: 1px solid #A9A9A9;
    border-radius: 15px;
}

#example_wrapper thead{
    background-color: #ABD1FF;
}
#example_wrapper thead th{
    padding: 50px 30px 50px 15px;
    white-space: normal;
    text-align: left;
}

#example_wrapper td.skyblue{
    background-color: #CCE1FB;
}
#example_wrapper td{
    white-space: normal;
    text-align: left;
    border-bottom: 1px solid #FFFFFF !important;
    padding: 15px;
}

#example_wrapper .dt-layout-full{
    overflow-x: auto;
}

#example_wrapper a{
    color: #3B54F7;
}
#example_wrapper a:hover{
    color: #485803;
}

div.dt-container .dt-search input{
    border: 1px solid #666666 !important;
    border-radius: 7px !important;
    padding: 10px !important;
}
.dt-paging-button.current{
    padding: 15px !important;
    border-radius: 7px !important;
    border: 1px solid #666666 !important;
}
div.dt-container select.dt-input {
    padding: 10px 15px !important;
    border-radius: 7px;
    border: 1px solid #666;
}
.dt-info{
    color: #666666 !important;
}
.dt-paging nav{
    background: transparent;
}
.datefilter{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.datefilter-date{
    padding: 9px;
    border-radius: 100px;
    border: 1px solid #666666;
}

.datefilter-submit{
    background-color: #0031F8;
    border: 1px solid #0031F8;
    border-radius: 100px;
    color: #fff;
    padding: 9px 23px;
    font-size: 18px;
}
.datefilter-submit:hover{
    background-color: #045BB7;
    cursor: pointer;
}

.datefilter-reset{
    background-color: #485803;
    border: 1px solid #485803;
    border-radius: 100px;
    color: #fff;
    padding: 9px 23px;
    font-size: 18px;
}
.datefilter-reset:hover{
    background-color: #627704;
    cursor: pointer;
}

/*......................./ tender page css end /.......................*/

/*......................../ genesis-mission page css start /..........................*/
.genesispage-matter{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.genesispage-matter .innerpage-heading{
    margin-bottom: 0px;
}
.genesis-matter-content, .mission-matter-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.genesis-matter-content ul li{
    padding-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
.genesis-matter-content ul li::before{
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 8px;
    height: 24px;
    background-color: #045BB7;
}
/*......................../ genesis-mission page css end /..........................*/

/*............................./ service page css start /..........................*/
.service-matter-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-matter-content .innerpage-heading{
    margin-bottom: 0px;
}

.service-matter-content ul li {
    padding-bottom: 20px;
    padding-left: 45px;
    position: relative;
    list-style-type: none;
}
.service-matter-content ul li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    width: 15px;
    height: 15px;
    background: url('../images/bullet.svg');
}



/*..............................*/
nav {
    background-color: #045BB7;
    position: relative;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.menuname img {
    width: 20px;
}
.menu > li {
    position: relative;
    display: inline-block;
}

.menu > li > a {
    display: block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    background-color: #045BB7;
    line-height: 18px;
}

.menu > li > a:hover {
    background-color: #fff;
    color: #045BB7;
}

.menu > li > a:hover svg path{
    stroke: #045BB7;
}

.submenu {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #045BB7;
}

.submenu li {
    position: relative;
}

.submenu > li > a {
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    background-color: #045BB7;
    display: block;
    width: 100%;
}

.submenu > li > a:hover {
    background-color: #fff;
    color: #045BB7;
}

.menu > li:hover .submenu {
    display: block;
    /* opacity: 1;
    visibility: visible; */
}

.submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

.submenu .submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

/* Hide other submenus when hovering over a parent submenu */
/* .menu > li:hover .submenu .submenu {
    display: none;
} */

/* Responsive styles */
.menu-toggle {
    display: none;
    background-color: #045BB7;
    padding: 14px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.menu-toggle .hamburger {
    display: inline-block;
}


.menu i{
    position: absolute;
    top: calc(50% - 6px);
    right: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.menu li a:hover i{
    border-right: 2px solid #045BB7;
    border-bottom: 2px solid #045BB7;
}

.menu > li.active a {
    background-color: #fff;
    color: #045BB7;
}
.submenu > li.active a{
    background-color: #fff;
    color: #045BB7;
}
.menu li.active a:hover i{
    border-right: 2px solid #045BB7;
    border-bottom: 2px solid #045BB7;
}

.menu li.active a svg path{
    stroke: #045BB7;
}
ul::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}
.banner_section {
    margin-bottom: 25px;
}
 h3 {
    margin: 0;
    padding: 10px 0;
    font-size: 22px;
    color: #050505;
}

.innerpage-rightside ol {
    list-style: revert-layer;
    padding-left: 30px;
}

.innerpage-leftbox-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    word-break: break-all;
}

.innerpage-rightside ul {
    list-style: disc;
    padding-left: 30px;
}

.innerpage-rightside a{
 text-decoration: underline;
}


@media (max-width : 767px) {
    .search_button {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 10px;
    }
}   
.innerpage-rightside a.blue-btn{
    text-decoration: none;
    margin-top: 20px;
}

.emi_heading {
    margin: 0;
    padding: 10px 9px;
    font-size: 30px;
    letter-spacing: 1px;
    color: #050505;

}
/* Styling the EMI Calculator container */
.emi-calculator-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    width: 553px;
    margin: 30px auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Styling for form labels */
.emi-calculator-form label {
    font-weight: bold;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

/* Styling the form input fields */
.emi-calculator-form input[type="number"],
.emi-calculator-form input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Hover and focus effect for input fields */
.emi-calculator-form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Styling buttons */
.emi-calculator-form button {
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    width: 48%;
    margin-right: 4%;
    transition: background-color 0.3s ease;
}

/* Reset button styling */
.emi-calculator-form button[type="reset"] {
    background-color: #6c757d;
}

/* Button hover effects */
.emi-calculator-form button:hover {
    background-color: #0056b3;
}

.emi-calculator-form button[type="reset"]:hover {
    background-color: #5a6268;
}

/* emi botton section start */
.emi_btns{
    display: flex;
}

.emi-form-group input {
    font-size: 18px; /* Increase font size */
    padding: 10px;
    width: 100%;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    border-radius: 5px;
    border: 1px solid #ccc;
}

.emi_btns button {
    padding: 10px 20px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.emi_btns button[type="button"] {
    background-color: #007bff;
    color: white;
}

.emi_btns button[type="reset"] {
    background-color: #6c757d;
    color: white;
}
/* emi botton section end */

/* network page css start */
#pac-input{
    margin-top: 9px;
    width: 250px;
    position: absolute;
    left: 188px;
    top: 0px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 5px;
    font-size: 16px;
}
/* network page css end */

/* Styling the form when resizing */
@media screen and (max-width: 600px) {
    .emi-calculator-form {
        width: 90%;
        padding: 20px;
    }

    .emi-calculator-form button {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

}



/*popup css start*/
.popupcover {
    background: rgb(0 0 0 / 60%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
    align-items: center;
    justify-content: center;

}

.popupcontents {
    width: 600px;
    height: auto;
    background: #f1f1f1;
    margin: 30px auto;
    /* border: 2px solid #ccc; */
    border-radius: 15px;
    position: relative;
    text-align: center;
    padding: 5px;
}

span.close {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    padding: 5px;
}


/**/
.vertical-menu {
    width: 200px;
    padding: 5px;
    border-radius: 15px;
    background-color: #045bb7;
    border: 1px solid #045bb7;
    width: 100%;
}

.vertical-menu img {
    height: 15px;
    width: 15px;
}

.vertical-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vertical-menu li {
    position: relative;
}

.vertical-menu a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
}

.vertical-menu a:hover {
    background-color: #0b66b4;
}

.vertical-menu ul ul {
    display: none;
    position: relative;
    left: 0;
    top: 0;
}

.vertical-menu li:hover>ul {
    display: block;
}

.vertical-menu ul li ul li a {
    background: #007eea;
    padding: 10px 20px 10px 50px;
}

.vertical-menu ul li ul li ul li a {
    background: #3591ff;
    padding: 10px 20px 10px 80px;
}
/*popup css end*/



/*Awards gallery popup*/
.awardgallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .awardgallery a {
            display: block;
            margin: 10px;
        }

        .awardgallery img {
            height: auto;
            width: 100%;
            max-width: 230px;
        }

        .awardlightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 99999;
        }

        .awardlightbox img {
            max-width: 100%;
            max-height: 100%;
        }

        .awardlightboxcontain {
            padding: 10px;
            background: #fff;
            border-radius: 5px;
        }

        .awardlightbox-heading {
            font-size: 20px;
            line-height: 32px;
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            font-weight: 600;
            color: #333;
        }

        .awardclose {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 20px;
            background-color: white;
            border: none;
            border-radius: 100%;
            padding: 10px 15px;
            cursor: pointer;
        }
/*Awards gallery popup end*/

/*Employee dashboard css*/
 body{
    background:#FAFAFA;
}
.order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(45deg,#4099ff,#73b4ff);
}

.bg-c-green {
    background: linear-gradient(45deg,#2ed8b6,#59e0c5);
}

.bg-c-yellow {
    background: linear-gradient(45deg,#FFB64D,#ffcb80);
}

.bg-c-pink {
    background: linear-gradient(45deg,#FF5370,#ff869a);
}


.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    border: none;
    margin-bottom: 30px;
    margin-top:30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.user-dashboard .card .card-block {
    padding: 25px;
    padding-bottom:0;
}
.user-dashboard .innerpage-leftbox-btn{
    border-color: #fff;
    background-color: #fff;
}
.order-card i {
    font-size: 26px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}
.user-dashboard .row{
    display:flex;
    width: 100%;
    gap:20px;
    align-items: center;
    justify-content: space-between;
}
.user-dashboard .row .col-md-4{
    width: 30%;
}
.user-dashboard .m-b-20{
    font-size: 20px;
}
.user-dashboard .text-right{
    float: right;
    margin-top: -30px;
    margin-right: 40px;
}
.user-dashboard .order-card i {
    font-size: 70px;
}
.proimg img{
    border-radius:100px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display:none;
    float: left;
    min-width: 100%;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size:14px;
}

.dropdown{
    position: relative;
}
@media only screen and (max-width:1300px){
    .user-dashboard .order-card i {
        font-size: 50px;
    }
    .user-dashboard .text-right{
        margin-top: -15px;
        margin-right: 15px;
    }
    .user-dashboard .card .card-block{
        padding-bottom: 25px;
    }
    .user-dashboard .row .col-md-4 {
         width: 32%;
    }
}
@media only screen and (max-width:991px){
    .user-dashboard .row .col-md-4 {
        width: 100%;
    }
    .user-dashboard .row{
        flex-wrap: wrap;
        gap: 0px;
        display: block;
    }
}
/*Employee dashboard card css*/

/*Employee profile card css*/
.user-profile .widget-content-area {
            border-radius: 6px;
        }
        .widget-content-area {
            border: 1px solid #e0e6ed;
            box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
        }
        .widget-content-area {
            padding: 20px;
            position: relative;
            background-color: #fff;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border: 1px solid #e0e6ed;
            border-top: none;
        }
        .user-profile .widget-content-area .user-info {
            margin-top: 40px;
        }
        .user-profile .widget-content-area .user-info p {
            font-size: 20px;
            font-weight: 600;
            margin-top: 22px;
            color: #009688;
        }
        .user-profile .widget-content-area .edit-profile {
            height: 35px;
            width: 35px;
            display: flex;
            justify-content: center;
            align-self: center;
            background-color: #4361ee;
            background: linear-gradient(to right, #3cba92 0%, #0ba360 100%);
            border-radius: 50%;
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
        }

        .user-profile .widget-content-area .edit-profile svg {
            font-size: 17px;
            vertical-align: middle;
            margin-right: 0;
            color: #e0e6ed;
            width: 19px;
            align-self: center;
        }

        .btn svg {
            pointer-events: none;
            height: 22px;
            width: 22px;
            vertical-align: middle;
        }
        .btn.btn-icon.btn-rounded {
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }
        .btn.btn-icon {
            padding: 7.5px 9px;
        }
        .user-profile .widget-content-area .user-info img {
            border-radius: 9px;
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
        }
        .user-profile .widget-content-area .user-info-list > div {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block {
            border: none;
        }

        .user-profile .widget-content-area .user-info-list ul.contacts-block li, .user-profile .widget-content-area .user-info-list ul.contacts-block li a {
            margin-bottom: 13px;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
            color:#a5a5a5;
            border-bottom: 1px solid #e1e1e1;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block li a{
            margin-bottom:0;
            border-bottom:none;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block li{
            padding-bottom:20px;
        }

        .user-profile .widget-content-area .user-info-list ul.contacts-block li a:not(.btn) {
            font-weight: 600;
            font-size: 15px;
            color: #009688;
        }

        .user-profile{
            margin:35px 0;
            padding:50px;
        }
        .user-profile-in{
            padding:40px 70px;
        }
        .user-profile-in h3 {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .user-profile-in .d-flex{
            display:flex;
            gap:40px;
            align-items: center;
        }
        .user-image{
            box-shadow:0 0 40px 0 rgba(94, 92, 154, 0.06);
            padding:40px;
        }
        .user-image img{
            width: 200px;
            border-radius: 30px;
            height: 100%;
            object-fit: fill;
        }
        .user-image .text-center{
            text-align: center;
        }
        .user-info-list{
            width:70%;
        }
        @media only screen and (max-width:991px){
            .user-profile-in h3 {
                font-size: 35px;
            }
            .user-profile-in .d-flex{
                flex-wrap: wrap;
            }
            .user-image {
                width: 100%;
                text-align: center;
            }
            .user-info-list {
                width: 100%;
            }
        }
        @media only screen and (max-width:600px){
            .user-profile {
                padding: 0;
            }
            .user-profile-in {
                padding: 40px;
            }
            .user-profile-in h3 {
                font-size: 28px;
            }
        }
/*Employee profile card css*/


/*Employee profile card edit css*/
.user-profile .widget-content-area {
            border-radius: 6px;
        }
        .widget-content-area {
            border: 1px solid #e0e6ed;
            box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
        }
        .widget-content-area {
            padding: 20px;
            position: relative;
            background-color: #fff;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            border: 1px solid #e0e6ed;
            border-top: none;
        }
        .user-profile .widget-content-area .user-info {
            margin-top: 40px;
        }
        .user-profile .widget-content-area .user-info p {
            font-size: 20px;
            font-weight: 600;
            margin-top: 22px;
            color: #009688;
        }
        .user-profile .widget-content-area .edit-profile {
            height: 35px;
            width: 35px;
            display: flex;
            justify-content: center;
            align-self: center;
            background-color: #4361ee;
            background: linear-gradient(to right, #3cba92 0%, #0ba360 100%);
            border-radius: 50%;
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
        }

        .user-profile .widget-content-area .edit-profile svg {
            font-size: 17px;
            vertical-align: middle;
            margin-right: 0;
            color: #e0e6ed;
            width: 19px;
            align-self: center;
        }

        .btn svg {
            pointer-events: none;
            height: 22px;
            width: 22px;
            vertical-align: middle;
        }
        .btn.btn-icon.btn-rounded {
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
        }
        .btn.btn-icon {
            padding: 7.5px 9px;
        }
        .user-profile .widget-content-area .user-info img {
            border-radius: 9px;
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
        }
        .user-profile .widget-content-area .user-info-list > div {
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block {
            border: none;
        }

        .user-profile .widget-content-area .user-info-list ul.contacts-block li, .user-profile .widget-content-area .user-info-list ul.contacts-block li a {
            margin-bottom: 13px;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
            color:#a5a5a5;
            border-bottom: 1px solid #e1e1e1;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block li a{
            margin-bottom:0;
            border-bottom:none;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block li{
            padding-bottom:20px;
        }

        .user-profile .widget-content-area .user-info-list ul.contacts-block li a:not(.btn) {
            font-weight: 600;
            font-size: 15px;
            color: #009688;
        }

        .user-profile{
            margin:35px 0;
            padding:50px;
        }
        .user-profile-in{
            padding:40px 70px;
        }
        .user-profile-in h3 {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .user-profile-in .d-flex{
            display:flex;
            gap:40px;
            align-items: center;
        }
        .user-image{
            box-shadow:0 0 40px 0 rgba(94, 92, 154, 0.06);
            padding:40px;
        }
        .user-image img{
            width: 200px;
            border-radius: 30px;
        }
        .user-image .text-center{
            text-align: center;
        }
        .user-info-list{
            width:70%;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block li input{
            border:none;
            font-size:16px;
        }
        .user-profile .widget-content-area .user-info-list ul.contacts-block.changepassword li input{
            width: 90%;
        }

        /*1st custom file upload button*/

        .profile {
            position: relative;
            width: 200px;
            height: 200px;
            transition: .3s ease-in-out;
            margin:0 auto;
        }

        .profile label {
            display: inline-block;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, orangered, gold);

            text-align: center;
            line-height: 227px;

            overflow: hidden;
            border-radius: 50%;
            border: 4px solid #fff;
            cursor: pointer;
        }

        .profile label:hover .camera {
            transform: translate(-23.5%, -33.5%) scale(1.4);
            border: 30px solid #fff;
        }

        .profile input[ type="file"] {
            display: none;
        }

        .profile .user {
            font-size: 9rem;
            color: transparent;
            background-color: #000;
            -webkit-background-clip: text;
        }

        .profile .camera {
            position: absolute;
            line-height: normal;
            bottom: 0;
            right: 15px;

            padding: .5rem;
            background: #F2CB05;

            border-radius: 50%;
            font-size: 1.5rem;
            border: 4px solid #fff;
            transition: .3s ease-in-out;
        }
        .user-profile .widget-content-area .user-info-list > div.btn-group{
            flex-direction: row;
            justify-content: flex-start;
            gap:12px;
        }
        @media only screen and (max-width:991px){
            .user-profile-in h3 {
                font-size: 35px;
            }
            .user-profile-in .d-flex{
                flex-wrap: wrap;
            }
            .user-image {
                width: 100%;
                text-align: center;
            }
            .user-info-list {
                width: 100%;
            }
        }
        @media only screen and (max-width:600px){
            .user-profile {
                padding: 0;
            }
            .user-profile-in {
                padding: 40px;
            }
            .user-profile-in h3 {
                font-size: 28px;
            }
            .user-profile .widget-content-area .user-info-list ul.contacts-block.changepassword li input{
                width: 70%;
            }
        }
/*Employee profile card edit css*/

.text-danger {
    color: #ff0000;
    font-size: 13px;
    font-weight: 300;
}
.user-profile .widget-content-area .user-info-list ul.contacts-block li{
    flex-wrap: wrap;
}
.blue-btn2{
    font-size: 18px;
    padding: 9px 25px;
    background-color: #045BB7;
    border: 1px solid #045BB7;
    border-radius: 100px;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    width: fit-content;
}
