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


/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

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

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: unset;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  text-transform: uppercase;
  background-image: -webkit-linear-gradient( 107deg, rgb(95,3,14) 0%, rgb(209,14,55) 100%);
  font-family: 'Montserrat';
}

.theme-btn:hover {
  background-image: unset;
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 23px;
    font-size: 13px;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}




.dashboard_page-box {
    position: relative;
    z-index: 9;
}

section.side_bar {
    position: fixed;
    z-index: 1;
    background: #15294c;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 2vh;
    /* margin: 10px 0 10px 10px; */
    border-radius: 0px;
    height: 100vh;
    width: 16.5%;
}

.side-bar-logo {
    text-align: center;
    padding: 40px 0px;
    border-radius: 20px;
}

.dashboard_page-box .col-xl-2.col-lg-3.col-md-4 {
    padding: 0;
}

.dashboard_page-box .col-xl-10.col-lg-9.col-md-8 {
    padding: 0;
}

.side-bar-profile {
    text-align: center;
    padding: 20px 0;
}

.side-bar-profile h6 {
    font-size: 10px;
    color: #ffffff;
    text-transform: capitalize;
}

.side-bar-profile img {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    object-fit: cover;
}

.side-bar-profile h5 {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
}

ul.slidebar_menu a {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff5c;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 0 20px 20px;
    width: 100%;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    font-family: var(--tertiary-font);
    position: relative;
    z-index: 1;
    gap: 15px;
    border-bottom: 1px solid #ffffff4f;
    font-family: 'Montserrat';
}

ul.slidebar_menu li:last-child a {
    border: 0;
}

ul.slidebar_menu a:hover,
ul.slidebar_menu a.active {
    color: #fff;
}

ul.slidebar_menu a::before {
    position: absolute;
    content: '';
    width: 0;
    height: 114px;
    right: 0px;
    top: 0px;
    bottom: 0;
    margin: auto;
    background-image: url(../images/bg-shap.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    z-index: -1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: .2s all;
}

ul.slidebar_menu a:hover::after,
ul.slidebar_menu a.active::after {
    width: 50px;
}

ul.slidebar_menu a:hover::before,
ul.slidebar_menu a.active::before {
    width: 100%;
}

img.lougout-img {
    width: 20px;
    filter: invert(1);
}

ul.slidebar_menu a img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    object-fit: scale-down;
    opacity: 1;
    transition: 0.3s ease-in-out;
    filter: brightness(0) saturate(100%) invert(73%) sepia(2%) saturate(0%) hue-rotate(105deg) brightness(92%) contrast(90%);
}

ul.slidebar_menu a:hover img,
ul.slidebar_menu a.active img {
    /* opacity: 1; */
    /* transition: 0.3s ease-in-out; */
    /* width: 30px; */
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(7deg) brightness(108%) contrast(101%);
}

.side-bar-logout-box a {
    background: #03101e;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid #fff;
    width: 100%;
    height: 80px;
    letter-spacing: 1px;
}

.side-bar-logout-box a i {
    font-size: 18px;
    font-weight: 600;
}

.dashbord-right-box {
    background: #fafafa;
    width: 100%;
}

.subchild {
    display: none;
    margin-left: 20px;
    position: relative;
}

.slidebar_menu li:hover>.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild a {
    justify-content: center;
}

.header-search a {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #7c7c7c;
}

img.search-voice {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    margin: auto;
}

ul.header-profile-list i {
    font-size: 18px;
    color: #7f7f7f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.slidebar_menu {
    /* margin-left: 25px; */
}

ul.slidebar_menu a span {
    display: block;
    font-size: 11px;
    color: #7c7c7c;
}

li.list-item a {
    border-bottom: 0;
}

.slidebar_menu i.fa-solid.fa-angle-down.rotate {
    transform: rotate(180deg);
}

.slidebar_menu i {
    transition: .3s all;
}


/* Sidebar Section End */


/*  Header Nav Bar Start */

.search-nav {
    background: #f8f8f8;
    position: relative;
    z-index: 1;
    padding: 15px 22px 15px 22px;
    margin-bottom: 0;
}

.header-search button {
    width: 60px;
    height: 100%;
    background: #ebebeb00;
    border: 0;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.header-search input {
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    border: 1px solid #dddddd;
    border-radius: 70px;
    height: 50px;
    padding-left: 50px;
    font-family: 'Montserrat';
    background: transparent;
    text-transform: uppercase;
}

ul.header-profile-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 0;
    margin-right: 20px;
}

