@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: var(--secondary-color);
}

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: uppercase;
    font-weight: bold;
}

.user-profile-info h6 span {
    font-size: 11px;
    font-family: 'Montserrat';
    font-weight: 400;
}
/*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: 9px;
}
.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;
}



/* Profile Box Css Start */

.home-profile-box {
    background: #fff;
    border-radius: 10px;
    overflow: visible;
    margin: 0;
    height: 100%;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.profile-header-bg {
    background: url('../images/bg-shap.jpg');
    background-size: cover;
    background-position: center;
    height: 140px;
    border-radius: 10px 10px 0 0;
}

.profile-content {
    padding: 0 15px 3px 15px;
    position: relative;
}

.profile-img-container {
    margin-top: -50px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
}

.profile-img-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0px;
    border-bottom: 1px solid #00000059;
    padding-bottom: 21px;
}

.profile-text h3 {
    font-size: 24px;
    color: #272725;
    margin: 0;
    line-height: 1.2;
    font-family: "Outfit", sans-serif;
    font-weight: bold;
}

.profile-text p {
    font-size: 11px;
    color: #999;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
}

.profile-actions {
    display: flex;
    gap: 0;
    align-items: center;
}

.icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #00000066;
}

.edit-btn {
    background: #f0f0f0;
    padding: 17px 27px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #00000066;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.icon-btn:hover,
.edit-btn:hover {
    background: #000;
    color: #fff;
}

.profile-divider {
    border-top: 1px solid #eee;
    margin: 10px 0;
    /* Full width divide */
}

.experience-main h2 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Outfit';
    color: #272725;
    margin-bottom: 10px;
    line-height: 35px;
}

.experience-info {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid #0000005c;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.experience-text h2 {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: unset;
}

.experience-text p {
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 24px;
}

.experience-text p span {
    display: block;
}

.experience-logo img {
    background: #e9e2f4;
    width: 66px;
    height: 64px;
    object-fit: contain;
    padding: 15px 13px;
    border-radius: 50%;
}
.experience-logo.logo-2-exp img {
    background: #ffe9e0;
}
.experience-main {
    margin-top: 19px;
}
.experience-logo.logo-3-exp img {
    padding: 15px 22px;
    background: #f5e6e9;
}
/* Profile Box Css End */


/*job Recommendations Start*/

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 17px 15px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  position: relative;
}

.job-image img {
  width: 230px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
}

.job-content {
  flex: 1;
}

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

.job-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  font-family: 'Outfit';
  margin-bottom: 0px;
}

.bookmark {
  background: #f1e6e7;
  border: none;
  color: #980923;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.job-desc {
  font-size: 13px;
  color: #777;
  margin: 0px 0 12px;
  line-height: 1.5;
  font-family: 'Montserrat';
  width: 84%;
  margin-bottom: 0px;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  font-size: 13px;
  color: #555;
  margin-bottom: 0px;
}

.job-info i {
  color: #980923;
  margin-right: 5px;
}

.job-footer {
  display: flex;
  justify-content: right;
  font-size: 12px;
  color: #999;
  font-family: 'Montserrat';
  gap: 20px;
}

.remote {
  color: #bbb;
}
.job-img-content-flex {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-bottom: 17px;
}

.job-info span {
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #000;
}
.job-recom-heading h2 {
    font-size: 26px;
    font-weight: bold;
    color: #272725;
    font-family: 'Outfit';
    margin-bottom: 0px;
}
.job-info-tags-main {
    display: flex;
    justify-content: space-between;
}
/*job Recommendations End*/


/*jobs Page Start*/


/* Container */
.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: 19px;
    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;
}

/* 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;
}

.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;
}

.field.job-title-field input {
    width: 277px;
}


.job-recom-heading p {
    font-size: 13px;
    font-family: 'Montserrat';
    margin-top: -6px;
}
a.job-btn {
    font-family: 'Montserrat';
    font-size: 13px;
    text-transform: uppercase;
    color: #000000b5;
    padding: 12px 18px;
    border: 1px solid #00000059;
    border-radius: 30px;
    background: #eaeaea;
    font-weight: 500;
    position: absolute;
    right: 15px;
    bottom: 10px;
}
.jobs-page-msain .job-info-tags-main {
    justify-content: unset;
    gap: 13px;
}
/*Jobs Page End*/


/*Application Page Start*/

.application-table{
    width: 100%;
    margin: 5px auto;
    border-top: 1px solid #0000003b;
}
.application-table table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 12px;
}

.application-table thead tr{
    background:#e9edf2;
}

.application-table thead th{
    padding:14px;
    font-size:12px;
    text-align:left;
    color: #000;
    font-weight:600;
    background: #e8e8e8;
    font-family: 'Outfit';
}

.application-table thead th:first-child,
.application-table tbody td:first-child{
    width:40px;
}

.application-table thead th:nth-child(2), .application-table tbody td:nth-child(2) {
    width: 350px;
    padding-left: 0;
}
.application-table thead th:last-child, .application-table tbody td:last-child {
    text-align: center;
}

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

.application-table tbody tr{
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,0.04);
    transition:0.3s;
}

.application-table tbody tr:hover{
    transform:translateY(-2px);
}

.application-table tbody td{
    padding:18px 14px;
    font-size:14px;
    vertical-align:middle;
    font-family: 'Montserrat';
    color: #000;
}

.application-table tbody tr td:first-child{
    border-radius:12px 0 0 12px;
}
.application-table tbody tr td:last-child{
    border-radius:0 12px 12px 0;
}