a.mailbox i {
    font-size: 18px;
    color: #7f7f7f;
    position: relative;
    z-index: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

a.notift-icon span,
a.mailbox span {
    width: 10px;
    height: 10px;
    background: #870021;
    padding: 1px;
    position: absolute;
    top: 11px;
    right: 9px;
    border-radius: 10px;
    z-index: 1;
    border: 2px solid #fff;
}

.mail-box {
    position: relative;
}

.user-profile-box {
    display: flex;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border-left: 1px solid #e7e7e7;
    margin-left: -10px;
    padding-left: 10px;
    align-items: center;
}

.user-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

.user-profile-info h4 {
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.search-nav .row {
    align-items: center;
}

.notification-box {
    position: relative;
}

.side-bar-logo img,
.side-bar-logo a {
    width: auto;
    object-fit: cover;
}


/* Mail Box */

ul.mail-messages {
    position: absolute;
    right: 0;
    width: 230px;
    background: #182a4b;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
    z-index: 9999999999;
}

ul.mail-messages li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    font-family: 'Montserrat';
}

ul.mail-messages li .mail-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.mail-messages li:hover {
    background: #840020;
}

ul.mail-messages li .mail-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
    font-family: 'Outfit';
    margin-bottom: unset;
}

ul.mail-messages li .mail-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.mail-messages li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.mail-messages li:last-child {
    border: 0;
}


/* Mail Box */


/* Notification Box */

ul.notification-messages-list {
    position: absolute;
    right: 0;
    width: 230px;
    background: #182a4b;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
}

ul.notification-messages-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

ul.notification-messages-list li .notification-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.notification-messages-list li:hover {
    background: #81001f;
}

ul.notification-messages-list li .notification-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-family: 'Outfit';
}

ul.notification-messages-list li .notification-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.notification-messages-list li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.notification-messages-list li:last-child {
    border: 0;
}

.notification-dropdown-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.notification-dropdown-btns a {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    background: var(--secondary-color);
    padding: 5px 8px;
    border-radius: 5px;
    width: 48%;
    justify-content: center !important;
    border: 1px solid #ffffff;
}

ul.notification-messages-list li:hover .notification-dropdown-btns a {
    background: var(--secondary-color);
}


/* Notification Box */


/* Profile Box */

.user-profile-dropdown {
    z-index: 999;
    position: absolute;
    right: 70px;
    width: 200px;
    background: #182a4b;
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
}

.user-profile-dropdown a {
    padding: 10px;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    transition: .2s all;
    text-align: center;
    font-family: 'Outfit';
}

.user-profile-dropdown a:last-child {
    border: 0;
}

.user-profile-dropdown a:hover {
    background: #840020;
}

.user-profile-info h4>span {
    display: block;
    font-size: 10px;
    color: #777777;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.user-profile-info h4>i {
    position: absolute;
    right: -20px;
    top: 0;
}

.header-search {
    position: relative;
    width: 100%;
}


/* Profile Box */

ul.slidebar_menu a i {
    position: absolute;
    right: 15px;
}

ul.sub-menu {
    padding-left: 40px;
    padding-bottom: 10px;
    padding: 10px 0px 10px 40px;
}

ul.sub-menu li a {
    padding: 0;
    border: 0;
}

.logout-button {
    margin-top: 59px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /* display: none; */
}

.logout-button a::before {
    background-color: #fff;
}

.logout-button a {
    /* color: #fff; */
    /* border: 1px solid; */
    gap: 10px;
}




/*Notification Start*/

.notification-txt ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d5d5d5;
    padding: 20px;
    margin: 0 0 10px;
    border-radius: 5px;
}

.notification-txt ul li h6 {
    font-size: 16px;
    font-family: 'Montserrat';
    margin: 0;
    color: #666666;
}

.notification-txt ul li h6 span {
    color: #256c42;
}

.notification-txt ul li h6 i {
    font-size: 16px;
    color: #256c42;
    margin-right: 10px;
}

.notification-txt ul li h5 {
    font-size: 16px;
    font-family: 'Montserrat';
    color: #256c42;
    margin: 0;
}

.notification-txt ul li i:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0fff6;
    color: #256c42;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8b8b8b;
}

.user-profile-info h6 {
    font-size: 15px;
    font-family: 'Outfit';
    line-height: 20px;
    margin-bottom: unset;
    text-transform: uppercase;
    color: #000;
    text-transform: capitalize;
    font-weight: bold;
}

.user-profile-info h6 span {
    font-size: 11px;
    font-family: 'Montserrat';
    font-weight: 400;
    text-transform: uppercase;
}
/*Notification Start*/
.logout-button a.theme-btn {
    padding: 15px 61px;
}
ul.header-profile-list i:hover {
    background: #f4e6e8;
    color: #a30a26;
}
.user-profile-img:after {
    content: '';
    position: absolute;
    top: -1.5px;
    left: -2.5px;
    background: #f2f2f2;
    width: 57px;
    height: 53px;
    border-radius: 50px;
    z-index: -1;
}
.user-profile-img {
    position: relative;
    border: 3px solid #8a0022;
    border-radius: 50px;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.job-listing-main h2 {
    font-family: 'blenderpro-heavy';
    font-size: 28px;
    color: #000;
    margin-bottom: 0px;
    margin-top: 22px;
    line-height: 30px;
}

/*Dashboard main Page Css Start*/
.dashboar_page-content.home-page {
    background: #f8f8f8;
    padding: 15px 22px;
}
.welcome-box {
    background-image: url(../images/banner-index.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 34px 39px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.welcome-text h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: -11px;
    font-family: "Outfit", sans-serif;
    font-weight: bold;
}

.welcome-text p {
    font-size: 12px;
    color: #ffffff91;
    font-family: "Montserrat", sans-serif;
}

/* Acitvities */

.activity-tet img {
    width: 41px;
    height: 18px;
    object-fit: contain;
}

.activity-tet p {
    font-family: 'Outfit';
    font-size: 11px !important;
    color: #000;
    font-weight: 600;
    margin-bottom: unset;
    line-height: 17px;
    text-transform: uppercase;
}

.activity-tet p span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Outfit';
    color: #979494;
}

.activity-tet {
    display: flex;
    align-items: center;
    gap: 11px;
}


p.btm-act-text {
    font-family: 'blenderpro';
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #00000069;
    margin-top: 14px;
    margin-bottom: 0px;
    padding-top: 4px;
}

p.btm-act-text span {
    color: #27ae62;
}

.activity-main-box {
    background: #fff;
    border: 1px solid #0000001f;
    border-radius: 6px;
    padding: 16px 10px;
}
span.fr-colour {
    color: #e67e22 !important;
}
.activities-list .col-md-3.col-lg-3.col-12 {
    padding: 0px 4px;
}

.activities-list {
    margin: 0px 10px;
}

.activity-tet span.icon-img-acti {
    background: #efe4e5;
    padding: 17px 18px;
    border-radius: 40px;
    width: 52px;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #850020;
}
/* Acitvities */

/*Recent Jobs Start*/

.recent-job-table {
    padding: 20px 0px;
    background: #f5f6f8;
    font-family: Arial, sans-serif;
}

.recent-job-table h2 {
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Outfit';
    font-size: 24px;
    color: #272725;
    margin-bottom: 0px;
    line-height: 47px;
}

.recent-job-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.recent-job-table thead th {
    text-align: left;
    padding: 15px;
    background: #e9eaec;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    font-family: 'Outfit';
    font-size: 13px;
    text-transform: uppercase;
}

.recent-job-table thead th:first-child {
    border-radius: 10px 0 0 10px;
}
.recent-job-table thead th:last-child {
    border-radius: 0 10px 10px 0;
}

.recent-job-table tbody tr {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.recent-job-table tbody td {
    padding: 10px 9px;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #000;
}

.recent-job-table tbody td:first-child {
    border-radius: 10px 0 0 10px;
}
.recent-job-table tbody td:last-child {
    border-radius: 0 10px 10px 0;
}

.job-info {
    /* display: flex; */
    /* align-items: center; */
    gap: 10px;
}

.job-info img {
    width: 100%;
    height: 69px;
    border-radius: 8px;
    object-fit: cover;
}

.status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status.active {
    background: #e6f4ea;
    color: #2e7d32;
    text-transform: uppercase;
}

.actions {
    display: flex;
    gap: 8px;
    justify-content: end;
    margin-top: 15px;
}

.actions button {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    background: #f1f2f4;
    cursor: pointer;
}

.actions button:hover {
    background: #ddd;
}

.actions i {
    font-size: 14px;
    color: #555;
}

.count {
    color: #888;
}


/*Recent Jobs End*/

/*Calendar Start*/

.calendar-container {
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    padding: 12px 19px 20px;
    border-radius: 10px;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#monthDisplay {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: unset;
    font-family: 'Outfit';
    color: #272725;
    line-height: 31px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.month-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    padding: 7px 8px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 11px;
    text-align: center;
}

.day-header {
    font-weight: bold;
    padding: 8px 0;
    border-radius: 4px;
    font-family: 'Outfit';
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}
.date-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 13px;
    background: #f1f1f1;
}

.date-item:hover {
    background: #eee;
}

.date-item.selected {
    background: #007bff;
    color: #fff;
    background-image: -webkit-linear-gradient(107deg, rgb(95, 3, 14) 0%, rgb(209, 14, 55) 100%);
}
.month-header button:hover {
    background-image: -webkit-linear-gradient(107deg, rgb(95, 3, 14) 0%, rgb(209, 14, 55) 100%);
    color: #fff;
}

/*Calendar End*/


/*Recent Apllication Start*/

.recent-application-main h2 {
    font-family: 'Outfit';
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 32px;
}

.recent-application-main ul li img {
    border-radius: 50%;
    width: 65px;
}

.recent-application-main ul li {
    font-size: 15px;
    font-family: 'Outfit';
    color: #202020;
    text-transform: uppercase;
    font-weight: 500;
}

.recent-application-main ul li span {
    display: block;
    font-size: 12px;
    font-family: 'Montserrat';
    text-transform: capitalize;
    color: #aaaaaa;
}

.recent-application-main ul {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 9px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    padding: 11px 20px;
}

.recent-application-main {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    padding: 15px 16px;
    margin-top: 16px;
}

/*Recent Application End*/


/*Application Page Start*/

.application-inner-heading h2 {
    font-size: 25px;
    font-family: 'Outfit';
    font-weight: bold;
    color: #272725;
    margin-bottom: 7px;
    line-height: 30px;
}

.application-inner-heading p {
    font-size: 13px;
    font-family: 'Montserrat';
    margin-bottom: unset;
}
.browsing-job-top {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    width: 100%;
    max-width: 100%;
    /* margin: 50px auto; */
    border-bottom: 1px solid #0000004a;
    padding-bottom: 17px;
    border-radius: unset;
    margin-bottom: 0px;
    margin-top: 26px;
}

/* Common Field Style */
.browsing-job-top .field {
    background: #eaeaea;
    border-radius: 50px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
}

/* Inputs */
.browsing-job-top input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 204px;
}