.application-table .job-title{
    font-weight: 500;
    color: #000;
}

.application-table .company,
.application-table .date{
    color: #000;
    font-weight: 500;
}

.application-table .status{
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    display:inline-block;
}

.application-table .interview{
    background:#e6f4ea;
    color:#2e7d32;
}

.application-table .rejected{
    background:#fde8e8;
    color:#c62828;
}

.application-table .review{
    background:#fff3e0;
    color:#ef6c00;
}

.application-table .actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.application-table .action-btn{
    width:36px;
    height:36px;
    background:#f1f3f6;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6b7280;
    cursor:pointer;
}

.application-table .action-btn:hover{
    background:#e2e6eb;
}

.application-table input[type="checkbox"]{
    width:16px;
    height:16px;
    cursor:pointer;
}
td.company {
    width: 270px;
}

td.date {
    width: 330px;
}

/*Application Page End*/


/*Profile Page Start*/

.profile-pg-img {
    text-align: center;
}
.profile-page-box .profile-info-section {
    justify-content: center;
    text-align: center;
    border-bottom: unset;
    padding-bottom: 3px;
}

.profile-pg-img .profile-img-container {
    margin-bottom: 0px;
}

.profile-page-box .profile-content p {
    font-size: 12px;
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 500;
}
.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;
  }
.profile-page-box .home-profile-box {
    padding-bottom: 50px;
}

.profile-pg-top-main .job-recom-heading h2 {
    line-height: 38px;
    margin-bottom: 4px;
}

.profile-pg-top-main  .job-recom-heading {
    border-bottom: 1px solid #0000005e;
    margin-bottom: 20px;
}
 .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);
}

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

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

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

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

.value {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 0;
  font-family: 'Montserrat';
}

.work-experience-main {
    margin-top: 17px;
    background: #fff;
    padding: 11px 20px;
    border-radius: 10px;
}

.work-experience-main .experience-main {
    margin-top: unset;
}

.work-experience-main  .experience-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.work-experience-main .experience-text p {
    font-size: 12px;
}
.work-experience-main  .experience-text h2 span {
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 24px;
    font-size: 12px;
    display: block;
}
.work-experience-box {
    border: 1px solid #0000005c;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 26px;
}

.work-experience-box .experience-info {
    border: unset;
    padding: unset;
    border-radius: unset;
    margin-bottom: unset;
}
p.para-text-work-exp {
    font-family: 'Montserrat';
    font-size: 13px;
    margin-top: 7px;
}
/*Profile Page End*/


/*Joint talent Pool Page Start*/
.joint-fields {
        max-width: 100%;
        margin: 30px auto 10px;
        background: #fff;
        padding: 20px;
        border-color: rgb(231, 231, 231);
        border-style: 1px solid rgb(255, 255, 255);
        border-radius: 10px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    }

    .joint-fields h3 {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        font-family: 'Outfit';
    }

    .joint-fields .field {
        margin-bottom: 15px;
    }

    .joint-fields input,
    .joint-fields select,
    .joint-fields textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #00000052;
        border-radius: 6px;
        font-size: 14px;
        color: #555;
        outline: none;
        transition: 0.2s;
        background: #fff;
        font-family: 'Montserrat';
        font-weight: 500;
    }

    .joint-fields input:focus,
    .joint-fields select:focus,
    .joint-fields textarea:focus {
        border-color: #999;
        background: #fff;
    }

    .joint-fields select {
        appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 18px;
    }

    /* Upload Box */
    .joint-fields .upload-box {
        border: 1px solid #00000052;
        border-radius: 6px;
        text-align: center;
        padding: 80px 20px;
        cursor: pointer;
        background: #fafafa;
        transition: 0.3s;
        width: 100%;
        text-align: center;
    }

    .joint-fields .upload-box:hover {
        border-color: #999;
        background: #fff;
    }

    .joint-fields .upload-box i {
        font-size: 28px;
        color: #888;
        display: block;
        margin-bottom: 10px;
        margin: 0 auto;
    }

    .joint-fields .upload-box span {
        font-size: 14px;
        color: #777;
        font-family: 'Montserrat';
        font-weight: 600;
        text-transform: capitalize;
    }

    .joint-fields input[type="file"] {
        display: none;
    }
  .join-page-main .job-recom-heading {
    border-bottom: 1px solid #00000069;
}
.visibility-radio {
    width: 100%;
    background: #fff;
    padding: 20px;
    margin: 30px auto 10px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
    height: 83vh;
}

.visibility-radio h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: 'Outfit';
}

.visibility-radio .option {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 12px 19px;
    border-radius: 6px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.visibility-radio .option:hover {
    background: #e9e9e9;
}

.visibility-radio input[type="radio"] {
    display: none;
}

.visibility-radio .radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.visibility-radio input[type="radio"]:checked + .radio-custom::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #8f0024;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.visibility-radio input[type="radio"]:checked + .radio-custom {
    border-color: #8f0024;
}

.visibility-radio .text {
    display: flex;
    flex-direction: column;
}

.visibility-radio .text strong {
    font-size: 14px;
    color: #121111;
    font-family: 'Outfit';
}

.visibility-radio .text span {
    font-size: 12px;
    color: #959595;
    font-family: 'Montserrat';
    font-weight: 600;
}
.joint-btn {
    text-align: center;
    margin-top: 40px;
}
/*Joint talent Pool Page End*/

/*Dashboard Main Page Css End*/