/* Select */
.browsing-job-top select {
    border: none;
    background: transparent;
    outline: none;
    font-size: 11px;
    cursor: pointer;
    appearance: none;
    padding: 1px 16px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #00000080;
    /* width: 244px; */
}

/* Select wrapper (arrow) */
.browsing-job-top .select-box {
    position: relative;
}

.browsing-job-top .select-box::after {
    content: "\f078";
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    right: 10px;
    font-size: 12px;
    pointer-events: none;
    color: #666;
}

/* Search Button */
.browsing-job-top .search-btn {
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    background-image: -webkit-linear-gradient(107deg, rgb(95, 3, 14) 0%, rgb(209, 14, 55) 100%);
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 14px;
    /* width: 240px; */
}

.browsing-job-top .search-btn:hover {
    opacity: 0.9;
}
.browsing-job-top input::placeholder {
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #00000080;
    font-weight: 500;
    font-size: 12px;
}
.application-page-box td.img-app-box {
    width: 97px;
}
.application-page-box .recent-job-table tbody td:first-child {
    border-radius: 10px 0 0 10px;
    width: 50px;
}
.application-page-box .actions {
    justify-content: center;
}
span.status.active.under-review {
    color: #90532b;
    background: #fdeac6;
}

span.status.active.red {
    color: #8e3838;
    background: #f6e2e2;
}
.browsing-job-top.application-pg-field select {
    width: 244px;
}

.browsing-job-top.application-pg-field .search-btn {
    width: 244px;
}
/*Application Page End*/


/*Manage Jpobs Page Start*/
.manage-jobs-page td.img-app-box {
    width: 247px;
}

.application-page-box.manage-jobs-page .application-inner-heading {
    border-bottom: 1px solid #0000004f;
    padding-bottom: 11px;
}

.application-page-box.manage-jobs-page .actions {
    justify-content: start;
}
.application-page-box.manage-jobs-page .recent-job-table {
    padding: 9px 0px;
}

/*Manage Jobs Page End*/


/*Find Candidates Page Start*/

.find-candidates-page .browsing-job-top input {
    width: 294px;
}
.field.select-box.experience-select select {
    width: 240px !important;
}
.browsing-job-top.browsing-job-top select {
    padding: 1px 20px;
}
ul.candidate-profile li p {
    font-family: 'Outfit';
    font-size: 14px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0px;
}

ul.candidate-profile li p span {
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: #0f0f0f9c;
}

ul.candidate-tag-list li {
    font-family: 'Montserrat';
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    background: #eaeaea;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 500;
}

ul.candidate-tag-list {
    display: flex;
    gap: 13px;
}

ul.candidate-profile li img {
    border-radius: 10px;
    width: 105px;
}

ul.candidate-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.candidate-box-main {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    padding: 17px 16px 24px;
    margin-top: 20px;
    position: relative;
}
a.cand-btn {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    padding: 15px 26px;
    color: #62030f;
    margin: unset;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    background: #e1cdcf;
}


.candidates-btns a.theme-btn {
    font-size: 14px;
    padding: 15px 36px;
}

.candidates-btns {
    display: flex;
    align-items: center;
    gap: 14px;
}
button.pencil-btn {
    width: 39px;
    height: 35px;
    border: none;
    border-radius: 5px;
    background: #f1f2f4;
    cursor: pointer;
    color: #555;
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 13px;
}

/*Find Candidates Page End*/

/*Company Profile Page Start*/
.profile-info-top ul li p {
    font-family: 'Outfit';
    color: #272725;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: unset;
}

.profile-info-top ul li p span {
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 500;
    text-transform: uppercase;
    color: #6a6868;
    display: block;
}

.profile-info-top ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.com-prodile-text h3 {
    font-family: 'Outfit';
    color: #272725;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.com-prodile-text p {
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #6a6868;
    display: block;
}

.company-profile-box {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    border-radius: 10px;
    padding: 30px 24px 20px;
    border: 1px solid #0000002b;
    height: 100%;
}

.company-profile-main-box .application-inner-heading {
    border-bottom: 1px solid #0000006b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.profile-info-top ul li p i {
    font-size: 14px;
}
.skills-container {
    width: 400px;
  }

  .skills-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Outfit';
    font-size: 20px;
    color: #272725;
  }

.skills-container  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: left;
  }

.skills-container   .tag {
    background: #eaeaea;
    padding: 10px 23px;
    border-radius: 20px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .com-prodile-text {margin-bottom: 24px;}

   .basic-info {
  padding: 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
  border: 1px solid #00000029;
}

.basic-info .title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 30px;
  font-family: 'Outfit';
  color: #272725;
  font-weight: bold;
}

.basic-info .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
}

.basic-info .info-item {
  display: flex;
  flex-direction: column;
}

.basic-info .label {
  font-size: 12px;
  color: #888;
  margin-bottom: 0px;
  font-family: 'Montserrat';
  font-weight: 500;
}

.basic-info .value {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
  font-family: 'Montserrat';
}
.basic-info .value a {
    color: #000;
}
.office-location-main h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 30px;
    font-family: 'Outfit';
    color: #272725;
    font-weight: bold;
}

.loca-icon  i {
    background: #e9e9e9;
    font-size: 18px;
}

.loca-icon {
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.office-location-text p {
    font-size: 16px;
    font-family: 'Outfit';
    margin-bottom: unset;
}

.office-location-text {
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 15px 21px;
    border: 1px solid #00000029;
    width: 100%;
    margin-bottom: 15px;
}

.office-location-main {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 15px 21px;
    border: 1px solid #00000029;
    width: 100%;
    margin-top: 20px;
}
/*Company Profile Page End*/


/*Setting page Start*/

.settings-main-box .application-inner-heading {
    border-bottom: 1px solid #0000006b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.settings-form-container {
    max-width: 100%;
    margin: auto;
    background: #fff;
    padding: 21px 18px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    border: 1px solid #00000029;
}

.settings-form-container h2 {
    margin-bottom: 19px;
    font-size: 19px;
    font-family: 'Outfit';
    font-weight: bold;
    color: #272725;
    margin-bottom: 7px;
    line-height: 30px;
}

.settings-form-input-group {
    margin-bottom: 15px;
}

.settings-form-label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #171717;
    font-family: 'Montserrat';
}

.settings-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.settings-form-section {
    margin-top: 30px;
}

.settings-form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #0000004d;
}

.settings-form-row-text {
    max-width: 70%;
}

.settings-form-row-text h4 {
    margin: 0;
    font-size: 14px;
    color: #171717;
    font-family: 'Montserrat';
    font-weight: 600;
    text-transform: uppercase;
}

.settings-form-row-text p {
    margin: 0px 0 0;
    font-size: 12px;
    color: #888;
    font-family: 'Montserrat';
}

.settings-form-toggle {
    display: flex;
    gap: 5px;
}

.settings-form-toggle button {
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    width: 80px;
}

.settings-form-off {
    background: #e5e5e5;
    color: #555;
}

.settings-form-on {
    background: -webkit-linear-gradient( 107deg, rgb(95,3,14) 0%, rgb(209,14,55) 100%);
    color: white;
}

/*Setting Page end*/


/*Dashboard Main Page Css End*/
