

/*@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');



:root {
  --body-font: 'Josefin Sans', sans-serif;
  --heading-font: 'Josefin Sans', sans-serif;
  --theme-color: #6C2BD9;
  --theme-bg-light: #fee7e736;
  --body-text-color: #757F95;
  --color-white: #FFFFFF;
  --color-dark: #000;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --transition: all .5s ease-in-out;
  --footer-bg: #fee7e736;
  --footer-text-color: #fff;
 /* --footer-text-color: #66789C;*/
}


/* ===================
3. General css
====================== */

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

* {
  scroll-behavior: inherit !important;
}

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

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

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

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

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

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

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

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}



/* ===================
4. Preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader{
  position: absolute;
  text-align: center;
  width: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--theme-color);
  margin: 35px 10px;
}

.loader span:nth-child(1){
  animation: loader-bounce 1s ease-in-out infinite;
}

.loader span:nth-child(2){
  animation: loader-bounce 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3){
  animation: loader-bounce 1s ease-in-out 0.66s infinite;
}

@keyframes loader-bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}




/* ===================
5. Theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

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

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: var(--theme-bg-light);
}



/* ===================
6. Site title css
====================== */
.site-heading {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
/*.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-color);
  position: relative;
  padding-left: 4px;
}

.site-title-tagline::after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  border-radius: 50px;
  height: 18px;
  width: 100%;
  left: 0;
  bottom: -7px;
  opacity: 0.1;
}*/

.site-title-tagline {
    display: inline-flex;
    align-items: start;
    justify-content: center;
    padding: 7px 10px;
    gap: 8px;
    border-radius: 50px;
    background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
    color: #fff;
    text-transform: uppercase;
    line-height: 12px;
    letter-spacing: 0px;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(255 250 250);
    z-index: 1;
}


.site-title-tagline i{
     font-size: 11px;
    
}

.site-title-tagline::before{
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,.25);
    transform: skewX(-25deg);
    transition: .7s;
}

.site-title-tagline:hover::before{
    left: 130%;
}

.site-title-tagline::after{
    display: none;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 33px;
    /* color: var(--color-dark); */
    margin-top: 15px;
    margin-bottom: 0;
}

.site-title .black{
    color:#000;
}

.site-title .red {
    /* color: #d4030e; */
    background: linear-gradient(90deg, #ff1a80, #c300ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.site-heading p {
  margin-top: 5px;
  font-size: 19px;
  text-transform: capitalize;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: var(--theme-color);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

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

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

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

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

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

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


@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
7. Margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-50 {
  padding:50px 0;
}


.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}



/* ===================
8. Theme button
====================== */

.theme-btn {
    font-size: 14px;
    color: var(--color-white);
    padding: 6px 10px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: 0 3px 24px #6c51e426;
    z-index: 1;
}

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

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span{
  margin-right: 5px;
}

.theme-btn2 {
background: #ffffff;
    color: #d4030e;
    box-shadow: none;
    border: 1px solid #d4030e;
}

.theme-btn2::before {
  background: #8e58e9d9;
}

.theme-btn2:hover {
  color: var(--color-white);
}




/* ===================
9. Scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 25px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background: var(--theme-color);
  cursor: pointer;
width: 38px;
    height: 38px;
    font-size: 20px;
    line-height: 40px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}


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




/* ===================
10. Nav menu css
====================== */

.main {
/*  margin-top: -7rem;*/
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: capitalize;
  }

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

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 8px;
    border: none;
    left: -15px;
    border-radius: 12px;
    background: var(--color-white);
    width: 220px;
    box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(224, 232, 252, .5);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
         font-size: 14px;
        font-weight: 500;
        padding: 5px 0px 5px
    color: var(--color-dark);
    position: relative;
    text-transform: capitalize;
    transition: var(--transition);
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 30px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 22.5px;
    width: 0;
    height: 4px;
    border-radius: 10px;
    background: var(--theme-color);
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    width: 10px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

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

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

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

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

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

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-left: 30px;
  }

  .header-nav-link {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .header-nav-link.search-box-outer {
    font-size: 18px;
  }

  #main_nav {
    justify-content: flex-end;
  }

}


/*bootstrap nav*/
.navbar {
  background: transparent;
    padding-top: 6px;
    z-index: 999;
    padding-bottom: 6px;
}

.navbar.fixed-top {
  background: var(--color-white);
  padding-top: 6px;
  padding-bottom:6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

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

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

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

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

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

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

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

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

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

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

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

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

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

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

.navbar .header-btn {
  display: flex;
  gap: 10px;
}

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

@media (min-width: 992px) {
  .navbar {
    position: relative;
  }

  .navbar-expand-lg .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    margin: 0;
  }
}

@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}


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

@media all and (max-width: 991px) {
.navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    padding-top: 0!important;
    padding-bottom: 0!important;
    background: #fff;
}

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

.navbar-brand {
    padding-left: 10px;
    width: 80%;
}
.header-search-btn {
    height: 29px !important;
    padding: 0px 8px !important;
}
.mobile_border{
        border-top: 1px solid #e9e9e9!important;
    padding-top: 8px!important;
}
  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: var(--color-white);
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

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

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

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: var(--color-dark);
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

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

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 500;
  }

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

  .navbar.fixed-top .navbar-toggler-btn-icon {
    color: var(--color-dark);
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .header-nav-right {
    display: none;
  }

}

/* Category Slider Dots */
.category-slider .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 25px;
}

.category-slider .owl-dot {
    display: inline-block !important;
    margin: 0 4px;
    background: transparent !important;
    border: 0 !important;
}

.category-slider .owl-dot span {
    display: block !important;
    width: 9px !important;
    height: 9px !important;
    margin: 0 !important;
    border-radius: 50% !important;

    background: linear-gradient(
        115deg,
        #ed8d00 0%,
        #e73891 28%,
        #c000d8 55%,
        #5f17db 78%,
        #4f05cc 100%
    ) !important;
}

/* Active dot */
.category-slider .owl-dot.active span {
    width: 25px !important;
    border-radius: 10px !important;

    background: linear-gradient(
        115deg,
        #ed8d00 0%,
        #e73891 28%,
        #c000d8 55%,
        #5f17db 78%,
        #4f05cc 100%
    ) !important;
}
/* ===========================
11. Multi level dropdown menu
============================== */

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

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

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

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

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

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

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }

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

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

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



.logo_area {
      background: #fff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px #b8b8b842 !important;
    padding: 15px 20px;
    margin-top: -50px;
    z-index: 1;
    position: relative;
    border: 1px solid #e6d5fb;
}




.category-slider {
    padding: 10px 5px 20px;
}

.category-slider .category-slide {
    padding: 8px 6px;
}

.category-slider .category-item {
    position: relative;
    min-height: 92px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #eee6fa;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 7px 22px rgba(108, 43, 216, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}


.category-slider .category-item::after {
    content: "";
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    right: -30px;
    bottom: -35px;
    background: rgba(108, 43, 216, 0.055);
}

/* ===================
12. Hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
    padding-top: 70px;
    padding-bottom: 100px;
    background-image: url(../img/820b26e5-6e69-4be5-b53c-c89dec88b868.png);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
}

.hero-single .hero-content .hero-title {
  color: var(--color-dark);
font-size: 42px;
    margin: 10px 0;
    font-weight: 700;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  background: linear-gradient(90deg, #ff1a80, #c300ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-single .hero-content .hero-title span::after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  height: 25px;
    width: 13%;
    left: 256px;
    top: 130px;
  opacity: 0.1;
}

.hero-single .hero-content .hero-sub-title {
  color: var(--theme-color);
  font-size: 16px;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
}

.hero-single .hero-content p {
  color: var(--color-dark);
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-info-box{
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-info-img{
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.hero-info-img span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  overflow: hidden;
  margin-left: -10px;
}

.hero-info-img span img{
  border-radius: 50%;
}

.hero-info-content h6{
  font-weight: 600;
}
 
.hero-info-content h6 span{
  color: var(--theme-color);
  font-weight: 700;
}

.hero-single .hero-img .bneerimg {
    position: absolute;
    bottom: 0;
    width: 40%;
    z-index: 2;
    top: 59px;
    height: 77%;
    object-fit: cover;
    object-position: top;
}

.hero-single .hero-img-shape{
  position: absolute;
  top: 100px;
  margin-left: 100px;
  width: 70%;
  z-index: 1;
}
.hero-single .hero-img-shape img{
  position: absolute;
  bottom: 0;
  width: 46%;
  z-index: 2;
  top:0;
}


.hero-shape img{
  position: absolute;
  
}

.hero-shape .hero-shape-1{
     left: 0;
    bottom: 0;
    z-index: -1;
    top: 0;
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.hero-shape .hero-shape-2{
  left: 40%;
  top: 20%;
  width: 100px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-3{
  right: 10%;
  top: 20%;
  width: 50px;
  opacity: .2;
  z-index: -1;
}

.hero-shape .hero-shape-4{
  left: 22%;
  top: 0;
  width: 120px;
  opacity: .1;
  z-index: -1;
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
}

@media all and (max-width: 991px) {
  .hero-single{
    padding-top: 60px;
  }

  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-img {
    display: none;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px;
  }

.search-form-wrapper {
    padding: 0px 16px !important;
}

  .search-form-wrapper .theme-btn{
    width: 100%;
  }

}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 14px;
  }
  
  .site-heading {
    margin-bottom: 25px;
  }
  
  .site-title-tagline {
    padding: 3px 12px;
    gap:5px;
    font-size: 10px;
  }
  .site-title-tagline i {
    font-size: 8px;
}
  
  .site-title {
    font-size: 24px;
        margin-top: 12px;
}

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

  .hero-shape .hero-shape-2{
    left: 10%;
  }


  .search-form-wrapper .theme-btn{
    margin-top: 5px;
  }
}



/* =====================
13. Play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}




/* ===================
14. Search css
====================== */

.search-form{
  position: relative;
}

.search-form-wrapper {
    background: var(--color-white);
    border-radius: 8px;
    padding: 6px 20px 5px 15px;
    box-shadow: 0px 10px 20px rgb(10 42 105 / 7%);
}



.search-form .form-group-icon{
  position: relative;
}

.search-form .form-group-icon i{
  position: absolute;
  left: 10px;
  top: 10px;
}

.search-form .form-control {
    padding: 7px 10px 7px 35px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
    outline: none;
    box-shadow: 0px 4px 7px #96969624;
    border: 1px solid #c0c0c03d;
}
.search-form .nice-select {
    width: 100%;
    border-radius: 0px;
    padding-left: 30px;
    font-size: 14px;
    border: none;
    outline: none;
}

.search-form .nice-select:after{
  height: 8px;
  width: 8px;
  margin-top: -6px;
}

.search-form .nice-select .list{
  width: 100%;
  background: var(--color-white);
  border-radius: 12px;
  border: none;
  box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
}

.search-form .nice-select .option.focus,
.search-form .nice-select .option.selected.focus,
.search-form .nice-select .option:hover{
  background: #E0EEFF;
  color: var(--theme-color);
}

.search-form-wrapper .theme-btn {
    padding: 5px 7px;
    font-size: 13px;
}

.popular-search{
  margin-top: 30px;
}

.popular-search span{
  font-weight: 600;
  color: var(--color-dark);
  margin-right: 10px;
}

.popular-search a{
  color: #4F5E64;
}

.popular-search a:hover{
  color: var(--theme-color);
}

.search-area{
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.search-area .nice-select,
.search-area .form-control{
  border: 1px solid #ced4da;
  border-radius: 10px;
}

.search-area .search-form-wrapper{
  padding: 20px 30px;
}




.search-area label{
  margin-bottom: 5px;
  color: var(--color-dark);
}



/* ===================
15. Category css
====================== */


.category-area {
    position: relative;
    overflow: hidden;
}

.category-slider {
    padding: 20px 8px 35px;
}

.category-slider .category-slide {
    padding: 15px 10px 25px;
}

.category-slider .category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5px 8px 18px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    text-align: center;
    text-decoration: none;
    transition: .35s ease;
}


/* icon */

.category-slider .category-icon {
    position: relative;
    z-index: 2;

    width: 74px;
    height: 74px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: normal;

    color: #6c2bd8;
    background: #f7f1ff;

    border-radius: 22px;

    font-size: 28px;

    box-shadow: 8px 8px 0 #eadcff;

    transition: .35s ease;
}

.category-slider .category-icon i {
    color: #6c2bd8;
    font-size: 29px;
    transition: .35s ease;
}


/* pink corner */

.category-slider .category-icon::after {
    content: "";

    position: absolute;

    top: -6px;
    right: -6px;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: #ec149a;

    border: 4px solid #fff;
}


/* company/content */

.category-slider .category-content {
    position: relative;
    z-index: 3;
}

.category-slider .category-content h6 {
    margin: 0 0 6px;

    color: #19172e;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;

    transition: .3s ease;
}

.category-slider .category-content p {
    margin: 0;

    color: #898294;

    font-size: 15px;
    font-weight: 500;
}


/* little gradient line */

.category-slider .category-content::after {
    content: "";

    display: block;

    width: 32px;
    height: 3px;

    margin: 10px auto 0;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #ec149a,
        #6c2bd8
    );

    transition: .35s ease;
}


/* hover */

.category-slider .category-item:hover {
    transform: translateY(-7px);
}

.category-slider .category-item:hover .category-icon {
    background: linear-gradient(
        135deg,
        #ec149a,
        #6c2bd8
    );

    box-shadow: 8px 8px 0 #e8d6ff;

    transform: translateY(-3px);
}

.category-slider .category-item:hover .category-icon i {
    color: #fff;
    transform: scale(1.1);
}

.category-slider .category-item:hover h6 {
    color: #6c2bd8;
}

.category-slider .category-item:hover .category-content::after {
    width: 50px;
}


/* owl dots */

.category-slider .owl-dots {
    margin-top: 15px;
}

.category-slider .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 4px !important;
    background: #d9cbed !important;
}

.category-slider .owl-dot.active span {
    width: 25px !important;
    border-radius: 10px !important;

    background: linear-gradient(
        90deg,
        #ec149a,
        #6c2bd8
    ) !important;
}


/* mobile */

@media (max-width: 575px) {

    .category-slider {
        padding: 15px 3px 25px;
    }

    .category-slider .category-slide {
        padding: 10px 5px 20px;
    }

    .category-slider .category-icon {
        width: 62px;
        height: 62px;

        margin-bottom: 16px;

        border-radius: 18px;

        font-size: 23px;

        box-shadow: 6px 6px 0 #eadcff;
    }

    .category-slider .category-icon i {
        font-size: 23px;
    }

    .category-slider .category-content h6 {
        font-size: 13px;
    }

    .category-slider .category-content p {
        font-size: 10px;
    }
}

/* ===================
16. Career css
====================== */

.career-area{
  position: relative;
}

.career-img img{
  border-radius: 15px;
}

.career-img-3{
  margin-top: 24px;
}

.career-right{
  margin-left: 20px;
}

.career-list{
  margin-top: 20px;
  margin-bottom: 35px;
}

.career-list li{
  margin-bottom: 10px;
  font-weight: 500;
}

.career-list li i{
  color: var(--theme-color);
  margin-right: 5px;
}

@media all and (max-width: 991px) {
  .career-right {
    margin-top: 60px;
  }
}

@media all and (max-width: 767px) {
  .career-img-1{
    margin-bottom: 24px;
  }
}




/* ===================
17. Job css
====================== */

.job-area{
  position: relative;
}

.job-item{
  background: var(--color-white);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
}

.job-item:hover{
  transform: translateY(-7px);
}
.job-bookmark {
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 31px;
    background: rgb(255 255 255 / 10%);
    right: 15px;
    top: 15px;
    border: 1px solid #d4030e;
    font-size: 16px;
    text-align: center;
    color: var(--theme-color);
    border-radius: 50px;
}

.job-bookmark:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.job-top{
  display: flex;
  gap: 15px;
  margin-bottom: 3px;
}

.job-title a:hover{
  color: var(--theme-color);
}

.job-employer {
    margin-top: 0px;
    color: #d4030e;
    font-weight: 500;
    font-size: 13px;
}
.job-employer:hover{
  color: var(--theme-color);
}

.job-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
}

.job-img img {
    width: 100%;
    border-radius: 7px;
    border: 1px solid #efe3e5;
    height: 43px;
    object-fit: cover;
    object-position: center;
}
.job-title h5 {
    font-size: 16px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.job-info-list li {
    display: inline-block;
    margin: 0 9px 1px 0;
    font-size: 14px;
}

.job-skill{
  margin-top: 5px;
}

.job-skill a {
    background: rgb(255 255 255 / 10%);
    border-radius: 30px;
    padding: 2px 10px;
    line-height: 20px;
    color: #929292;
     font-size: 13px;
    border: 1px solid #c9c8c86e;
    box-shadow: 0px 1px 4px #cfcfcf38;
}

.job-skill a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.job-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgb(0 0 0 / 10%);
}

.job-salary-amount {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
}

.job-salary-type{
  font-size: 15px;
}

.job-bottom .theme-btn {
    padding: 3px 11px;
    border-radius: 6px;
     font-size: 13px;
}

/* job grid */
.job-grid .job-item{
  box-shadow: var(--box-shadow);
}

.job-grid2 .search-form-wrapper,
.job-grid2 .job-sort,
.job-grid2 .job-sidebar{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-grid2 .job-item{
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-grid2 .job-img{
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-grid2 .job-img img{
  border-radius: 50%;
}

.job-grid2 .job-top{
  margin-bottom: 15px;
}

/* job list */
.job-list .job-item{
  box-shadow: var(--box-shadow);
}

.job-list2 .search-form-wrapper,
.job-list2 .job-sort,
.job-list2 .job-sidebar{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

.job-list2 .job-item{
  display: flex;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 15px;
}

.job-list2 .job-img{
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.job-list2 .job-img img{
  border-radius: 50%;
}

.job-list2 .job-top{
  margin-bottom: 15px;
}

@media all and (max-width: 991px) {
  .job-list2 .job-item {
    flex-direction: column;
    gap: 5px;
  }
}



/* ===================
18. Job sidebar
=================== */
.job-sidebar {
    background: #ffffffd6;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 11px #f0f0f0d1;
    border: 1px solid #edecec;
}
.job-sidebar-item {
    margin-bottom: 15px;
}

.job-sidebar-item:last-child{
  margin-bottom: 0;
}

.job-sidebar-title {
    font-size: 16px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 8px;
    color: #d4030e;
    text-transform: capitalize;
}
/* Main border */
.job-sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

/* Highlight line */
.job-sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 2px;
    background: #d4030e;
    border-radius: 5px;
}
.job-sidebar .form-check-input{
  margin-top: 4px;
  box-shadow: none;
  border-color: var(--color-dark);
}

.job-sidebar .form-check-input:focus{
  border-color: var(--theme-color);
}

.job-sidebar .form-check-label{
  width: 100%;
  color: var(--color-dark);
}

.job-sidebar .form-check-label span{
  float: right;
}

.job-sidebar .form-check {
    margin: 3px 0;
     font-size: 13px;
}



/* ===================
19. Job sort
=================== */
.job-sort {


  background: var(--color-white);
  margin-bottom: 25px;
  padding: 10px 10px 10px 15px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.job-sort-list-grid a {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #CED4DA;
  color: var(--color-dark);
}

.job-sort-list-grid a.active {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.job-sort .nice-select {
    width: 100%;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    padding-left: 8px;
    font-size: 13px;
    border-color: #CED4DA;
    color: var(--color-dark);
}
.job-sort .form-control:focus,
.job-sort .nice-select:focus {
  border-color: var(--theme-color);
}

.job-sort .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.job-sort .nice-select .option.focus,
.job-sort .nice-select .option.selected.focus,
.job-sort .nice-select .option:hover {
  background: #F6F6F6;
  color: var(--theme-color);
  border-radius: 8px;
}

.job-sort .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -6px;
  right: 15px;
}

@media all and (max-width: 767px) {
.job-sort {
    flex-direction: column;
    gap: 7px;
    padding-top: 11px;
    padding-bottom: 13px;
    margin-bottom: 10px;
    margin-top: 40px;
}

  .job-sort-box{

  }

}



/* ===================
20. Job single
=================== */
.job-single {
    position: relative;
    background: #F8F9FC;
}

 .job-single-img img{
  border-radius: 15px;
 }

 .job-single-title{
  margin-top: 25px;
  margin-bottom: 15px;
 }

 .job-single-info{
  margin-top: 25px;
 }

.job-single-info h5 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #d4030e;
}

 .job-single-info ul li{
  margin: 8px 0;
  position: relative;
 }

 .job-single-info ul li i{
  color: var(--theme-color);
  margin-right: 5px;
 }

 .job-location h5{
  margin-top: 35px;
  margin-bottom: 20px;
 }

 .job-location iframe{
  width: 100%;
  height: 300px;
  border-radius: 15px;
 }

 .job-single-social-share{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
 }

 .job-single-social-share span{
  color: var(--color-dark);
  font-weight: 600;
  margin-right: 10px;
 }

 .job-single-social-share a{
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50px;
  background: rgba(57, 101, 245, .1);
  color: var(--theme-color);
  margin: 0 2px;
 }

 .job-single-social-share a:hover{
  background: var(--theme-color);
  color: var(--color-white);
 }

.job-single .job-sidebar {
    padding: 15px;
}

 .job-single-employer{
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
 }

 .job-single-employer img{
  width: 60px;
  height: 60px;
  border-radius: 15px;
 }

 .job-single-employer-info a{
  color: var(--theme-color) !important;
 }

 .job-single-heading-btns{
  margin-top: 20px;
 }

 .job-single-heading-btns .theme-btn2{
  margin-left: 8px;
 }
 
 .theme-btn2 {
    background: #ffffff;
    color: #6c2bd9;
    box-shadow: none;
    border: 1px solid #8e58e9d9;
}

.job-single-list {
    margin-top: 20px;
    padding-top: 0px;
  
}

.job-single-list h5 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #d4030e;
}

 .job-single-list li{
  display: flex;
  gap: 15px;
  margin: 15px 0;
 }

 .job-single-list-icon{
  width: 30px;
  line-height: 38px;
  font-size: 25px;
  color: var(--theme-color);
 }

 .job-single-list-info h6{
  font-weight: 600;
  margin-bottom: 5px;
 }

 .job-employer-contact{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .05);
 }

 .job-employer-contact h5{
  margin-bottom: 15px;
 }

 .job-employer-contact li{
  margin: 8px 0;
 }

 .job-employer-contact li i{
  width: 20px;
 }

 .related-job{
  margin-top: 0px;
 }

.related-job h4 {
    margin-bottom: 10px;
    margin-top: 15px;
}
 .related-job .job-item{
  box-shadow: var(--box-shadow);
}

.job-header {
    width: 100%;
    padding: 0px 0 15px;
}

.job-header h2 {
    margin: 0 0 0px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    color: #172344;
}
.job-header_com{
    font-size: 13px;
    color: #b1b1b1;
    margin-bottom: 2px;
}

/* Meta Row */
.job-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 15px;
}


.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
     font-size: 13px;
    font-weight: 400;
    color: #5c5c5c;
}


/* Icon Box */
.meta-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

     font-size: 13px;
}


/* Icon Colors */
.category-icon {
     color: #ffffff;
    /* background: #fee7e78a; */
    background: linear-gradient(90deg, #ff1a80, #c300ba);
}

.marketing-icon {
    color: #8666dc;
    background: #f2edff;
}

.fulltime-icon {
    color: #16a878;
    background: #e9f8f2;
}

.dayshift-icon {
    color: #f28b18;
    background: #fff2e2;
}


/* Description */
.job-description {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;

    color: #5e6880;
}


/* Responsive */
@media (max-width: 768px) {

    .job-header h1 {
        font-size: 18px;
    }

    .job-meta {
        gap: 14px;
    }

    .job-description br {
        display: none;
    }
}

/* =====================
21. Price range slider
===================== */

.price-range-slider{
  margin-bottom: 50px;
}

.price-range-slider .price-range-info{
  margin-bottom: 20px;
}

.priceRange {
  background: transparent;
  border: none;
  font-weight: 800;
  outline: none;
  color: var(--theme-color);
}

.price-range-slider label {
  color: var(--color-dark);
  font-weight: 500;
}

.price-range-slider .ui-slider-handle {
  top: -0.36em !important;
  border-radius: 50px;
  background: var(--color-white) !important;
  border: 4px solid var(--theme-color) !important;
  width: 1.1em;
  height: 1.1em;
  outline: none;
}

.price-range-slider .ui-widget.ui-widget-content {
  background: #E6E9EC;
  border: none;
  border-radius: 50px;
  padding: 0;
  height: 0.4em;
}

.price-range-slider .ui-widget-header {
  background: var(--theme-color);
}


/* ===================
22. Employer css
====================== */
.employer-area{
  position: relative;
    background: #fcf9ff;
    overflow: hidden;
}



.employer-area .employer-item {
    max-width: 260px;
    margin: 0 auto;
}

.employer-area .employer-item {
    position: relative;
    width: 100%;
    max-width: 240px;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 10px 5px 15px;
    transition: all 0.35s ease;
}

.employer-area .employer-item:hover {
    transform: translateY(-7px);
}

.employer-area .employer-img {
    position: relative;
    width: 115px;
    height: 115px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(108, 43, 216, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(108, 43, 216, 0.12),
        inset 0 0 0 7px #faf7ff;
    transition: all 0.35s ease;
}

.employer-area .employer-img::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(108, 43, 216, 0.35);
    border-top-color: #ec149a;
    border-right-color: #6c2bd8;
}

.employer-area .employer-img::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ec149a;
    top: 1px;
    right: 12px;
}

.employer-area .employer-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.employer-area .employer-item:hover .employer-img {
    transform: scale(1.06);
    border-color: #6c2bd8;
    box-shadow:
        0 15px 35px rgba(108, 43, 216, 0.20),
        inset 0 0 0 7px #faf7ff;
}

.employer-area .employer-content {
    text-align: center;
}

.employer-area .employer-content h5 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.employer-area .employer-content h5 a {
    color: #17172f;
    text-decoration: none;
}

.employer-area .employer-job {
    display: block;
    margin-bottom: 7px;
    color: #6c2bd8;
    font-size: 15px;
    font-weight: 600;
}

.employer-area .employer-job i {
    color: #ec149a;
    margin-right: 5px;
}

.employer-area .employer-content p {
    margin: 0;
    color: #77768b;
    font-size: 15px;
    font-weight: 500;
}

.employer-area .employer-content p i {
    color: #ec149a;
    margin-right: 5px;
}


@media (min-width: 1200px) {

    .employer-area .row.g-4 {
        display: flex !important;
        justify-content: center !important;
        gap: 0 !important;
        margin: 0 !important;
    }

    .employer-area .row.g-4 > .col-md-6.col-lg-4.col-xl-3 {
        flex: 0 0 23% !important;
        max-width: 23% !important;
        width: 23% !important;
        padding: 0 !important;
    }

    .employer-area .employer-item {
        width: 100% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 991px) {

    .employer-area .employer-item {
        max-width: 220px;
    }

    .employer-area .employer-img {
        width: 105px;
        height: 105px;
    }

    .employer-area .employer-img img {
        width: 63px;
        height: 63px;
    }
}


@media (max-width: 575px) {

    .employer-area .row.g-4 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 35px;
    }

    .employer-area .employer-item {
        max-width: 170px;
        padding: 5px 2px;
    }

    .employer-area .employer-img {
        width: 88px;
        height: 88px;
        margin-bottom: 19px;
    }

    .employer-area .employer-img::before {
        inset: -6px;
    }

    .employer-area .employer-img img {
        width: 52px;
        height: 52px;
    }

    .employer-area .employer-content h5 {
        font-size: 14px;
    }

    .employer-area .employer-job {
        font-size: 11px;
    }

    .employer-area .employer-content p {
        font-size: 11px;
    }
}

/* ======================
23. Employer single css 
=========================*/

.employer-single{
  position: relative;
}

.employer-heading{
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.employer-heading-content{
  display: flex;
  gap: 20px;
}

.employer-heading-content img{
  width: 160px;
  height: 160px;
  border-radius: 15px;
}

.employer-heading-list{
  margin-top: 5px;
}

.employer-heading-list li{
  display: inline-block;
  margin-right: 10px;
}

.employer-heading-list li i{
  margin-right: 5px;
}

.employer-heading-rate{
  margin-top: 8px;
}

.employer-heading-rate i{
  color: #F5BE3D;
}

.employer-heading-tag{
  margin-top: 15px;
}

.employer-heading-tag a{
  background: var(--theme-bg-light);
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.employer-heading-tag a:hover{
  color: var(--theme-color);
}

.employer-gallery-item{
  position: relative;
  margin-bottom: 25px;
}

.employer-gallery-item img{
  border-radius: 15px;
}

.employer-gallery-item .gallery-link{
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
  left: 50%;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-50%);
  z-index: 1;
}

.employer-gallery-item:hover .gallery-link{
  opacity: 1;
  visibility: visible;
}

.employer-single-job .job-item{
  box-shadow: var(--box-shadow);
}

.employer-single .job-sidebar{
  padding: 30px;
}

.employer-overview ul{
  margin-top: 25px;
  margin-bottom: 30px;
}

.employer-overview li {
  margin: 8px 0;
  font-weight: 500;
}

.employer-overview li span{
  float: right;
  font-weight: normal;
}

.employer-overview li a{
  color: var(--theme-color);
}

.employer-location-map{
  margin-top: 30px;
}

.employer-location-map iframe{
  border-radius: 15px;
  margin-top: 20px;
  width: 100%;
  height: 250px;
}

.employer-social{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.employer-social-link{
  margin-top: 18px;
}

.employer-social-link a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
  margin-right: 5px;
}

.employer-social-link a:hover{
  background: var(--color-dark);
  color: var(--color-white);
}

.employer-heading-with-img{
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.employer-single-img img{
  border-radius: 15px;
}

.employer-heading-with-img .employer-heading{
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .employer-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .employer-heading-tag a:first-child{
    margin-bottom: 15px;
  }

  .employer-heading-content{
    flex-direction: column;
  }
}




/* ===================
24. Candidate css 
====================== */
.candidate-item{
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  position: relative;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.candidate-item:hover{
  transform: translateY(-7px);
}

.candidate-bookmark{
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 37px;
  background: rgba(60, 101, 245, .1);
  right: 15px;
  top: 15px;
  font-size: 20px;
  text-align: center;
  color: var(--theme-color);
  border-radius: 50px;
}

.candidate-bookmark:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.candidate-bio{
  display: flex;
  align-items: center;
  gap: 14px;
}

.candidate-bio-content h5 a:hover{
  color: var(--theme-color);
}

.candidate-img{
  width: 95px;
}

.candidate-img img{
  border-radius: 50%;
}

.candidate-content p{
  margin-top: 15px;
}

.candidate-bio-rate i{
  font-size: 14px;
  color: #F5BE3D;
}

.candidate-bio-rate span{
  font-size: 14px;
  margin-left: 2px;
}

.candidate-skill{
  margin-top: 15px;
  margin-bottom: 20px;
}

.candidate-skill a{
  background: var(--theme-bg-light);
  padding: 2px 20px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
}

.candidate-skill a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.candidate-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.candidate-salary{
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 600;
}

.candidate-salary span{
  font-weight: normal;
  font-size: 15px;
  color: var(--body-text-color);
}

.candidate-bottom .theme-btn{
  padding: 6px 15px;
}

/* candidate grid */
.candidate-grid2 .candidate-item{
  flex-direction: column;
  box-shadow: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bio{
  flex-direction: column;
}

.candidate-grid2 .search-form-wrapper,
.candidate-grid2 .job-sidebar,
.candidate-grid2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bottom{
  justify-content: center;
}

/* candidate list */
.candidate-list2 .candidate-item{
  align-items: center;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  justify-content: space-between;
}

.candidate-list2 .candidate-img{
  width: 100px;
}

.candidate-list2 .candidate-img img{
  border-radius: 15px;
}

.candidate-list2 .search-form-wrapper,
.candidate-list2 .job-sidebar,
.candidate-list2 .job-sort{
 box-shadow: none;
 border: 1px solid rgba(0, 0, 0, .08);
}

@media all and (max-width: 767px) {
  .candidate-list2 .candidate-item {
    flex-direction: column;
    text-align: center;
  }

  .candidate-list2 .candidate-skill{
    padding: 20px 0;
  }

  .candidate-list2 .candidate-bio{
    flex-direction: column;
  }
}



/* ======================
25. Candidate single css 
======================== */
.candidate-single{
  position: relative;
}

.candidate-heading{
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.candidate-heading-content{
  display: flex;
  gap: 20px;
}

.candidate-heading-content img{
  width: 185px;
  height: 185px;
  border-radius: 15px;
}

.candidate-heading-list{
  margin-top: 5px;
}

.candidate-heading-list li{
  display: inline-block;
  margin-right: 10px;
}

.candidate-heading-list li i{
  margin-right: 5px;
}

.candidate-heading-rate{
  margin-top: 8px;
}

.candidate-heading-rate i{
  color: #F5BE3D;
}

.candidate-heading-tag{
  margin-top: 15px;
}

.candidate-heading-tag a{
  background: var(--theme-bg-light);
  padding: 2px 20px;
  margin-right: 8px;
  border-radius: 50px;
}

.candidate-heading-tag a:hover{
  color: var(--theme-color);
}

.candidate-heading-with-img{
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.candidate-single-img img{
  border-radius: 15px;
}

.candidate-heading-with-img .candidate-heading{
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
}

.candidate-skill-item{
  margin-bottom: 20px;
  position: relative;
}

.candidate-skill-item .skill-tag {
  margin-bottom: 10px;
  display: inline-block;
  color: var(--body-text-color);
  font-size: 15px;
  position: relative;
}

.candidate-skill-item .skill-box {
  width: 100%;
  height: 5px;
  background: #F1F1FA;
  border-radius: 50px;
  position: relative
}

.candidate-skill-item .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  background: var(--theme-color);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  width: 0;
}

.candidate-skill-item .skill-percentage {
  color: var(--body-text-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -35px;
}

.candidate-timeline-wrapper {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-timeline {
  margin-bottom: 50px;
  margin-left: 50px;
}

.candidate-timeline:last-child {
  margin-bottom: 0px;
}

.candidate-timeline-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 15px;
  border-radius: 50px;
  color: var(--theme-color);
  margin-left: 15px;
  background: rgba(60, 101, 245, .1);
}

.candidate-timeline-title {
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.candidate-timeline-title::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--theme-color);
  background: var(--color-white);
  border-radius: 50%;
  left: -50px;
  top: 3px;
}

.candidate-timeline-title::after {
  content: '';
  position: absolute;
  width: 22px;
  border-top: 3px solid var(--theme-color);
  left: -26px;
  top: 13px;
}

.candidate-timeline-sub-title {
  margin: 10px 0px;
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-color);
}

.candidate-timeline-discription p:last-child {
  margin-bottom: 0px;
}

.candidate-single .job-sidebar{
  padding: 35px;
}

.candidate-sidebar-btns a:first-child{
  margin-right: 8px;
}

.candidate-social{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.candidate-social-link{
  margin-top: 18px;
}

.candidate-social-link a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-color);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
  margin-right: 5px;
}

.candidate-social-link a:hover{
  background: var(--color-dark);
  color: var(--color-white);
}

@media all and (max-width: 767px) {
  .candidate-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .candidate-heading-tag a:first-child{
    margin-bottom: 15px;
  }

  .candidate-heading-content{
    flex-direction: column;
  }
}



/* ===================
26. Location css 
====================== */

.location-area{
  position: relative;
}

.location-item{
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 25px;
  background: var(--color-white);
  transition: var(--transition);
}

.location-item:hover{
  transform: translateY(-7px);
}

.location-img img{
  border-radius: 15px;
  width: 100%;
}

.location-content{
  padding-top: 10px;
}

.location-content h5{
  margin-bottom: 5px;
}

.location-content h5 a:hover{
  color: var(--theme-color);
}

.location-content-info{
  display: flex;
  gap: 15px;
  align-items: center;
}



/* ===================
27. Banner css 
====================== */

.banner-item {
  width: 100%;
  height: Auto;
  border-radius: 10px;
  position: relative;
}

.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

.banner-item img {
  border-radius: 10px;
  width: 100%;
}

.banner-item-content {
  position: absolute;
  top: 20px;
  right: 20px;
}

.banner-item-content h2 {
  color: var(--color-white);
}

.banner-item-content p {
  color: var(--color-white);
}

.banner-item-content a {
  padding: 6px 20px;
  color: var(--color-white);
  background: var(--theme-color);
  margin-top: 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.banner-item-content a:hover {
  background: var(--theme-color);
}

.banner-item2 .banner-item-content {
  top: unset;
  right: unset;
  left: 20px;
  bottom: 20px;
}

.banner-item3 .banner-item-content {
  top: unset;
  bottom: 20px;
}

@media all and (max-width: 991px) {
  .banner-item {
    margin-bottom: 25px;
  }
}




/* ===================
28. About css 
====================== */

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

.about-left {
  position: relative;
  margin: 0 40px 0 20px;
}

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

.about-img::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #ECF0FE;
  border-radius: 50%;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-shape {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

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

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 35px;
}

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

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.about-list li .about-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .about-icon span {
  font-size: 20px;
  color: var(--theme-color);
}


@media all and (max-width: 991px) {
  .about-left {
    margin-bottom: 60px;
  }
}



/* ===================
29. Service css 
====================== */

.service-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-item {
  position: relative;
  padding: 15px 15px 30px 15px;
  margin-top: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: var(--color-white);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.service-img {
  overflow: hidden;
  border-radius: 10px;
  margin-top: -30px;
}

.service-img img {
  border-radius: 12px;
}

.service-item:hover .service-img img {
  transform: scale(1.1) rotate(2deg);
  transition: var(--transition);
}

.service-content {
  position: relative;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: var(--color-white);
  border-radius: 30px 0 30px 0;
  margin: -45px 0 0 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  position: relative;
  transition: var(--transition);
}

.service-icon i {
  color: var(--theme-color);
  font-size: 48px;
  line-height: 1;
  transform: rotate(-45deg);
}

.service-icon img {
  width: 70px;
}

.service-arrow {
  margin-top: 25px;
}

.service-title a {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-title a:hover {
  color: var(--theme-color);
}

.service-arrow a {
  width: 50px;
  height: 50px;
  line-height: 42px;
  border-radius: 15px;
  border: 3px solid var(--color-white);
  background: var(--theme-color);
  transform: rotate(45deg);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.service-item:hover .service-arrow a {
  border-color: var(--theme-color);
  background: var(--color-white);
}

.service-item .service-arrow a i {
  transition: var(--transition);
}

.service-item:hover .service-arrow a i {
  color: var(--theme-color);
  transform: rotate(-45deg);
}

/* service-area 2 */
.service-area2 {
  position: relative;
}

.service-area2 .service-item {
  background: #00081D;
  padding: 28px;
  position: relative;
}

.service-area2 .service-icon {
  margin: 0 auto;
}

.service-area2 .service-item p,
.service-area2 .service-item .service-title a {
  color: var(--color-white);
}

.service-area2 .service-item:hover .theme-btn {
  background: var(--theme-color);
}

.service-slider .service-item {
  box-shadow: none;
}

.service-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.service-slider .owl-dots .owl-dot span {
  background: rgba(28, 185, 200, .4);
  margin: 5px;
  width: 20px;
  height: 7px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}

.service-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}



/* ====================
30. Service single
==================== */

.service-single-wrapper .widget-title {
  font-weight: 700;
}

.service-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.service-download a {
  border: 2px solid var(--theme-color);
  padding: 10px 20px;
  color: var(--color-dark);
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

.service-details h3 {
  color: var(--color-dark);
  font-weight: 700;
}

.service-details img {
  border-radius: 7px;
}




/* ===================
31. Skill css 
====================== */

.skills-section {
  margin-top: 40px;
}

.skill-left {
  position: relative;
}

.skill-left img {
  border-radius: 7px;
}

.skill-shape {
  position: absolute;
  z-index: -1;
  left: -22px;
  top: -1px;
  width: 100%;
  height: 100%;
}

.skill-img {
  position: relative;
  display: block;
  -webkit-mask-image: url(../img/shape/03.png);
  mask-image: url(../img/shape/03.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: 100% 100%;
  -webkit-mask-position: center center;
  mask-position: center center;
  overflow: hidden;
}

.progress-box {
  margin-bottom: 30px;
  position: relative;
}

.progress-box:last-child {
  margin-bottom: 0;
}

.progress-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.progress-box .progress {
  box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
  border: 1px solid #D5E0F5;
  height: 16px;
  padding: 4px;
  border-radius: 50px;
  background-color: var(--color-white);
}

.progress-box .progress .progress-bar {
  background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
  border-radius: 50px;
}

@media all and (max-width: 991px) {
  .skill-right .site-heading {
    font-size: 30px;
  }

  .skill-img img {
    width: 100%;
  }

}




/* ===================
32. Feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-item {
  padding: 50px 20px;
  position: relative;
  background: var(--color-dark);
  text-align: center;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 12px;
  transition: var(--transition);
  z-index: 1;
}

.feature-item::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--theme-color);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  z-index: -1;
}

.feature-icon {
  font-size: 80px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 15px;
}

.feature-title {
  color: var(--color-white);
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--color-white);
}




/* ===================
33. Video css 
====================== */

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 450px;
  z-index: 100;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }

  .video-wrapper h1 {
    font-size: 28px;
    margin-top: 25px;
  }
}



/* ===================
34. Step/process css 
====================== */

/* =====================================================
   JOB CATEGORY CARD
===================================================== */

.job-category-row .process-item {
    position: relative;
    height: 100%;
    /* min-height: 310px; */
    padding: 13px;
    background: #fff;
    border: 1px solid #eceaf3;
    border-radius: 8px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 30px rgba(40, 30, 80, .06);
}

/* =====================================================
   HOVER COLORS - ALL 8 BOXES
===================================================== */

/* 1 - PURPLE */
.job-category-row > div:nth-child(8n + 1) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(108, 59, 209, .18);
    background: linear-gradient(0deg, #6939cb4d, #6333c60d, #ffffff);
    border: 1px solid #6435c7;
}


/* 2 - BLUE */
.job-category-row > div:nth-child(8n + 2) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, .18);
    background: linear-gradient(0deg, #fb923c4d, #fb923c0d, #ffffff);
    border: 1px solid #F97316;
}


/* 3 - GREEN */
.job-category-row > div:nth-child(8n + 3) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(16, 165, 107, .18);
    background: linear-gradient(0deg, #22c55e4d, #22c55e0d, #ffffff);
    border: 1px solid #10A56B;
}


/* 4 - PINK */
.job-category-row > div:nth-child(8n + 4) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(232, 62, 140, .18);
    background: linear-gradient(0deg, #f35aa04d, #f35aa00d, #ffffff);
    border: 1px solid #E83E8C;
}


/* 5 - ORANGE */
.job-category-row > div:nth-child(8n + 5) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .18);
    background: linear-gradient(0deg, #3b82f64d, #3b82f60d, #ffffff);
    border: 1px solid #2563EB;
}


/* 6 - INDIGO */
.job-category-row > div:nth-child(8n + 6) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(91, 91, 214, .18);
    background: linear-gradient(0deg, #6366f14d, #6366f10d, #ffffff);
    border: 1px solid #5B5BD6;
}


/* 7 - TEAL */
.job-category-row > div:nth-child(8n + 7) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 157, 148, .18);
    background: linear-gradient(0deg, #14b8a64d, #14b8a60d, #ffffff);
    border: 1px solid #0F9D94;
}


/* 8 - ROYAL BLUE */
.job-category-row > div:nth-child(8n + 8) .process-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(49, 86, 201, .18);
    background: linear-gradient(0deg, #4f7df34d, #4f7df30d, #ffffff);
    border: 1px solid #3156C9;
}
/* =====================================================
   CATEGORY NUMBER
===================================================== */

.job-category-row .process-count{
    position:absolute;
    top:20px;
    right:25px;
    font-size:38px;
    font-weight:700;
    line-height:1;
    color:#efedf5;
    transition:.3s ease;
}


/* =====================================================
   ICON
===================================================== */
.job-category-row .process-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14%;
    margin-bottom: 10px;
    font-size: 23px;
    transition: all .35s ease;
}

.job-category-row .process-item:hover .process-icon{
    transform:rotate(-8deg) scale(1.08);
}


/* =====================================================
   CONTENT
===================================================== */

.job-category-row .process-content h5 {
    margin: 0 0 3px;
    font-size: 18px;
    font-weight: 700;
    color: #18213b;
}
.job-category-row .process-content p {
    margin: 0px 0 11px;
    color: rgb(171, 171, 171);
    font-size: 14px;
    line-height: 21px;
}

/* =====================================================
   BUTTON
===================================================== */

.job-category-row .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 130px;
    padding: 6px 9px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.job-category-row .theme-btn:hover{
    color:#fff;
    transform:translateX(5px);
}


/* =====================================================
   1 - PURPLE
   1, 9, 17, 25...
===================================================== */

.job-category-row > div:nth-child(8n + 1) .process-icon{
    background:#F0EAFE;
    color:#6C3BD1;
}

.job-category-row > div:nth-child(8n + 1) .theme-btn{
    background:linear-gradient(135deg, #7C4DDB, #5B2BBF);
        box-shadow:0 8px 20px rgba(108, 59, 209, 0.30);
}


/* =====================================================
   2 - BLUE
   2, 10, 18, 26...
===================================================== */

.job-category-row > div:nth-child(8n + 2) .process-icon{
    background:#fff1e6;
    color:#f97316;
}

.job-category-row > div:nth-child(8n + 2) .theme-btn{
    background: linear-gradient(135deg, #FB923C, #EA580C);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.30);
}


/* =====================================================
   3 - GREEN
   3, 11, 19, 27...
===================================================== */

.job-category-row > div:nth-child(8n + 3) .process-icon{
    background:#E7F8F0;
    color:#10A56B;
}

.job-category-row > div:nth-child(8n + 3) .theme-btn{
    background:linear-gradient(135deg, #22C55E, #159447);
        box-shadow:0 8px 20px rgba(16, 165, 107, 0.30);
}


/* =====================================================
   4 - PINK
   4, 12, 20, 28...
===================================================== */

.job-category-row > div:nth-child(8n + 4) .process-icon{
    background:#FFEAF3;
    color:#E83E8C;
}

.job-category-row > div:nth-child(8n + 4) .theme-btn{
    background:linear-gradient(135deg, #F35AA0, #D91F72);
        box-shadow:0 8px 20px rgba(232, 62, 140, 0.30);
}


/* =====================================================
   5 - ORANGE
   5, 13, 21, 29...
===================================================== */

.job-category-row > div:nth-child(8n + 5) .process-icon{
    background: #cbdafa;
    color: #2f6cea;
}

.job-category-row > div:nth-child(8n + 5) .theme-btn{
   background: linear-gradient(135deg, #2f6ced, #073597);
    box-shadow: 0 8px 20px rgb(203 218 250);
}


/* =====================================================
   6 - INDIGO
   6, 14, 22, 30...
===================================================== */

.job-category-row > div:nth-child(8n + 6) .process-icon{
    background:#ECEBFF;
    color:#5B5BD6;
}

.job-category-row > div:nth-child(8n + 6) .theme-btn{
        background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.30);
}


/* =====================================================
   7 - TEAL
   7, 15, 23, 31...
===================================================== */

.job-category-row > div:nth-child(8n + 7) .process-icon{
    background:#E3F8F7;
    color:#0F9D94;
}

.job-category-row > div:nth-child(8n + 7) .theme-btn{
    background:linear-gradient(135deg, #14B8A6, #0F8C83);
    box-shadow:0 8px 20px rgba(15, 157, 148, 0.30);
}


/* =====================================================
   8 - ROYAL BLUE
   8, 16, 24, 32...
===================================================== */

.job-category-row > div:nth-child(8n + 8) .process-icon{
    background:#E8F0FE;
    color:#3156C9;
}

.job-category-row > div:nth-child(8n + 8) .theme-btn{
    background:linear-gradient(135deg, #4F7DF3, #294BB5);
     box-shadow:0 8px 20px rgba(49, 86, 201, 0.30);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .job-category-row .process-item{
        min-height:280px;
    }

}


@media(max-width:575px){

    .job-category-row .process-item{
        min-height:auto;
        padding:25px;
    }

    .job-category-row .process-count{
        font-size:32px;
    }

    .job-category-row .process-content h5{
        font-size:18px;
    }

}

/* ===================
35. Choose css 
====================== */

.choose-area {
  position: relative;
  z-index: 1;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 35px;
}

.choose-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--color-dark);
  border-radius: 50px;
  color: var(--color-white);
  transition: 0.4s;
  margin-top: 2px;
  font-size: 40px;
}

.choose-item-content {
  flex: 1;
}

.choose-item-content h4 {
  margin-bottom: 5px;
}

.choose-img {
  margin-left: 50px;
  position: relative;
  z-index: 1;
}

.choose-img img {
  border-radius: 12px;
}

.choose-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  left: 0;
  top: 0;
  border-radius: 12px;
  transform: rotate(5deg);
  z-index: -1;
}

@media all and (max-width: 991px) {
  .choose-img {
    margin-top: 60px;
  }
}



/* ===================
36. Testimonial css 
====================== */

.testimonial-area {
  position: relative;
}

.testimonial-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    border: 1px solid #6c2bd92e;
    /* box-shadow: 0px 0px 4px #d8d8d8; */
}


.testimonial-item p {
    font-style: italic;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: #7a7878;
    font-size: 14px;
    line-height: 22px;
    margin-top: 7px;
}

.testimonial-quote-icon {
    position: absolute;
    right: 30px;
    bottom: -20px;
    font-size: 40px;
    color: var(--theme-color);
    opacity: .2;
}

.cta-sub-title{
        font-size: 14px;
    color: #fff;
    background: #ffffff78;
    display: inline-block;
    text-transform: capitalize;
padding: 1px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.testimonial-rate {
    margin-bottom: 5px;
    font-size: 8px;
    display: flex;
    gap: 3px;
}

.testimonial-content{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.testimonial-author-img {
    width: 45px;
    border: 1px solid #ccc;
    height: 45px;
    border-radius: 50%;
}
.testimonial-author-img img{
  border-radius: 50%;
  width:100%;
  height:100%;
}

.testimonial-author-info h5 {
    color: #000;
    font-weight: 500;
    font-size: 16px;
}
.client_span{
        font-size: 12px;
    color: #6c2bd9;
    font-style: italic;
}
.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: rgba(60, 101, 245, .2);
  margin: 5px;
  border-radius: 50px;
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 18px;
}



/* ===================
37. Counter css 
====================== */

.counter-area {
  position: relative;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  position: relative;
  transition: var(--transition);
}

.counter-box:hover{
  transform: translateY(-7px);
}

.counter-box .icon {
  position: relative;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background:var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.counter-box .counter-number{
  display: flex;
  align-items: center;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-dark);
  font-size: 40px;
  font-weight: 600;
}

.counter-box .counter-sign{
  font-size: 35px;
  color: var(--color-dark);
  line-height: 1;
  font-weight: 600;
}

.counter-box .title {
  margin-top: 5px;
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 1199px) {
  .counter-area .counter-box {
    margin-bottom: 25px;
  }
}



/* ===================
38. Cta-area css 
====================== */

.cta-area {
  position: relative;
}

.cta-wrapper{
  background-image: url(../img/testimonial/banner1.webp);
  border-radius: 20px;
  padding:50px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
      background-size: cover;
}

/*.cta-wrapper::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #587AF3;
  border-radius: 50%;
  left: 10%;
  top: -50px;
  z-index: -1;
}

.cta-wrapper::after{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid #587AF3;
  border-radius: 50%;
  right: 10%;
  bottom: -50px;
  z-index: -1;
}*/

.cta-content h1{
  color: var(--color-white);
}

.cta-content p{
  color: var(--color-white);
  font-size: 18px;
  margin: 10px 0 25px 0;
}

.cta-content .theme-btn{
  background: var(--color-white);
  color: var(--theme-color);
}

.cta-content .theme-btn:hover{
  color: var(--color-white);
}




/* ========================
39. Portfolio css 
=========================== */

.portfolio-item {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.portfolio-img {
  height: 100%;
}

.portfolio-img img {
  width: 100%;
  border-radius: 8px;
}

.portfolio-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.portfolio-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-content:hover::before {
  opacity: 0.9;
  visibility: visible
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50px;
  top: 0px;
  transition: 0.5s;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  font-size: 25px;
  color: var(--theme-color);
}

.portfolio-link::before {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 2px dashed var(--color-white);
  border-radius: 50px;
}

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

.portfolio-content:hover .portfolio-link {
  opacity: 1;
  visibility: visible;
  top: 50px;
}

.portfolio-info {
  position: absolute;
  bottom: 35px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
  opacity: 1;
  visibility: visible;
  bottom: 45px;
}

.portfolio-subtitle {
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.portfolio-subtitle span {
  color: var(--color-white);
}

.portfolio-title {
  color: var(--color-white);
  font-size: 30px;
}

.filter-btns {
  text-align: center;
}

.filter-btns li {
  display: inline-block;
  text-transform: capitalize;
  margin: 4px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-dark);
  border-radius: 50px;
  padding: 3px 20px 4px 20px;
  border: 2px solid var(--theme-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btns li:hover,
.filter-btns li.active {
  color: var(--color-white);
  background: var(--theme-color);
}

.portfolio-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.portfolio-slider .owl-dots .owl-dot span {
  background: rgba(28, 185, 200, .5);
  margin: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}

.portfolio-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
  width: 18px;
}

@media all and (max-width: 991px) {
  .filter-controls {
   margin-top: 30px;
  }

  .filter-btns {
    margin-top: 30px;
    text-align: left;
   }
}



/* ======================
40. Portfolio single
====================== */

.portfolio-details img {
  border-radius: 7px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
  border-bottom: none;
}

.portfolio-sidebar-title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
  display: block;
  font-weight: normal;
  margin: 0;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
  color: var(--theme-color);
}

.new-portfolio {
  background: var(--theme-color) !important;
}

.new-portfolio h4 {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 28px;
}

.new-portfolio-btn {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.new-portfolio-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.new-portfolio-btn i {
  margin-left: 8px;
}

.portfolio-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.portfolio-details h3 {
  font-weight: 700;
}



/* ===================
41. Blog css 
====================== */

.blog-area{
  position: relative;
}

.blog-item {
  background: var(--color-white);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: var(--transition);
      box-shadow: 0px 0px 11px #ecf2ff;

}

.blog-item-img {
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
}

.blog-item-img img {
  border-radius: 15px 15px 0px 0px;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-info {
  padding: 15px 15px 5px 15px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
    padding-bottom: 6px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: var(--color-dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item-meta a:hover {
  color: var(--theme-color);
}

.blog-title {
    font-size: 18px;
    margin-bottom: 10px;
  text-transform: capitalize;
}

.blog-item-info p {
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-item-info h5 a {
  color: var(--color-dark);
}

.blog-item-info h5 a:hover {
  color: var(--theme-color);
}

@media all and (max-width: 991px) {
  .blog-item-info {
    padding: 23px 15px 30px 15px;
  }
}



/* ===========================
42. Blog single css
=========================== */

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 10px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li {
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: #66788a;
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 30px;
  color: var(--color-dark);
  margin-bottom:10px;
}

.blockqoute {
  background: #f8f8f7;
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 15px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: #f8f8f7;
  color: var(--color-dark);
  padding: 6px 18px;
  border-radius: 6px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #f8f8f7;
  border-radius: 15px;
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
  position: relative;
}

.blog-author-img::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px 0 30px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}


.blog-comments h3 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-img {
  margin-top: 3px;
}

.blog-comments-single img {
  border-radius: 50%;
  width: 120px;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
  color: var(--theme-color);
}

.blog-comments-content a:hover {
  color: var(--color-dark);
}

.blog-comments-content h5 {
  color: var(--color-dark);
  font-weight: 700;
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
    padding: 15px 20px;
    margin-top: 25px;
  border-radius: 10px;
  background: #f8f8f7;
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: none;
  transition: var(--transition);
}

.blog-comments-form .form-control::placeholder{
  color: var(--body-text-color);
  
}

.blog-comments-form .form-control:focus {
  border-color: var(--theme-color);
}

@media all and (max-width: 767px) {
  .blog-meta {
    font-size: 15px;
  }
.blog-details-title {
    font-size: 22px; }
  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0 0;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/* =========================
43. Sidebar css
========================= */

.widget {
  background: #f8f8f7;
    padding: 15px 20px;
    margin-bottom: 25px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
margin-bottom: 12px;
    position: relative;
    font-size: 20px;
  color: var(--color-dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.widget .blog-search-form .form-control {
  color: var(--color-dark);
  padding: 12px 15px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
}

.widget .blog-search-form .form-control::placeholder{
  color: var(--body-text-color);
}

.widget .blog-search-form {
  position: relative;
}

.widget .blog-search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .blog-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
    display: block;
    padding: 7px 0;
    font-weight: 400;
    border-bottom: 1px solid #ced4da;
    transition: var(--transition);
    font-size: 15px;
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 7px;
}

.widget .recent-post-bio h6 {
font-size: 15px;
    font-weight: 500;
}

.widget .recent-post-single:last-child{
    margin-bottom:0;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 400;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
    width: 30px;
    height: 30px;
    line-height:30px;
    border: 1px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}



/* =========================
44. Partner css
========================= */

.partner-item {
 background: var(--color-white);
    padding: 10px 20px;
    border: 1px solid #eadcfb;
    border-radius: 8px;
}

.partner-item img{
  height: 40px;
  width: auto !important;
}

@media all and (max-width: 767px) {
  .partner-item img {
    height: 30px;
  }
}




/* ===================
45. Contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-white);
  border-radius: 10px;
  padding:15px 20px;
  box-shadow: var(--box-shadow);
}

.contact-form-header {
  margin-bottom: 20px;
}

.contact-form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-dark);
}

.contact-form .form-group .form-control {
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
/*  background: var(--color-white);
  border-radius: 10px;
  padding: 30px 30px;
  position: relative;
  box-shadow: var(--box-shadow);*/
}

.contact-info {
/*  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 20px;
  border: 2px solid #587AF3;
  border-radius: 15px;
  margin-bottom: 25px;*/
    padding: 15px 18px;
    border: 1px solid rgb(140 89 227);
    border-left: 4px solid #8c59e3;
    border-radius: 18px;
    gap: 16px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 12px 32px rgb(244 22 22 / 0%);
    transition: all 0.35s ease;
    display: flex;
    margin-bottom: 20px;
}

.contact-info:hover {
    border-color: rgba(37, 99, 235, 0.25);
    border-left-color: #6c2bd9;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.14);
    transform: translateY(-4px);
}

.contact-info:last-child{
  margin-bottom: 0;
}

.contact-info-icon i {
width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
    font-size: 22px;
    color: #fff;
}

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

.contact-info p {

    font-weight: 400;
    font-size: 15px;
}



/* ===================
46. Quote css
====================== */

.quote-area {
  position: relative;
  background-image: url('../img/quote/01.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.quote-content {
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
}

.quote-content .quote-header h6 {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--theme-color);
  font-size: 18px;
  letter-spacing: 2px;
}

.quote-content .quote-header h2 {
  color: var(--color-dark);
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 10px;
  font-weight: 700;
}

.quote-content .form-group {
  margin-bottom: 20px
}

.quote-content .form-group .form-control {
  padding: 15px 22px;
  font-size: 16px;
  background: 0 0;
  border-radius: 8px;
  background-color: #F3F7FA;
  border: none;
  box-shadow: none
}

.quote-content .form-group .form-select{
  padding: 15px 22px;
  background-color: #F3F7FA;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

.quote-content .theme-btn:hover {
  color: var(--color-white);
}

@media all and (max-width:1199px) {
  .quote-content .quote-header h2 {
    font-size: 25px
  }
}

@media all and (max-width:991px) {
  .quote-thum {
    margin-top: 40px;
  }
}




/* ===================
47. Team css 
====================== */

.team-area {
  position: relative;
}

.team-item {
  background: var(--color-white);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, .08);
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.team-item:hover{
  transform: translateY(-7px);
}

.team-img img {
  border-radius: 15px;
}

.team-content {
  text-align: center;
}

.team-bio{
  margin-top: 10px;
  margin-bottom: 15px;
}

.team-bio h5 {
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-bio h5 a {
  color: var(--color-dark);
}

.team-bio span {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color: var(--theme-color);
}

.team-social{
  margin-bottom: 6px;
}

.team-social li{
  display: inline-block;
  margin: 5px;
}

.team-social li a{
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  border: 2px solid var(--color-dark);
  border-radius: 50px;
}

.team-social li a:hover{
  color: var(--color-white);
  background: var(--color-dark);
}




/* ===================
48. Pricing css 
====================== */

.pricing-area{
  position: relative;
}

.pricing-wrapper{
  background: #F1F6FC;
  border-radius: 30px;
}

.pricing-item {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 20px;
  z-index: 1;
}

.pricing-popular{
  position: absolute;
  display: block;
  padding: 3px 15px 2px 15px;
  background: var(--color-white);
  color: var(--theme-color);
  text-transform: uppercase;
   font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 50px;
  right: 15px;
  top: 15px;
}

.pricing-content h4 {
  margin-bottom: 10px;
  color: var(--theme-color);
}

.pricing-amount {
  color: var(--color-dark);
  font-weight: 700;
}

.pricing-amount span{
  font-size: 16px;
  font-weight: 600;
}

.pricing-content p{
  margin-top: 10px;
}

.pricing-feature ul {
  margin-top: 20px;
  margin-bottom: 35px;
}

.pricing-feature ul li {
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--theme-color);
  border-radius: 50px;
  left: 0;
  top: 8.5px;
}

.pricing-item.active{
  background: var(--theme-color);
  margin-top: -40px;
}

.pricing-item.active .pricing-content h4{
  color: var(--color-white);
  margin-top: 20px;
}

.pricing-item.active .pricing-amount{
  color: var(--color-white);
}

.pricing-item.active .pricing-content p{
  color: var(--color-white);
}

.pricing-item.active .pricing-feature ul li{
  color: var(--color-white);
}

.pricing-item.active .pricing-feature ul li::before {
  border-color: var(--color-white);
}

.pricing-item.active .theme-btn{
  background: var(--color-white);
  color: var(--theme-color);
}

.pricing-item.active .theme-btn:hover{
  color: var(--color-white);
}


@media all and (max-width: 991px) {
  .pricing-item.active {
    margin-top: 0;
  }
}



/* ===================
49. Faq css 
====================== */

.faq-area{
  position: relative;
}

.faq-area .faq-left {
  position: relative;
  text-align: center;
}

.faq-img {
  margin: auto auto;
  padding-top: 50px;
  position: relative;
  width: 85%;
  z-index: 1;
}

.faq-img::before {
  content: "";
  position: absolute;
  background: var(--theme-color);
  left: -20px;
  top: 5px;
  width: 100%;
  height: 100%;
  border-radius: 50% 20px 50% 50%;
  z-index: -1;
}

.faq-img img {
  border-radius: 50% 20px 50% 50%;
}

.faq-area .accordion-item {
  border: none;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px dashed var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-top: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}



/* ===================
50. Breadcrumb css
====================== */

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url(../img/7b0cfe8c-ddc7-4753-8f9d-3c490a4b9f2a.png);
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 1;
    background-size: cover;
}

.site-breadcrumb .hero-shape-3{
  top: 200px;
}

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

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

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

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

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

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

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

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}

@media (max-width: 991px) {
.site-breadcrumb {
    padding-top: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
}
}




/* ===================
51. Pagination css 
====================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  background: var(--color-dark);
  color: var(--color-white);
  margin: 0 10px;
  border-radius: 10px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}

.pagination-showing{
  text-align: center;
  margin-top: 20px;
}



/* ===================
51. Auth css 
====================== */

.login-form {
  padding: 40px;
  background: var(--theme-bg-light);
  border-radius: 10px;
  position: relative;
}

.login-form .login-header {
  text-align: center;
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: var(--color-dark);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: var(--color-dark);
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  color: var(--color-dark);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control::placeholder{
  color: var(--body-text-color);
}

.login-form .form-group .form-control:focus {
  border-color: var(--theme-color);
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .forgot-pass {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: var(--color-dark);
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn::before {
  width: 480px;
  height: 480px;
  transition-duration: .2s;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: var(--theme-color);
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: var(--theme-color);
}

.form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.login-divider {
  position: relative;
  margin: 15px 0;
  text-align: center;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #E8E8E8;
}

.login-divider span {
  position: relative;
  background: #F1F5FC;
  padding: 0 20px;
}

.social-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.social-login a {
  width: 100%;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
}

.social-login a i {
  margin-right: 5px;
}

.btn-fb {
  background: #506DAB;
  color: var(--color-white) !important;
}

.btn-gl {
  background: #DD4B39;
  color: var(--color-white) !important;
}


@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }

  .social-login{
    flex-direction: column;
  }
}




/* ===================
52. User profile css 
====================== */

.header-account img {
  width: 60px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid rgba(0, 0, 0, .1);
  cursor: pointer;
}

.header-account .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.header-account .dropdown-menu li a i {
  margin-right: 5px;
}

.header-account .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  color: var(--color-dark);
  font-weight: 500;
}

.header-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color);
  padding-left: 25px;
}

.mobile-menu-right {
  gap: 20px;
}

.mobile-menu-right .header-account img {
  width: 30px;
  padding: 0;
  border: none;
}

.user-profile-sidebar {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.user-profile-sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
}

.user-profile-img img {
  border-radius: 50%;
}

.user-profile-sidebar-top h4{
  font-size: 20px;
}

.user-profile-sidebar-top p{
  color: var(--color-dark);
  font-weight: 500;
}

.profile-img-file {
  display: none;
}

.user-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.user-profile-sidebar-list li {
  margin: 5px 0;
}

.user-profile-sidebar-list li a {
  color: var(--color-dark);
  font-weight: 500;
  padding: 6px 6px 6px 15px;
  display: block;
  transition: var(--transition);
}

.user-profile-sidebar-list li a:hover {
  color: var(--theme-color);
}

.user-profile-sidebar-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.user-profile-sidebar-list .active i {
  color: var(--color-white);
}

.user-profile-sidebar-list .active {
  background: var(--theme-color);
  color: var(--color-white) !important;
  border-radius: 8px;
}

.user-profile-sidebar-list li .badge{
  float: right;
  margin-top: 5px;
  background: #F96768;
}

.profile-menu-angle{
  float: right;
}

.profile-menu-list{
  margin-left: 40px;
}

.profile-menu-list li a{
  position: relative;
}

.profile-menu-list li a::before{
  content: "\e122";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0px;
  top: 13px;
  color: var(--theme-color);
  font-size: 8px;
  font-weight: bold;
}

.user-profile-card {
  background: var(--color-white);
  padding:15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.user-profile-card-title {
  color: var(--color-dark);
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 19px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card .text-success {
  color: var(--theme-color) !important;
}

.user-profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card-header .user-profile-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.user-profile-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-search .form-group {
  position: relative;
}

.user-profile-search .form-control {
  padding: 8px 12px 9px 35px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--body-text-color);
}

.user-profile-search .form-control::placeholder{
  color: var(--body-text-color);
}

.user-profile-search .form-control:focus {
  border-color: var(--theme-color);
}

.user-profile-search i {
  position: absolute;
  left: 12px;
  top: 13px;
}

.user-profile-sort .nice-select{
  border-radius: 8px;
  border: 1px solid #ced4da;
}

.user-profile-sort .nice-select::after{
  width: 7px;
  height: 7px;
  margin-top: -6px;
}

.user-profile-sort .nice-select .list{
  width: 100%;
  border-radius: 8px;
}

.user-profile-sort .nice-select:focus{
  border-color: var(--theme-color);
}

.user-profile-card-header .theme-btn {
  padding: 8px 15px;
}

.profile-info-list li {
  margin: 5px 0;
  font-weight: 500;
  color: var(--color-dark);
}

.profile-info-list li span {
  float: right;
  font-weight: normal;
}

.profile-skill a{
  background: var(--theme-bg-light);
  padding: 5px 20px;
  border-radius: 50px;
  margin: 5px 5px 5px 0;
}

.profile-skill a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

.profile-social a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--theme-bg-light);
  border-radius: 50px;
  text-align: center;
  color: var(--theme-color);
  margin: 8px 8px 8px 0;
}

.profile-social a:hover{
  background: var(--theme-color);
  color: var(--color-white);
}

/* profile form */
.profile-form .nice-select,
.profile-form .form-group {
  margin-bottom: 20px;
}

.profile-form .form-group label {
  color: var(--color-dark);
  margin-bottom: 5px;
}

.profile-form .form-control {
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: none;
  color: var(--color-dark);
}

.profile-form .form-control::placeholder{
  color: var(--body-text-color);
}
.form-control::placeholder{
  color: var(--body-text-color);
  font-size:14px;
}
.profile-form .nice-select {
  border-radius: 12px;
  width: 100%;
  height: 55px;
  line-height: 53px;
  font-size: 16px;
  color: var(--color-dark);
  box-shadow: none;
  border: 1px solid #ced4da;
}

.profile-form .nice-select::after{
  width: 9px;
  height: 9px;
  margin-top: -6px;
  right: 15px;
}

.profile-form .nice-select .list{
  width: 100%;
  border-radius: 12px;
}

.profile-form .nice-select:focus,
.profile-form .form-control:focus {
  border-color: var(--theme-color);
}

.profile-form .theme-btn2{
  padding: 7px 15px;
}

/* dashboard */
.dashboard-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.dashboard-widget-info span {
  font-weight: 500;
}

.dashboard-widget-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-widget-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 20px;
}

.dashboard-widget-color-1 {
  background: rgba(60, 101, 245, .2);
  color: var(--theme-color);
}

.dashboard-widget-color-1 h1 {
  color: var(--theme-color);
}

.dashboard-widget-color-1 .dashboard-widget-icon {
  background: var(--theme-color);
  color: var(--color-white);
}

.dashboard-widget-color-2 {
  background: rgba(0, 230, 130, 0.2);
  color: #09AD95;
}

.dashboard-widget-color-2 h1 {
  color: #09AD95;
}

.dashboard-widget-color-2 .dashboard-widget-icon {
  background: #09AD95;
  color: var(--color-white);
}

.dashboard-widget-color-3 {
  background: rgba(249, 103, 104, .2);
  color: #F96768;
}

.dashboard-widget-color-3 h1 {
  color: #F96768;
}

.dashboard-widget-color-3 .dashboard-widget-icon {
  background: #F96768;
  color: var(--color-white);
}

.user-notification-item {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 10px 0;
}

.user-notification-item a {
  display: flex;
  gap: 15px;
}

.user-notification-item a:hover {
  color: var(--color-dark);
}

.user-notification-item:first-child {
  padding-top: 0;
}

.user-notification-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.user-notification-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
  margin-top: 5px;
  text-align: center;
}

.user-notification-info {
  flex: 1;
}

.user-notification-info p {
  font-size: 15px;
}

.user-notification-info span {
  font-size: 14px;
}

.table-property-info a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-property-info h6 {
  transition: var(--transition);
}

.table-property-info:hover h6 {
  color: var(--theme-color);
}

.table-property-info img {
  width: 70px;
  border-radius: 8px;
}

.user-profile-card .table>:not(caption)>*>* {
  vertical-align: middle;
  padding: 1rem 0.5rem;
  color: var(--color-dark);
}

/* profile badge */
.user-profile-card .badge{
  border-radius: 50px;
}

.user-profile-card .badge-success{
  background: rgba(9, 173, 149, .2);
  color: #09AD95;
}

.user-profile-card .badge-warning{
  background: rgba(113, 103, 255, .2);
  color: var(--theme-color);
}

.user-profile-card .badge-danger{
  background: rgba(249, 103, 104, .2);
  color: #F96768;
}

/* profile btn */
.user-profile-card .btn{
  border-radius: 8px;
}

/* profile table */
.user-profile-card .table{
  color: var(--color-dark);
}

/* profile job list */
.user-profile-job .job-item{
  border: 1px solid rgba(0, 0, 0, .08);
}

.profile-job-info{
  display: flex;
  gap: 15px;
}

.profile-job-info img{
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.profile-job-list{
  margin-top: 5px;
}

.profile-job-list li{
  display: inline-block;
  margin-right: 8px;
}

.profile-job-list li h6 a:hover{
  color: var(--theme-color);
}

/* profile candidate list */
.user-profile-candidate .candidate-item{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}

/* profile upload */
.profile-upload {
  width: 100%;
  height: 200px;
  border: 2px dashed rgba(0, 0, 0, .1);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-file {
  display: none;
}

.profile-upload span i {
  margin-right: 5px;
}

/* profile message */
.profile-message-wrapper {
  display: flex;
}

.profile-message-inbox {
  max-width: 340px;
  border: 1px solid #EDF1F9;
  border-radius: 10px;
}

.profile-message-inbox {
  overflow: hidden;
}

.message-content {
  padding-left: 30px;
  position: relative;
  overflow: hidden;
}

.message-content-info {
  max-height: 750px;
  overflow-y: scroll;
  margin-right: -50px;
  padding-right: 50px;
}

.profile-message-inbox,
.message-content {
  flex: 1;
}

.profile-message-inbox ul {
  max-height: 950px;
  overflow-y: scroll;
  width: 357px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-message-inbox ul li.message-active {
  border-left: 3px solid var(--theme-color);
}

.profile-message-inbox ul li {
  border-bottom: 1px solid #EDF1F9;
  transition: .2s;
  list-style: none;
}

.profile-message-inbox ul li:last-child {
  border-bottom: none;
}

.message-by-content h5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.profile-message-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.profile-message-inbox .message-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.message-avatar img {
  width: 50px;
  height: 50px;
}

.profile-message-inbox .message-by {
  margin-left: 50px;
}

.message-by-content h5 i {
  background: #F98F14;
  padding: 3px 8px;
  border-radius: 50px;
  color: var(--color-white);
  font-size: 14px;
}

.message-by-content span {
  font-size: 14px;
  position: absolute;
  top: 25.5px;
  right: 25px;
  float: right;
  color: #888888;
}

.profile-message-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #6B747D;
  line-height: 27px;
}

.message-item {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.message-item .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.message-item .message-avatar img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}

.message-item .message-description {
  margin-left: 70px;
  background: #F4F5F7;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item .message-description::before {
  position: absolute;
  top: 0px;
  left: -9px;
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 31px;
  color: #F4F5F7;
}

.message-item .message-description p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 27px;
}

.message-item.me .message-avatar {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.message-item.me .message-description {
  color: var(--theme-color);
  background: #EBEFFE;
  margin-left: 0;
  margin-right: 70px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item.me .message-description::before {
  content: "\f0da";
  left: auto;
  right: -9px;
  color: #EBEFFE;
}

.message-reply {
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 15px;
}

.message-reply .form-control {
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 10px;
}

.message-reply .form-control:focus {
  border-color: var(--theme-color);
}

.message-reply .theme-btn {
  margin-top: 15px;
}

.message-status {
  width: 12px;
  height: 12px;
  background: #252629;
  display: flex;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  position: absolute;
  right: -5px;
  top: 50%;
}

.message-status.online {
  background: #09AD95;
}

.message-status.offline {
  background: #DD4B39;
}

.message-status.busy {
  background: #F6B500;
}

.profile-message .header-account img {
  width: 45px;
}

@media all and (max-width: 991px) {
  .message-by-content span {
    right: 65px;
  }

  .message-reply {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .table-property-info a {
    display: block;
  }

  .table-property-info h6 {
    margin-top: 10px;
  }

  .user-profile-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .user-profile-card-header-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .profile-message .profile-message-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .profile-message .user-profile-card-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .profile-message .message-content {
    padding-left: 0;
    padding-bottom: 200px;
  }

  .message-reply {
    left: 0;
  }

}




/* ===================
53. Coming soon css 
====================== */

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 50px;
  background: var(--theme-color);
  display: inline-block;
  color: var(--color-white);
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: var(--color-white);
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: var(--theme-color);
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.countdown-single h2 {
  color: var(--color-white);
}

.countdown-single h5 {
  color: var(--color-white);
}




/* ===================
54. Error css 
====================== */

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
  line-height: 1;
}

.error-wrapper h1 span {
  color: var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}



/* ===================
55. Terms/privacy css 
====================== */

.terms-content:not(:last-child) {
    margin-bottom: 15px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}




/* ===================
56. Footer css 
====================== */

.footer-area {
/*  background: var(--footer-bg);*/
background-image:url(../img/footer.png);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
}
/*
.footer-area::before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--theme-color);
  left: 30%;
  top: -50px;
  border-radius: 50%;
  opacity: .08;
}

.footer-area::after{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 20px solid var(--theme-color);
  right: 30%;
  bottom: -50px;
  border-radius: 50%;
  opacity: .08;
}
*/
.footer-widget-box {
/*  margin-bottom: 20px;*/
}

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

.footer-logo img {
width: 140px;
    margin-bottom: 20px;
        filter: brightness(0) saturate(100%) invert(22%) sepia(96%) saturate(6218%) hue-rotate(353deg) brightness(97%) contrast(98%);

}

.copyright {
  padding: 8px 0;
border-top: 1px solid rgb(255 255 255 / 26%);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}

.footer-widget-title {
  color:#fff;
  position: relative;
padding-bottom: 11px;
    margin-bottom: 20px;
  font-size: 18px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer-widget-title::after {
  content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fbfbfb00;
    bottom: 0;
    left: 18px;
    z-index: -1;
}

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

.footer-list li a {
  color: var(--footer-text-color);
  position: relative;
  padding-left: 10px;
  transition: var(--transition);
}

.footer-list li a::before{
  content: "";
  position: absolute;
  height: 1.8px;
  width: 5px;
  background: #6c2bd9;
  left: 0;
  top: 14px;
  transition: var(--transition);
}

.footer-list li a:hover::before{
  width: 10px;
  background: var(--theme-color);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 14px;
}

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

.footer-widget-box p {
  color: var(--footer-text-color);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social li a i {
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--theme-color);
    transition: var(--transition);
    font-size: 16px;
}

.footer-social li a i:hover {
  background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
  color: var(--color-white);
}

.footer-contact li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact li a {
  color: var(--footer-text-color);
  transition: 0.3s;
  white-space: nowrap;
  font-size: 16px;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex-shrink: 0;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px;
  background:linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
  text-align: center;
  transition: 0.3s;
  color: var(--color-white);
}

.subscribe-form .form-group-icon{
  position: relative;
}

.subscribe-form .form-control {
  padding: 17px 65px 17px 45px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
  color: var(--footer-text-color);
}

.subscribe-form .form-control::placeholder{
  color: var(--footer-text-color);
}

.subscribe-form .form-group-icon i{
  position: absolute;
  left: 15px;
  top: 19px;
  font-size: 20px;
  color: var(--theme-color);
}

.subscribe-form .theme-btn {
  position: absolute;
  right: 5px;
  bottom: 6px;
  font-size: 20px;
  padding: 5px 15px;
}

.subscribe-form .theme-btn span{
  margin-right: 0;
}

.footer-download{
  margin-top: 20px;
}

.footer-download h5{
  margin-bottom: 12px;
}

.footer-download-content{
  display: flex;
  gap: 10px;
}

.footer-download img{
  border-radius: 10px;
}

@media all and (max-width: 1199px) {

}

@media all and (max-width: 991px) {

  .footer-area::before {
    display: none;
  }

  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}




/* ======================
57. Home 2
====================== */

.home-2 .main{
  margin-top: 0;
}

.home-2 .hero-single{
  background: transparent;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-2 .hero-single::before{
  content: "";
  position: absolute;
  background: #f0f6fe;
  border-radius: 0 80px 80px 0;
  height: 100%;
  width: 65%;
  left: 0;
  top: 0;
  z-index: -1;
}

.home-2 .hero-img{
  padding-right: 30px;
  position: relative;
}

.home-2 .hero-img::before{
  content: "";
  position: absolute;
  background: #FFD04E;
  right: 0;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border-radius: 50px;
}

.home-2 .hero-img img{
  position: relative;
  width: 100%;
  border-radius: 50px;
}

.home-2 .category-item{
  flex-direction: column;
  text-align: center;
  padding: 30px 30px;
}

.home-2 .category-icon{
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}




/* ======================
58. Home 3
====================== */

.home-3 .main{
  margin-top: 0;
}

.home-3 .navbar{
  background: var(--color-white);
}

.home-3 .hero-single{
  background-image: url(../img/hero/02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.home-3 .hero-single::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 38, 78, .8);
  z-index: -1;
}

.home-3 .hero-single .hero-content p,
.home-3 .hero-single .hero-content .hero-sub-title,
.home-3 .hero-single .hero-content .hero-title{
  color: var(--color-white);
}

.home-3 .hero-single .hero-content p{
  font-weight: normal;
}

.home-3 .popular-search,
.home-3 .popular-search a,
.home-3 .popular-search span{
  color: var(--color-white);
}

.home-3 .popular-search a{
  margin-left: 2px;
  text-decoration: underline;
}



/* ======================
59. Home 4
====================== */

.home-4 .main{
  margin-top: 0;
}

.home-4 .navbar{
  background: var(--color-white);
}

.home-4 .hero-single{
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  padding-top: 150px;
  padding-bottom: 180px;
}

.home-4 .hero-single::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: -1;
}

.home-4 .hero-single .hero-content p,
.home-4 .hero-single .hero-content .hero-sub-title,
.home-4 .hero-single .hero-content .hero-title{
  color: var(--color-white);
}

.home-4 .hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--theme-color);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--color-white);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.home-4 .hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

@media all and (max-width: 1199px) {

  .home-4 .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-prev,
  .home-4 .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 50px !important;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .home-4 .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}



/* ======================
60. Home 5
====================== */

.home-5 .main{
  margin-top: 0;
}

.home-5 .hero-single{
  background: transparent;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-5 .hero-single::before{
  content: "";
  position: absolute;
  background: #f0f6fe;
  border-radius: 30px;
  height: 100%;
  width: 85%;
  z-index: -1;
}

.home-5 .hero-content{
  padding-left: 50px;
}

.home-5 .hero-img img{
  width: 40%;
  margin-left: -80px;
  z-index: -1;
}


@media all and (max-width: 1199px) {
  .home-5 .hero-content{
    padding-left: 0px;
  }  

  .home-5 .search-form-wrapper .theme-btn{
    width: unset !important;
  }
}

@media all and (max-width: 991px) {
  .home-5 .hero-single{
    padding-top: 150px;
  }

  .home-5 .hero-single::before{
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
  }
}




/*--- fillter -----*/

/* =========================
   FILTER DROPDOWN
========================= */

.filter-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-toggle i {
     font-size: 13px;
    transition: 0.3s;
}

.filter-toggle.closed i {
    transform: rotate(180deg);
}

.filter-content {
    display: block;
}


/* =========================
   SALARY RANGE
========================= */

.salary-range-box {
    padding-top: 5px;
}

.salary-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1px;
    font-size: 14px;
    color: #666;
}

.salary-label strong {
    color: #d4030e;
    font-size: 14px;
}

#salaryRange {
    width: 100%;
    height: 5px;
    appearance: none;
   background:#e5e7eb;
    border-radius: 10px;
    outline: none;
}


/* Range Thumb */

#salaryRange::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #d4030e;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #d4030e;
    border-radius: 50%;
    cursor: pointer;
}

#salaryRange::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #d4030e;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #d4030e;
    border-radius: 50%;
    cursor: pointer;
}

.salary-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
     font-size: 13px;
    color: #777;
}
.job-sidebar h3 i {
    margin-right: 8px;
    font-size: 16px;
}

.job-sidebar h3{
        font-size: 16px;
    margin-bottom: 10px;
}



.job-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.job-info-item:last-child {
    margin-bottom: 0;
}


.job-icon {
    width: 25px;
    height: 26px;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
}


/* Fire Icon */
.urgent-icon {
    background: #fff0f2;
    color: #ff5722;
}


/* Bolt Icon */
.reply-icon {
    background: #edf3ff;
    color: #155eef;
}


/* Users Icon */
.applicants-icon {
    background: #eaf1ff;
    color: #155eef;
}


/* Text */
.job-info-content h4 {
    margin: 0px 0 2px;
     font-size: 13px;
    font-weight: 600;
    color: #17213d;
    line-height: 1.3;
}

.job-info-content p {
    margin: 0;
     font-size: 12px;
    line-height: 1.45;
    color: #a1a1a1;
}
.job_datacom {
    display: flex;
    gap: 30px;
    font-size: 13px;
    margin-bottom: 10px;
}

.sell {
    background: #ffcfd114;
    padding: 7px 20px;
    justify-content: start;
    border-radius: 9px;
    border: 1px solid #d4030e2e;
    margin-bottom: 15px;
       column-gap: 45px !important;
    row-gap: 11px;
}
.job_datacom i{
    margin-right:4px;
}
.job-requirements {
    display: flex;
    align-items: center;
    width: 100%;
    /* gap: 35px; */
    flex-wrap: wrap;
    column-gap: 35px;
    row-gap: 23px;
}
.requirement-item {
    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 0;
}


/* Icon Box */
.requirement-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
     font-size: 13px;
}

/* Experience */
.experience-icon {
    background: #edf3ff;
    color: #155eef;
}


/* Education */
.education-icon {
    background: #f0edff;
    color: #7565d8;
}


/* Gender */
.gender-icon {
    background: #fff0f5;
    color: #d85c8a;
}
.age-icon {
    background: #00ddf921;
    color: #01afc6;
}

.english-icon {
    background: #ff572221;
    color: #FF5722;
}
.hindi-icon {
    background: #cddc394a;
    color: #95a500;
}

/* Text */
.requirement-content h4 {
    margin: 0 0 0px;
     font-size: 13px;
    font-weight: 700;
    color: #1c2748;
    line-height: 14px;
}

.requirement-content p {
    margin: 0;
     font-size: 13px;
    color: #8f8f8f;
    line-height: 21px;
}

/* Mobile */
@media (max-width: 576px) {


}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

/* Icon */
.info-card-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
}

.skills-icon {
    color: #13a678;
    background: #eaf8f3;
}

.degree-icon {
    color: #ed861a;
    background: #fff1df;
}


/* Heading */
.info-card-body h3 {
    margin: 0px 0 0px;
    font-size: 14px;
    font-weight: 700;
    color: #1c2745;
}

.info-card-body p{
         font-size: 12px;
    margin-bottom: 10px;
}
/* Skill Tags */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.skills-list span {
    display: inline-block;
    padding: 5px 8px;
    background: #f6f8fb;
    border: 1px solid #edf0f4;
    border-radius: 4px;
    color: #5d667c;
     font-size: 13px;
    line-height: 1.2;
}


/* Different tag colors */
.info-card:first-child .skills-list span {
    background: #f0faf6;
    border-color: #dff3eb;
}

.info-card:last-child .skills-list span {
    background: #fff8ef;
    border-color: #f9ead5;
}


/* Responsive */
@media (max-width: 768px) {

    .job-info-grid {
        grid-template-columns: 1fr;
    }

}


.login_job h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2a3038;
    margin-bottom: 3px;
}

.login_divider {
    position: relative;
    text-align: center;
    margin: 15px 0px 10px;
}
.login_divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.login_divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.login_divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
}

.login_enterprise {
    color: #0b2b61;
    font-weight: 400;
    text-decoration: underline;
    font-size: 14px;
}
.login_job p{
     font-size: 13px;
    color: #727374;
}

.login_card_box{
        box-shadow: 0px 0px 22px #e6e4e4d6;
    border: 1px solid #e6e6e6a6;
    padding: 20px 10px;
}
/* ==================END================== */

/* =============== Profile Page Css Start=======================*/

.profile_dashboard_card{
    background:#fff;
    border-radius:18px;
    padding:15px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    border:1px solid #edf2f7;
    margin-bottom:25px;
    transition:.3s;
}

.profile_dashboard_card:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.profile_sidbar_crd{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.profile_cover_crd{
    height:120px;
       background: linear-gradient(90deg, #ef0707a8 0%, #5a141a 40%, #f32117 100%);
}

.profile_user_img{
    width:110px;
    height:110px;
    margin:auto;
    margin-top:-55px;
}

.profile_user_img img{
    width:100%;
    height:100%;
    border-radius:50%;
    border:5px solid #fff;
    object-fit:cover;
}

.profile_info_bx_top{
    padding:10px 20px 12px;
}

.profile_info_bx_top h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom:6px;
}

.profile_info_bx_top p{
    margin-bottom:6px;
    color:#64748b;
    font-size:14px;
}

.profile_info_bx_top i{
    color:#d31e18;
    margin-right:6px;
}

.profile_detail_card_bx{
    background:#fff;
    border-radius:18px;
    padding:10px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

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

.profile_detail_card_bx li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:7px 0;
    border-bottom:1px solid #edf2f7;
}

.profile_detail_card_bx li:last-child{
    border:none;
}

.profile_detail_card_bx span{
    color:#64748b;
    font-size:14px;
}

.profile_detail_card_bx strong{
    font-size:15px;
    font-weight:600;
}

.profile_activity_card_bx{
    background:#fff;
    border-radius:18px;
    padding:10px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.profile_activity_card_bx h5{

    font-size:18px;
    margin-bottom:20px;
    font-weight:600;

}

.profile_activity_in_bx{
    display:flex;
    align-items:center;
    gap:18px;
}

.profile_activity_in_icon{
    width:55;
    height: 60px;
    border-radius: 16px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    min-height: 60px;

}

.profile_activity_in_icon i{
    font-size:26px;
    color:#0284c7;
}

.profile_activity_in_bx h6{
    margin:0;
    font-size:16px;
    font-weight:600;
}

.profile_activity_in_bx p{
    margin:5px 0 0;
    font-size:13px;
    color:#64748b;
}

.profile_custome_card_head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.profile_custome_card_head h5{
    font-size:18px ;
    font-weight:700;
    margin:0;
}

.profile_custome_card_head h5 i{
    color:#d31e18;
}

.profile_custome_card_head a{
    text-decoration:none;
    color:#d31e18;
    font-weight:600;
    transition:.3s;
    font-size:16px;
}

.profile_custome_card_head a:hover{
    color:#1d4ed8;
}


.profile_expierince_card{
    display:flex;
    gap:20px;
    position:relative;
}

.profile_expierince_icon{
width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius:18px;
    background:#fffafa;
    color:#d31e18;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    position:relative;
}

/*.profile_expierince_icon::after{
    content:'';
    position:absolute;
    left:50%;
    top:70px;
    width:2px;
    height:calc(100% + 70px);
    background:#e5e7eb;
    transform:translateX(-50%);
}*/

.profile_expierince_content_bx{
    flex:1;
}

.profile_expierince_content_bx h4{
       font-size: 18px;
    font-weight: 600;
    margin-bottom:4px;
    color:#111827;
}

.profile_expierince_content_bx h6{
    color:#64748b;
    margin-bottom:0;
}

.profile_expierince_stus{
    background:#dcfce7;
    color:#15803d;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.profile_expierince_meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:0px;
}

.profile_expierince_meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#475569;
    font-size:14px;
}

.profile_expierince_meta i{
    color:#d31e18;
}

.profile_info_bx{
    margin-top:15px;
}

.profile_info_bx h6{
    display:block;
    font-size:13px;
    color:#94a3b8;
    margin-bottom:1px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.profile_info_bx p{
    margin:0;
    font-size:16px;
    color:#1e293b;
    line-height:28px;
}

.profile_desc_crd{
     background: #f9f4f6b0;
    border: 1px dashed #d4030e2b;
    border-radius:14px;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
    margin-top:15px;
}

.profile_desc_crd:hover{
    background:#fffafa;
    border-color:#202226;
}

.profile_desc_crd label{
    display:block;
    color:#64748b;
    font-size:13px;
    margin-bottom:5px;
    font-weight:600;
}

.profile_desc_crd p{
    margin:0;
    color:#334155;
    font-size:15px;
}

.profile_desc_crd a{
    width: 32px;
    height: 32px;
       min-width: 32px;
   min-height: 32px;
    border-radius:50%;
    background:#d31e18;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}


/*======================================
 SKILLS
======================================*/

.profile_skills_list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.profile_skills_list span{
    background:#f3f3ef;
    color:#d31e18;
    padding:3px 15px 1px;
    border-radius:30px;
    font-size:12px;
    font-weight:500;
    transition:.3s;
}

.profile_skills_list span:hover{
    background:#d31e18;
    color:#fff;
}


.profile_edit_link_btn{

    color:#d31e18;

    font-weight:600;

    text-decoration:none;

}

.profile_edit_link_btn:hover{

    color:#1d4ed8;

}


/*======================================
 EDUCATION ICON
======================================*/

.profile_education_bg{

    background:#f3e8ff;

    color:#9333ea;

}

.profile_resume_bx{
    display:flex;
    align-items:center;
    gap:18px;
    padding:10px 15px;
    border:1px solid #e5e7eb;
    border-radius:16px;
    transition:.35s;
    background:#fff;
}

.profile_resume_bx:hover{
    border-color:#d31e18;
    box-shadow:0 12px 25px rgba(37,99,235,.12);
    transform:translateY(-2px);
}

.profile_resume_icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:18px;
    background:#fff1f2;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile_resume_icon i{
    font-size:30px;
    color:#dc2626;
}

.profile_resume_content{
    flex:1;
}

.profile_resume_content h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
}

.profile_resume_content p{
    margin:0;
    font-size:14px;
    color:#64748b;
}


.profile_detail_card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:16px;

    padding:10px 15px;

    height:100%;

    transition:.35s;

}

.profile_detail_card:hover{

    border-color:#d31e18;

    box-shadow:0 10px 22px rgba(0,0,0,.08);

}

.profile_detail_card small{

    display:block;

    font-size:13px;

    color:#94a3b8;

    margin-bottom:2px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.profile_detail_card h6{

    font-size:16px;

    font-weight:600;

    margin:0;

    color:#0f172a;

}


.profile_dashboard_card,
.profile_detail_card,
.profile_resume_bx{

    transition:all .35s ease;

}


.profile_left_bx_middel {
    background: #fbf7f9;
    border-radius: 18px;
    padding: 10px 12px;
    border: 1px solid #d4030e0f;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.profile_left_bx_middel h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.profile_left_bx_middel h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.profile_left_bx_middel p {
    margin: 0px;
    font-size: 15px;
}
.profile_left_bx_middel i {
    color: #d31e18;
    }


 .profile_left_top_add_btn{
     color: #d4030e;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
}

.profile_bx_middel_icon{
    color: #d31e18;
    background: #f62b161c;
        min-width: 35px;
   min-height: 35px;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    text-align: center;
    line-height: 35px;
    margin-right: 12px ;
}

.profile_bx_middel_icon.text-danger{
    background: #dc354521 !important;
}

.profile_bx_middel_icon.text-success{
    background: #19885e38 !important;
}

.profile_bx_middel_icon.text-info{
    background: #0dcaf02e !important;
}

.profile_bx_middel_icon.text-ccc{
background: #5c5c5c21 !important;
    color: #5c5c5c8f !important;
}

.background_edf2f759{
    background: #fbf7f9 !important;
}

@media (max-width: 600px) {
    
    .profile_expierince_content_bx h6 {
    font-size: 14px;
}
    
    .profile_expierince_icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
        font-size: 24px;
            border-radius: 12px;
    }
    
    .profile_expierince_card {
    display: flex;
    gap: 12px;
    }
    .profile_left_bx_middel h5 {
    font-size: 15px;
    }
    .profile_left_top_add_btn {
    font-size: 14px;
    }
    
    .profile_resume_content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.profile_resume_icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.profile_custome_card_head h5 {
    font-size: 16px;
}

.profile_custome_card_head a {
    font-size: 14px;
}

.profile_custome_card_head {
    margin-bottom: 18px;
}
    
}

/* =============== Profile Page Css  End=======================*/



/*---------- filletr -------------*/
.mobile-filter-btn {
    display: none;
}

.filter-drawer-header {
    display: none;
}

@media (max-width: 991px) {

    .mobile-filter-btn {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-filter-btn button {
        border: 1px solid #e11d2e;
        background: #fff;
        color: #e11d2e;
        padding: 9px 18px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
    }

.job-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    padding: 10px 15px 15px;
    transition: all 0.35s ease;
}

    .job-sidebar.active {
        right: 0;
    }

.filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 10px;
    padding-bottom: 0px;
    /* border-bottom: 1px solid #eee; */
}
    .filter-drawer-header h3 {
        margin: 0;
    }

.filter-drawer-header button {
    border: none;
    background: #fff0f1;
    color: #e11d2e;
    width: 27px;
    height: 27px;
    border-radius: 50%;
}

    .filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
    }

    .filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.mobile-filter-btn {
    display: none;
}

@media (max-width: 767px) {

    .job-sort-box {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .job-sort-box .select {
        flex: 1;
    }

.mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 33px;
    flex-shrink: 0;
    border: 1px solid #e11d2e;
    background: #fff;
    color: #e11d2e;
    border-radius: 6px;
}
.py-50 {
    padding: 30px 0;
}
}

/*    --------    search   ----------  */
/* Desktop par close button hidden */
#clearMobileSearch {
    display: none;
}
@media(max-width:767px){

.mobile-extra-search{
    display:none;
}


#homeJobSearchForm.active .mobile-extra-search{
    display:block;
}


#homeJobSearchForm.active #clearMobileSearch{
    display:flex !important;
}


#clearMobileSearch{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:25px;
    height:25px;
    border-radius:50%;
    border:none;
}

}


@media (max-width: 767px) {


.search-form .form-group-icon .fa-times {
    position: absolute;
    left: 7px;
    top: 4px;
}
.search__menu{
    display:none;
}

.search-form {
    margin-top: 42px !important;
}

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

.new_search{
    margin-top: 50px;
    padding-top: 15px;
}

.close-search-box {
    position: absolute;
    top: 10px !important;
    right: 12px;
    width: 29px !important;
    height: 29px !important;
    line-height: 31px !important;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}
}
.job-grid{
           background: #F8F9FC;
}


.sticky-ads img{
    
    border-radius: 10px;
    background-color:#fff;
}

.search-form {
    position: relative;
    z-index: 2;
}

.close-search-box {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    line-height: 36px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

.close-search-box:hover{
    background: #e5e7eb;
}


.sss .nice-select {
background: #f5f6f9 !important;

}





/*---------company -------*/
/* ================= COMPANY HERO ================= */

.hs-company-hero {
    width: 100%;
    padding: 0px 0 0px;
}


.hs-company-cover {
    height: 320px;
    border-radius: 0;
    overflow: hidden;
    position: relative;

    background-image: url('/frontend/assets/img/7ed4e826-bcd4-4bb7-8725-d78d3d8f7898.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hs-company-content h2{
        color: #ffffff;
    font-size: 29px !important;
}
.hs-company-overlay{

    position:absolute;
    inset:0;

    background:
   linear-gradient(90deg, rgb(3 18 55 / 0%), rgb(61 38 134 / 89%), rgb(0 0 0 / 0%));

}



.hs-company-content{

    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    align-items:center;

    padding:40px;

    gap:25px;

    color:white;

}
.hs-company-logo {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}


.hs-company-logo img{

  height: 76px;
    height: 149px;
    height: 140px;

}

.hs-company-details {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
}

.hs-company-details > div {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}
.hs-company-details h1{

    font-size:34px;

    margin:8px 0;

    font-weight:700;

}



.hs-check {
    color: #2de16f;
    font-size: 18px;
}

.hs-verified {
    font-size: 14px;
    color: #FFEB3B;
}
.hs-tagline {
    font-size: 13px;
    color: #eee;
}


.hs-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0px 0;
}



.hs-rating span {
    color: #ffc107;
    font-size: 14px;
}



.hs-rating small{

    color:white;

}



.hs-details{

    font-size:14px;

    color:#ddd;

}



.hs-details span{

    margin:0 8px;

}




.hs-follow-btn {
    background: #6414da;
    border: none;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
}



.hs-share-btn {
    background: #c9c6db;
    color: #6414da;
    border: none;
    padding: 0px 11px;
    border-radius: 6px;
    margin-left: 8px;
    font-size: 17px;
    font-weight: 800;
}


/* ================= STATS ================= */


.hs-stats-box {
    background: white;
    position: relative;
    margin: -35px 45px 0;
    z-index: 5;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    padding: 15px;
}




.hs-stat-item{

    display:flex;

    align-items:center;

    gap:15px;

    border-right:1px solid #eee;

    padding-left:15px;

}



.hs-stat-item:last-child{

    border:none;

}



.hs-stat-icon {
    width: 35px;
    height: 36px;
    box-shadow: 0px 0px 12px #ffd3db;
    border-radius: 18%;
    background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hs-stat-item h3 {
    margin: 0;
    font-size: 20px;
    color: #111827;
}


.hs-stat-item p {
    margin: 0px 0 0;
    font-size: 13px;
    color: #777;
}



/* ================= RESPONSIVE ================= */


@media(max-width:992px){

    .hs-stats-box{

        grid-template-columns:repeat(2,1fr);

    }


    .hs-company-content{

        padding:20px;

    }

}



@media(max-width:600px){


    .hs-company-content{

        flex-direction:column;

        align-items:flex-start;

    }


    .hs-stats-box{

        grid-template-columns:1fr;

        margin:0;

    }

}











.hs-profile-section {
    background: #f8f7fc;
    padding: 45px 0 55px;
    color: #15122b;
}

.hs-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tabs */
.hs-profile-tabs {
    display: flex;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid #e8e3f2;
    margin-bottom: 32px;
}

.hs-profile-tabs a {
    position: relative;
    padding: 0 0 10px;
    color: #77718b;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s ease;
}

.hs-profile-tabs a:hover {
    color: #6c2bd8;
}

.hs-profile-tabs .active {
    color: #6c2bd8;
    font-weight: 700;
}

.hs-profile-tabs .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #6c2bd8;
    border-radius: 10px 10px 0 0;
}

/* Main Grid */
.hs-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.hs-about-content,
.gallery-area {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}




.gallery-area {
    overflow: hidden;
}

.hs-main-image {
    width: 100%;
    max-width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.hs-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hs-gallery-owl {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 14px;
}

.hs-gallery-owl .owl-stage-outer {
    width: 100%;
    overflow: hidden;
}

.hs-gallery-item {
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.hs-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {

    .hs-profile-grid {
        grid-template-columns: 1fr;
    }

    .hs-main-image {
        height: 280px;
    }

}

@media (max-width: 575px) {

    .hs-main-image {
        height: 230px;
    }

}



/* Left Content */
.hs-about-content {
    background: #fff;
    border: 1px solid #ebe6f4;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(108, 43, 216, .06);
}

.hs-about-content h3 {
    margin: 0 0 0px;
    font-size: 24px;
    font-weight: 700;
    color: #17122d;
}

.hs-about-content > p {
    margin: 0;
    color: #77718b;
    font-size: 14px;
    line-height: 1.8;
}

/* Company Details */

.hs-company-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 15px 0;
}

.hs-company-details > div {
    position: relative;
   min-height: 120px;
    padding: 10px 15px;
    border-radius: 14px;
    border: 1px solid #eee7ff;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(108, 43, 216, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Left hover line */
.hs-company-details > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        180deg,
        #6c2bd8,
        #a855f7
    );
    opacity: 0;
    transition: all 0.3s ease;
}

/* Different soft background for every box */

.hs-company-details > div:nth-child(1) {
    background: #fffaff;
}

.hs-company-details > div:nth-child(2) {
    background: #f9fbff;
}

.hs-company-details > div:nth-child(3) {
    background: #fffdf7;
}

.hs-company-details > div:nth-child(4) {
    background: #f8fffb;
}

.hs-company-details > div:nth-child(5) {
    background: #fbf9ff;
}

.hs-company-details > div:nth-child(6) {
    background: #f8fcff;
}


/* Hover */

.hs-company-details > div:hover {
    transform: translateY(-5px);
    border-color: #d8c4ff;
    box-shadow: 0 12px 28px rgba(108, 43, 216, 0.14);
}

.hs-company-details > div:hover::before {
    opacity: 1;
}


/* Icon */

.hs-company-details span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    margin-bottom: 10px;

    font-size: 18px;
    color: #6c2bd8;

    background: linear-gradient(
        135deg,
        #f1e8ff,
        #e5d6ff
    );

    box-shadow: 0 5px 12px rgba(108, 43, 216, 0.10);

    transition: all 0.3s ease;
}


/* Icon hover */

.hs-company-details > div:hover span {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(
        135deg,
        #6c2bd8,
        #8b5cf6
    );
    color: #ffffff;
    box-shadow: 0 7px 16px rgba(108, 43, 216, 0.25);
}


/* Heading */

.hs-company-details b {
    display: block;
    margin-bottom: 4px;

    font-size: 14px;
    font-weight: 700;
    color: #111827;
}


/* Text */

.hs-company-details p {
    margin: 0;

    font-size: 13px;
    line-height: 1.4;
    color: #6b7280;
}


/* Website */

.hs-company-details > div:nth-child(5) p {
    color: #6c2bd8;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 768px) {
    .hs-company-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hs-company-details {
        grid-template-columns: 1fr;
    }
}
/* Website */

.hs-company-details div:nth-child(5) p {
    color: #6c2bd8;
    font-weight: 600;
}


/* Hover text */

.hs-company-details > div:hover b {
    color: #6c2bd8;
}

.hs-company-details > div:hover p {
    color: #5f586f;
}

.review-stars i {
    color: #f5b301;
    font-size: 12px;
    margin-right: 2px;
}

/* Why Join */
.hs-about-content h4 {
    margin: 28px 0 18px;
    color: #17122d;
    font-size: 20px;
}

.hs-join-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.hs-join-box > div {
    position: relative;
    min-height: 105px;
    padding: 16px 10px 12px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    border: 1px solid transparent;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* Different card designs */

.hs-join-box > div:nth-child(1) {
    background: linear-gradient(145deg, #f4ecff, #ffffff);
    border-color: #d9c2ff;
}

.hs-join-box > div:nth-child(2) {
    background: linear-gradient(145deg, #eaf5ff, #ffffff);
    border-color: #bcdcff;
}

.hs-join-box > div:nth-child(3) {
    background: linear-gradient(145deg, #fff8df, #ffffff);
    border-color: #f5d77b;
}

.hs-join-box > div:nth-child(4) {
    background: linear-gradient(145deg, #eafff3, #ffffff);
    border-color: #b9e8cd;
}


/* Top decorative line */

.hs-join-box > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
}

.hs-join-box > div:nth-child(1)::before {
    background: #7c3aed;
}

.hs-join-box > div:nth-child(2)::before {
    background: #3b82f6;
}

.hs-join-box > div:nth-child(3)::before {
    background: #eab308;
}

.hs-join-box > div:nth-child(4)::before {
    background: #22c55e;
}


/* Icons */

.hs-join-box i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-bottom: 9px;

    font-size: 17px;

    transition: all 0.3s ease;
}

.hs-join-box > div:nth-child(1) i {
    color: #7c3aed;
    background: #eadcff;
}

.hs-join-box > div:nth-child(2) i {
    color: #3b82f6;
    background: #dceeff;
}

.hs-join-box > div:nth-child(3) i {
    color: #d69e00;
    background: #fff0b8;
}

.hs-join-box > div:nth-child(4) i {
    color: #16a34a;
    background: #d9f8e5;
}


/* Text */

.hs-join-box p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #374151;
    font-weight: 600;
}


/* Hover */

.hs-join-box > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(108, 43, 216, 0.12);
}

.hs-join-box > div:hover::before {
    left: 0;
    width: 100%;
}

.hs-join-box > div:hover i {
    transform: scale(1.12) rotate(-5deg);
}


/* Mobile */

@media (max-width: 768px) {
    .hs-join-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hs-join-box {
        grid-template-columns: 1fr 1fr;
    }
}
/* Gallery */
.gallery-area {
    background: #fff;
    border: 1px solid #ebe6f4;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(108, 43, 216, .06);
}

.hs-main-image {
    position: relative;
    width: 100%;
    height: 265px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #f0e8ff,
        #faf8ff
    );
}

.hs-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(108, 43, 216, .08),
        rgba(108, 43, 216, .22)
    );
    pointer-events: none;
}


/* Small Images */
.hs-small-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 12px 0 25px;
}

.hs-small-images img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #f4f0fa;
    transition: .3s ease;
}

.hs-small-images img:hover {
    border-color: #6c2bd8;
    transform: translateY(-2px);
}

/* Benefits */
.gallery-area h4 {
    margin: 0 0 15px;
    font-size: 20px;
    color: #17122d;
}

.hs-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.hs-benefits div {
    min-height: 105px;
    padding: 14px 7px;
    border: 1px solid #eee8f8;
    border-radius: 12px;
    background: #fcfbff;
    text-align: center;
    transition: .3s ease;
}

.hs-benefits div:hover {
    transform: translateY(-4px);
    border-color: #d6c1fa;
    box-shadow: 0 8px 20px rgba(108, 43, 216, .10);
}

.hs-benefits span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 9px;
    border-radius: 12px;
    background: #f0e8ff;
    color: #6c2bd8;
    font-size: 19px;
}

.hs-benefits p {
   margin: 0;
    color: #504a61;
    font-size: 14px;
    line-height: 1.2;
}

/* Career Section */
.hs-career-section {
    padding: 55px 0;
    background: #f8f7fc;
}

.hs-career-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hs-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hs-career-card {
    background: #fff;
    border: 1px solid #ebe6f4;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 30px rgba(108, 43, 216, .06);
}

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

.hs-card-header h4,
.card-header h4 {
    margin: 0;
    color: #17122d;
    font-size: 20px;
}

.hs-card-header a,
.card-header a {
    color: #6c2bd8;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.hs-job-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #eeeaf5;
}

.hs-job-item:last-child {
    border-bottom: none;
}

.hs-job-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1e9ff;
    color: #6c2bd8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.hs-job-item > div:nth-child(2) {
    flex: 1;
}

.hs-job-item h5 {
    margin: 0 0 0px;
    color: #211b35;
    font-size: 15px;
}

.hs-job-item p {
    margin: 0;
    color: #80798e;
    font-size: 14px;
}

.hs-job-btn {
    border: 1px solid #6c2bd8;
    background: #fff;
    color: #6c2bd8;
    padding: 7px 13px;
    border-radius: 7px;
    font-size: 11px;
    cursor: pointer;
    transition: .3s ease;
}

.hs-job-btn:hover {
    background: #6c2bd8;
    color: #fff;
}




/* Reviews */
.hs-review-box {
    display: grid;
    grid-template-columns: 55px 100px 1fr;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #eee7f7;
    transition: all 0.3s ease;
}

.hs-review-box:last-child {
    border-bottom: none;
}


.hs-review-box img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f0e7ff;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(108, 43, 217, 0.10);
}

.hs-review-box h5 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 700;
    color: #21153a;
}

.hs-review-box span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #f5b700;
}

.hs-review-box p {
    margin: 0;
    padding: 14px 18px;
    background: #faf7ff;
    border: 1px solid #eee5fa;
    border-radius: 12px;
    color: #625a70;
    font-size: 13px;
    line-height: 1.6;
    position: relative;
}


.hs-review-box p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: #6c2bd9;
    border-radius: 5px;
}


/* Hover */
.hs-review-box:hover p {
    background: #f7f1ff;
    border-color: #dcc8f6;
}

.hs-review-box:hover img {
    border-color: #d8c1f7;
}

/* CTA */
.hs-career-banner {
    margin-top: 25px;
    padding: 25px 30px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #4d16a8,
        #6c2bd8,
        #8445e5
    );
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 30px rgba(108, 43, 216, .20);
}

.hs-career-banner h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.hs-career-banner p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.hs-career-banner a {
    display: inline-block;
    padding: 11px 25px;
    background: #fff;
    color: #6c2bd8;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .3s ease;
}

.hs-career-banner a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

/* Responsive */
@media (max-width: 991px) {

    .hs-profile-grid,
    .hs-career-grid {
        grid-template-columns: 1fr;
    }

    .hs-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}





/* About Us tab */
#about-us .hs-profile-grid {
     display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    width: 100%;
}

#about-us .hs-about-content {
    width: 100%;
}

#about-us .gallery-area {
    width: 100%;
    min-width: 0;
}

/* MAIN IMAGE */
#about-us .hs-main-image {
    width: 100%;
}

/* MAIN IMAGE SIZE */
#about-us .hs-main-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

#about-us .hs-gallery-owl {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 13px;
}

/* BENEFITS */
#about-us .hs-benefits {
    width: 100%;
}


/* JOBS TAB - LEFT JOBS + RIGHT IMAGE */
#jobs .hs-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    width: 100%;
}

#jobs .hs-career-card {
    width: 100%;
}

#jobs .gallery-area {
    width: 100%;
    min-width: 0;
}


/* MOBILE */
@media (max-width: 991px) {

    #about-us .hs-profile-grid,
    #jobs .hs-profile-grid {
        grid-template-columns: 1fr;
    }

}




@media (max-width: 767px) {

    .hs-profile-section,
    .hs-career-section {
        padding: 30px 0;
    }

    .hs-container,
    .hs-career-container {
        width: 94%;
    }

    .hs-about-content,
    .gallery-area,
    .hs-career-card {
        padding: 18px;
        border-radius: 14px;
    }

    .hs-company-details {
        grid-template-columns: 1fr;
    }

    .hs-company-details div:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .hs-company-details div:nth-child(even) {
        padding-left: 0;
    }

    .hs-join-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .hs-main-image {
        height: 210px;
    }

    .hs-small-images img {
        height: 60px;
    }

    .hs-review-box {
        grid-template-columns: 45px 1fr;
    }

    .hs-review-box p {
        grid-column: 2;
    }

    .hs-career-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}



.hs-review-section{
    padding: 50px 0px 30px;
}


/* Company Gallery Owl Slider */

.hs-gallery-owl {
    width: 100%;
    margin-top: 12px;
    overflow: hidden;
}

.hs-gallery-owl .owl-stage {
    display: flex;
    align-items: stretch;
}

.hs-gallery-owl .owl-item {
    box-sizing: border-box;
}

.hs-gallery-item {
    width: 100%;
    cursor: pointer;
    padding: 0 5px;
    box-sizing: border-box;
}

.hs-gallery-item img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    display: block;
    border-radius: 9px;
    border: 2px solid transparent;
    transition: .25s ease;
    box-sizing: border-box;
}

.hs-gallery-item.active img {
    border-color: #6C2BD8;
}

/* Gallery arrows hide */
.hs-gallery-owl .owl-nav {
    display: none !important;
}

/* Gallery dots hide */
.hs-gallery-owl .owl-dots {
    display: none !important;
}





.hs-gallery-owl {
    width: 100%;
    margin-top: 12px;
}

.hs-gallery-item {
    cursor: pointer;
}

.hs-gallery-item img {
    width: 100%;
    height: 68px;
    object-fit: cover;
    display: block;
    border-radius: 9px;
    border: 2px solid transparent;
    transition: .3s ease;
}

.hs-gallery-item:hover img {
    border-color: #6c2bd8;
}

.hs-gallery-item.active img {
    border-color: #6c2bd8;
}


/* Owl ke arrows bilkul nahi */

.hs-gallery-owl .owl-nav {
    display: none !important;
}


/* Dots bhi nahi */

.hs-gallery-owl .owl-dots {
    display: none !important;
}


/* Main image normal */

.hs-main-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    background: #f0e8ff;
}

.hs-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



@media (max-width: 480px) {

    .hs-profile-tabs {
        gap: 25px;
    }

    .hs-profile-tabs a {
        font-size: 12px;
    }

    .hs-about-content h3 {
        font-size: 21px;
    }

    .hs-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .hs-job-item {
        flex-wrap: wrap;
    }

    .hs-job-btn {
        margin-left: 53px;
    }
}


/* Jobs tab full width */
#jobs .hs-career-grid {
    display: block;
    width: 100%;
}

#jobs .hs-career-card {
    width: 100%;
    max-width: 100%;
}

/* Job items */
#jobs .hs-job-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Job content ko available space */
#jobs .hs-job-item > div:nth-child(2) {
    flex: 1;
}

/* View Job button */
#jobs .hs-job-btn {
    margin-left: auto;
}

/* CTA full width */
#jobs .hs-career-banner {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 575px) {

    #jobs .hs-job-item {
        flex-wrap: wrap;
    }

    #jobs .hs-job-btn {
        margin-left: 0;
    }

}



/* Benefits tab full width */
#benefits .hs-profile-grid {
    display: block;
    width: 100%;
}

#benefits .gallery-area {
    width: 100%;
    max-width: 100%;
}

/* Benefits heading */
#benefits .gallery-area h4 {
    margin-bottom: 20px;
}

/* Benefits cards full width */
#benefits .hs-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 100%;
}

#benefits .hs-benefits > div {
    width: 100%;
    min-height: 125px;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 991px) {

    #benefits .hs-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Mobile */
@media (max-width: 575px) {

    #benefits .hs-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Responsive */


@media(max-width:768px){


.hs-profile-grid{

    grid-template-columns:1fr;

}



.hs-profile-tabs{

    overflow:auto;

}



.hs-company-details{

    grid-template-columns:1fr;

}


}





/* ================= CAREER SECTION ================= */


.hs-career-section{

    padding:50px 0;

    background:#f8fafc;


}



.hs-career-container{

    width:100%;

    max-width:1200px;

    margin:auto;

}



.hs-career-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}




/* Cards */

.hs-career-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:10px;

    padding:20px;

    box-shadow:0 3px 10px rgba(0,0,0,.05);

}



.hs-card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}



.hs-card-header h4{

    font-size:20px;

    color:#111827;

}



.hs-card-header a{

    color:#6c2bd9;

    font-size:14px;

    text-decoration:none;

}





/* Job List */


.hs-job-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 0;

    border-bottom:1px solid #eee;

}



.hs-job-item:last-child{

    border-bottom:0;

}



.hs-job-icon{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#eff6ff;

    color:#2563eb;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:bold;

}



.hs-job-info{

    flex:1;

}



.hs-job-info h5{

    margin:0;

    font-size:13px;

    color:#111827;

}



.hs-job-info p{

    margin:3px 0;

    font-size:11px;

    color:#777;

}



.hs-job-btn{

    border:1px solid #6c2bd9;

    color:#6c2bd9;

    background:#fff;

    padding:5px 12px;

    border-radius:5px;

    font-size:12px;

}

.hs-tab-content {
    display: none;
}

.hs-tab-content.active {
    display: block;
}

.hs-profile-tabs a {
    cursor: pointer;
}




/* Reviews */


.review-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px;
    box-sizing: border-box;
}

.hs-review-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.hs-rating-snapshot h4,
.hs-overall-rating h4,
.hs-write-review h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.hs-rating-snapshot > p {
    margin: 0 0 14px;
    font-size: 13px;
    color: #777;
}

.hs-rating-row {
    display: grid;
    grid-template-columns: 55px 1fr 25px;
    align-items: center;
    gap: 8px;
    margin: 7px 0;
    font-size: 13px;
    color: #555;
}

.hs-rating-row b {
    font-weight: 500;
    color: #555;
}

.hs-rating-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
}

.hs-rating-bar span {
    display: block;
    height: 100%;
    background: #ff9800;
    border-radius: 20px;
}

.hs-overall-rating {
    text-align: center;
}

.hs-overall-rating strong {
    display: block;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.hs-stars {
    color: #ff9800;
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.hs-overall-rating > span {
    display: block;
    margin-top: 5px;
    color: #6c2bd8;
    font-size: 13px;
    font-weight: 600;
}

.hs-write-review {
    padding-left: 10px;
}

.hs-review-stars {
    display: flex;
    gap: 8px;
    margin: 20px 0 12px;
}

.hs-review-stars button {
    width: 48px;
    height: 42px;
    background: #fff;
    border: 1px solid #ff9800;
    border-radius: 5px;
    color: #ff9800;
    font-size: 24px;
    cursor: pointer;
    transition: .2s;
}

.hs-review-stars button:hover {
    background: #ff9800;
    color: #fff;
}

.hs-write-review p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.hs-employee-review {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.hs-employee-review:last-child {
    border-bottom: 0;
    padding-bottom: 5px;
}

.hs-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hs-review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.hs-review-user h5 {
    margin: 0 0 -5px;
    font-size: 16px;
    color: #111827;
}

.hs-review-user span {
    font-size: 12px;
    color: #888;
}

.hs-review-rating {
    position: absolute;
    right: 0;
    top: 30px;
    color: #ff9800;
    font-size: 16px;
    letter-spacing: 2px;
}

.hs-employee-review > p {
    margin: 15px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Bottom Banner */


.hs-career-banner{

    margin-top:20px;

    background:#071b52;

    color:white;

    border-radius:8px;

    padding:18px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.hs-career-banner h3{

    margin:0;

    font-size:20px;
color: #fff;
}



.hs-career-banner p{

    margin:5px 0 0;

    font-size:14px;

    color:#ddd;

}



.hs-career-banner a{

    background:#6c2bd9;

    color:white;

    padding:10px 30px;

    border-radius:5px;

    text-decoration:none;

    font-size:13px;

}




/* Responsive */


@media(max-width:768px){


.hs-career-grid{

    grid-template-columns:1fr;

}



.hs-review-box{

    grid-template-columns:45px 1fr;

}



.hs-review-box p{

    grid-column:1/3;

}



.hs-career-banner{

    flex-direction:column;

    gap:15px;

    text-align:center;

}


}


/* Benefits Icon Colors */
.hs-benefits div:nth-child(1){
    background:#fff1f2;
    border-color:#fecaca;
}


.hs-benefits div:nth-child(2){
    background:#eff6ff;
    border-color:#bfdbfe;
}


.hs-benefits div:nth-child(3){
    background:#fffbeb;
    border-color:#fde68a;
}


.hs-benefits div:nth-child(4){
    background:#f0fdf4;
    border-color:#bbf7d0;
}


.hs-benefits div:nth-child(5){
    background:#f5f3ff;
    border-color:#ddd6fe;
}

.hs-benefits div:nth-child(1) span{

    color:#ef4444;
}


.hs-benefits div:nth-child(2) span{

    color:#2563eb;
}


.hs-benefits div:nth-child(3) span{

    color:#f59e0b;
}


.hs-benefits div:nth-child(4) span{

    color:#16a34a;
}


.hs-benefits div:nth-child(5) span{

    color:#7c3aed;
}


.login_bX_home{
    
    background:#fff;
    border-radius:12px;
    padding:20px 35px 25px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.login_bX_home h2 {
    font-size: 26px;
    margin-bottom: 4px;
    color: #d4030e;
}

.login_sec_left_bx{
    background:#fff;
    padding:50px 60px;
}

.login_sec_right_bx{
       background: linear-gradient(135deg, #f0e9e9 0%, #f9f4f5 18%, #fbf9fa 35%, #fdfefd 70%, #f2eaeb 100%);
}
.owner-wrapper {
    position: absolute;
    right: -1px;
    bottom: -1px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.owner-box {
    background: #ffffff;
    border: 1px solid #dce8fb;
    border-radius: 6px 6px 0px 0px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    border-bottom: none !important;
}

.owner-box i {
    color: #ea0612 !important;
    font-size: 10px;
    margin-right: 6px;
}
.owner-label {
    color: #666;
    font-size: 13px;
    margin-right: 6px;
}

.owner-name {
    color: #ea0612;
    font-weight: 500;
    font-size: 12px;
    line-height: 0px;
}
.login_sec_content_bx{
    width: 100%;
}

.login_sec_content_bx h1{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    color:#000;
}

.login_sec_content_bx p{
    font-size:14px;
    color:#263238;
    line-height:1.7;
}

.login_sec_content_bx hr{
    margin:22px 0 19px;
}

.login_sec_content_bx .login_logo img{
    width:120px;
}

.login_stats_bx h2{
    color:#3965f5;
    font-weight:700;
    margin-bottom:8px;
}

.login_stats_bx span{
    color:#333;
    font-size:17px;
}

.login_sec_right_bx_width{
        width:540px;
    margin: auto;
}

.login_card_bx{

    background:#fff;
    border-radius:12px;
    padding:20px 35px 25px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);

}

.login_card_bx h2{
        font-size: 26px;
    margin-bottom: 7px;
    font-weight:700;
    color:#0b2b61;
}

.login_card_bx p{
    font-size:14px;
    margin-bottom:20px;
}

.login_card_bx label{
    font-weight:400;
    font-size:14px;
    margin-bottom:0px;
}

.login_sec_right_bx .input-group-text{
    background:#fff;
}

.login_sec_right_bx .form-control{
    height:40px;
}

.login_otp-btn {
    background: #d4030e;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 30px;
    border-radius: 6px;
    width: 100%;
}
.login_divider{
    position:relative;
    text-align:center;
        margin: 15px 0px 10px;
}

.login_divider::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:45%;
    height:1px;
    background:#ddd;
}

.login_divider::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    width:45%;
    height:1px;
    background:#ddd;
}

.login_divider span{
    background:#fff;
    padding:0 10px;
    position:relative;
}

.login_enterprise{
    color: #0b2b61;
    font-weight: 400;
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 767px) {
    .login_sec_left_bx {
        display: none !important;
    }
    
        .login_card_bx {
                width: 100% !important;
        margin: 0 !important;
    }
    
}


@media(max-width:991px){
.login_sec_right_bx_width{
        width:600px;
    margin: auto;
}
.navbar>.container{
    display: flex;
    flex-wrap: inherit;

        justify-content: start !important;
}
.login_sec_left_bx{
padding:60px 100px;
}

.login_sec_content_bx h1{
font-size:38px;
}

.login_sec_content_bx p{
font-size:18px;
}

.login_card_bx{
width:100%;
margin:30px;
}
.job-single {
    margin-top: 40px;
}
}

.condidate_login_modal{
    border-radius:18px;
    overflow:hidden;
}

.condidate_login_modal .modal-header{
    padding:25px 25px 10px;
}

.condidate_login_modal .modal-title{
    font-size:22px;
    color:#222;
}

.condidate_login_modal .condidate_mobile_bx{
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    height:42px;
}

.condidate_country_code{
    width:70px;
    background:#fff;
    border-right:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:500;
     color: #000000a6;
}

.condidate_mobile_bx input{
    font-size:18px;
    box-shadow:none!important;
}

.condidate_terms{
    color:#777;
    font-size:14px;
    line-height:22px;
}

.condidate_terms a{
    color:#d4030e;
    text-decoration:none;
}


.job-single-content{
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 11px #f0f0f0d1;
    border: 1px solid #edecec;
}


.header-search-panel{
    display:none;
    background:#fff;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:18px 0;
}
.job-header-search{
    display:none;
}

.job-header-search.search-open{
    display:block;
}
.header-search-panel.active{
    display:block;
}

.header-search-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 38px;
    padding: 0 11px;
    background: #ffffff;
    border: 1px solid #c30000;
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
    /* box-shadow: 0 5px 20px rgba(0,0,0,.06); */
    margin-left: 14px;
}

.header-search-btn i {
    color: #d4030e;
    font-size: 16px;
}

.search-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 5px;
    background: #fdf1f2;
    color: #d4030e;
    cursor: pointer;
    line-height: 10px;
    transition: .3s;
    border: 1px solid #d4030e;
}
.search-reset-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 5px;
    background: #f3f3f3d4;
    color: #000000;
    cursor: pointer;
    line-height: 10px;
    transition: .3s;
    border: 1px solid #242222;
}
.job-header-search .nice-select {
    background: #ffffff !important;
       box-shadow: 0px 4px 7px #96969624 !important;
    border: 1px solid #c0c0c03d !important;
    border-radius: 5px !important;
    height: 40px !important;
}
.search-close-btn:hover{
    background:#e30613;
    color:#fff;
}

.company-avatar {
    width: 43px;
    height: 43px;
    border-radius: 10%;
    background: linear-gradient(45deg, #ae030c, #f30814);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 5px 5px; */
    font-size: 23px;
    /* line-height: 49px; */
    font-weight: 700;
    text-transform: uppercase;
}

.d-none{
    display:none;
}

#toggleDepartments{
    cursor:pointer;
    display:inline-block;
    margin-top:10px;
    font-size:14px;
}

#departmentSearch{
    margin-bottom:12px;
}


#loader{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.6);
    z-index:99;
    display:flex;
    justify-content:center;
    align-items:center;
}


.lds-hourglass {
    display:inline-block;
    position:relative;
    width:80px;
    height:80px;
}


.lds-hourglass:after {
    content:" ";
    display:block;
    width:64px;
    height:64px;
    margin:8px;
    border-radius:50%;
    border:6px solid #0066ff;
    border-color:#0066ff transparent #0066ff transparent;
    animation: lds-hourglass 1.2s linear infinite;
}


@keyframes lds-hourglass {

0% {
    transform:rotate(0deg);
}

100% {
    transform:rotate(360deg);
}

}

.distance-icon{
        background: #9c27b02b;
    color: #9C27B0;
}



/* =========================================================
   RESUME DESIGN - UNIQUE PREFIX: rm_
========================================================= */

.rm_resume,
.rm_resume *{
    box-sizing:border-box;
}

.rm_resume {
    width: 900px;
    max-width: 100%;
    margin: 0px auto;
    background: #ffffff;
    color: #172b46;
    font-family: "Inter",Arial,sans-serif;
    /* box-shadow: 0 18px 50px rgba(9,43,70,.14); */
    overflow: hidden;
    border: 1px solid #e0e6eb94;
}

/* =========================================================
   HEADER
========================================================= */
.rm_header {
    min-height: 150px;
    position: relative;
    display: flex;
    background: #ffffff;
    border-bottom: 4px solid #e5b43f;
    overflow: hidden;
    align-items: center;
}

/* Left dark area */
.rm_header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 230px;
    background: #092b46;
    border-bottom-right-radius: 55px;
}
.rm_header:after {
    content: "";
    position: absolute;
    left: 207px;
    top: 0;
    width: 25px;
    height: 100%;
    background: #e5b43f;
    border-radius: 0 0 20px 0;
}

/* =========================================================
   PROFILE
========================================================= */

.rm_profile {
    position: relative;
    z-index: 5;
    width: 210px;
    min-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
.rm_profile:before {
    content: "";
    position: absolute;
    width: 138px;
    height: 138px;
    border: 2px solid rgba(229,180,63,.8);
    border-radius: 50%;
}
*/
/*.rm_profile:after {
    content: "";
    position: absolute;
    width: 123px;
    height: 123px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}*/

.rm_profile_img {
    position: relative;
    z-index: 5;
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}


/* =========================================================
   HEADER CONTENT
========================================================= */
.rm_header_info {
    position: relative;
    z-index: 5;
    flex: 1;
    min-width: 0;
    padding: 30px 16px 30px 42px;
}
.rm_name {
    margin: 0 0 0px;
    color: #092b46;
    font-size: 30px;
    line-height: 23px;
    font-weight: 800;
    /* letter-spacing: .5px; */
    word-break: break-word;
}

.rm_name span{
    color:#d49b20;
}


.rm_designation {
    display: inline-block;
    margin-bottom: 9px;
    padding-bottom: 4px;
    color: #b78101;
    font-size: 12px;
    line-height: 13px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-bottom: 1px solid #e5b43f;
    font-style: italic;
}

/* =========================================================
   HEADER CONTACT
========================================================= */

.rm_contact_list{
    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:10px 22px;

    max-width:620px;
}


.rm_contact_item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto;
    max-width: 280px;
    min-width: 145px;
    color: #566879;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.rm_contact_item i {
    /* width: 25px; */
    /* min-width: 25px; */
    /* height: 25px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #092b46; */
    color: #092b46;
    border-radius: 50%;
    font-size: 12px;
}
.rm_header_intro{
    max-width:580px;

    margin:15px 0 0;

    color:#697987;

    font-size:10.5px;

    line-height:1.65;

    overflow-wrap:anywhere;
}


/* =========================================================
   BODY
========================================================= */
.rm_body {
    display: grid;
    grid-template-columns: 230px minmax(0,1fr);
    align-items: stretch;
    width: 100%;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.rm_left {
    min-width: 0;
    padding: 25px 24px 30px;
    background: #f6f8fa;
    border-right: 1px solid #e0e6eb;
}

.rm_box {
    width: 100%;
    margin-bottom: 25px;
}

.rm_box:last-child{
    margin-bottom:0;
}


/* =========================================================
   LEFT TITLE
========================================================= */

.rm_title {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    margin-bottom: 10px;
}

.rm_title i {
    width: 25px;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #092b46;
    color: #fff4db;
    border-radius: 50%;
    font-size: 11px;
}

.rm_title h3{
    margin:0;

    color:#092b46;

    font-size:13px;

    line-height:1.2;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:0px;

    white-space:nowrap;
}


.rm_title:after{
    content:"";

    flex:1;

    height:1px;

    margin-left:3px;

    background:#d7dee4;
}


/* =========================================================
   SKILLS
========================================================= */

.rm_skill_list{
    display:flex;

    flex-direction:column;

    gap:12px;
}


.rm_skill {
    width: 100%;
    line-height: 0;
    margin-bottom: 8px;
}

.rm_skill > span {
    min-width: 0;
    color: #344a5c;
    font-size: 12px;
    line-height: 25px;
    font-weight: 500;
    overflow-wrap: anywhere;
    /* margin-bottom: 7px; */
}

.rm_skill_bar{
    width:100%;

    height:5px;

    background:#d8dfe5;

    border-radius:20px;

    overflow:hidden;
}


.rm_skill_bar span{
    display:block;

    height:100%;

    background:#092b46;

    border-radius:20px;
}


/* =========================================================
   LANGUAGES
========================================================= */

.rm_language{
    width:100%;

    margin-bottom:16px;
}


.rm_language:last-child{
    margin-bottom:0;
}


.rm_language > div:first-child{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    margin-bottom:6px;
}


.rm_language > div:first-child span {
    color: #344a5c;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
}


.rm_language > div:first-child b{
    color:#8b969f;

    font-size:9px;

    font-weight:600;
}


.rm_language_bar{
    width:100%;

    height:5px;

    background:#d8dfe5;

    border-radius:20px;

    overflow:hidden;
}


.rm_language_bar span{
    display:block;

    height:100%;

    background:#092b46;

    border-radius:20px;

    position:relative;
}


.rm_language_bar span:after{
    content:"";

    position:absolute;

    right:0;
    top:0;

    width:15px;
    height:100%;

    background:#e5b43f;
}


/* =========================================================
   PERSONAL DETAILS
========================================================= */

.rm_personal{
    width:100%;
}


.rm_personal > div {
    display: grid;
    grid-template-columns: 88px 8px minmax(0,1fr);
    gap: 3px;
    padding: 5px 0;
    border-bottom: 1px dashed #d5dde4;
}

.rm_personal > div:last-child{
    border-bottom:0;
}


.rm_personal > div > span {
    color: #65717a;
    font-size: 11px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}


.rm_personal > div > b{
    color:#d49b20;

    font-size:10px;

    text-align:center;
}


.rm_personal > div > strong {
    color: #344a5c;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.rm_right {
    min-width: 0;
    padding: 25px 30px 38px;
    background: #ffffff;
}


.rm_content_box {
    width: 100%;
    margin-bottom: 25px;
}

.rm_content_box:last-child{
    margin-bottom:0;
}


/* =========================================================
   RIGHT TITLE
========================================================= */

.rm_content_title {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 13px;
}


.rm_content_title i {
    width: 25px;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #092b46;
    color: #fff4db;
    border-radius: 50%;
    font-size: 11px;
}
.rm_content_title h2 {
    margin: 0;
    color: #092b46;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.rm_content_title:after{
    content:"";

    flex:1;

    height:1px;

    margin-left:5px;

    background:#d7dee4;
}


/* =========================================================
   ABOUT
========================================================= */

.rm_about {
    margin: 0;
    padding-left: 35px;
    color: #60717f;
    font-size: 13px;
    line-height: 21px;
    overflow-wrap: anywhere;
}

/* =========================================================
   TIMELINE
========================================================= */

.rm_timeline{
    position:relative;

    width:100%;

    margin-left:18px;

    padding-left:28px;
}


.rm_timeline:before{
    content:"";

    position:absolute;

    left:6px;

    top:5px;

    bottom:5px;

    width:1px;

    background:#d3dbe2;
}


.rm_timeline_item{
    position:relative;

    width:100%;

    margin-bottom:28px;
}


.rm_timeline_item:last-child{
    margin-bottom:0;
}


/* Timeline dot */

.rm_dot{
    position:absolute;

    left:-30px;

    top:3px;

    width:16px;
    height:16px;

    border:2px solid #e5b43f;

    background:#ffffff;

    border-radius:50%;

    box-shadow:0 0 0 4px #f7f8f9;
}


.rm_dot:after{
    content:"";

    position:absolute;

    left:4px;
    top:4px;

    width:4px;
    height:4px;

    background:#092b46;

    border-radius:50%;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.rm_exp{
    display:grid;

    grid-template-columns:92px minmax(0,1fr);

    gap:15px;

    width:100%;
}


.rm_exp_date {
    color: #1677bd;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rm_exp_detail{
    min-width:0;
}


.rm_exp_detail h3 {
    margin: 0 0 4px;
    color: #092b46;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.rm_exp_detail h4{
    margin:0 0 8px;

    color:#ce9219;

    font-size:10.5px;

    line-height:1.4;

    font-weight:600;

    overflow-wrap:anywhere;
}


.rm_exp_detail p{
    margin:0;

    color:#687784;

    font-size:10.3px;

    line-height:1.7;

    overflow-wrap:anywhere;
}


.rm_exp_detail ul{
    margin:0;

    padding-left:15px;

    color:#687784;
}


.rm_exp_detail li{
    margin-bottom:4px;

    font-size:10.3px;

    line-height:1.65;

    overflow-wrap:anywhere;
}


.rm_exp_detail li:last-child{
    margin-bottom:0;
}


/* =========================================================
   EDUCATION
========================================================= */

.rm_education{
    display:grid;

    grid-template-columns:92px minmax(0,1fr);

    gap:15px;

    width:100%;
}


.rm_education_date{
    color:#1677bd;

    font-size:10px;

    line-height:1.5;

    font-weight:800;

    overflow-wrap:anywhere;
}


.rm_education_detail{
    min-width:0;
}


.rm_education_detail h3{
    margin:0 0 4px;

    color:#172b46;

    font-size:12.5px;

    line-height:1.4;

    font-weight:800;

    overflow-wrap:anywhere;
}


.rm_education_detail h4{
    margin:0;

    color:#ce9219;

    font-size:10.5px;

    line-height:1.5;

    font-weight:600;

    overflow-wrap:anywhere;
}


.rm_education_detail p{
    margin:6px 0 0;

    color:#687784;

    font-size:10px;

    line-height:1.6;

    overflow-wrap:anywhere;
}


/* =========================================================
   FOOTER
========================================================= */

.rm_footer{
    min-height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:12px 30px;

    background:#092b46;

    border-top:4px solid #e5b43f;

    text-align:center;
}


.rm_footer i{
    color:#e5b43f;

    font-size:17px;
}


.rm_footer span{
    color:#dce5eb;

    font-family:Georgia,serif;

    font-size:11px;

    line-height:1.5;

    font-style:italic;
}


/* =========================================================
   DYNAMIC DATA SAFETY
========================================================= */

.rm_resume img {
    max-width: 100%;
    margin: auto;
}


.rm_resume h1,
.rm_resume h2,
.rm_resume h3,
.rm_resume h4,
.rm_resume p{
    overflow-wrap:anywhere;
}


.rm_resume a{
    color:inherit;

    text-decoration:none;

    overflow-wrap:anywhere;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .rm_resume{
        width:95%;

        margin:20px auto;
    }

    .rm_header_info{
        padding-right:25px;
    }

    .rm_right{
        padding-right:28px;
        padding-left:28px;
    }

}

/* =========================================================
   MOBILE - KEEP DESKTOP 2 COLUMN RESUME
========================================================= */

@media(max-width:720px){

.rm_resume {
    width: 100%;
    max-width: 100%;
    margin: 20px 0px;
    /* box-shadow: none; */
}

    /* HEADER */
    .rm_header{
        min-height:120px;
        display:flex;
        position:relative;
    }

    .rm_header:before{
        position:absolute;
        left:0;
        top:0;
        bottom:0;
        width:110px;
        height:auto;
        display:block;
        background:#092b46;
        border-bottom-right-radius:40px;
    }

    .rm_header:after{
        display:block;
        position:absolute;
        left:115px;
        top:0;
        width:15px;
        height:100%;
        background:#e5b43f;
        border-radius:0 0 12px 0;
    }

    /* PROFILE */
    .rm_profile{
        position:relative;
        z-index:5;
        width:110px;
        min-width:110px;
        height:auto;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .rm_profile_img{
        width:70px;
        height:70px;
        border-width:2px;
    }

    /* HEADER CONTENT */
    .rm_header_info{
        position:relative;
        z-index:5;
        flex:1;
        min-width:0;
        padding:20px 18px;
        text-align:left;
    }
.rm_name {
    font-size: 22px;
    line-height: 19px;
    margin-bottom: 3px;
}

    .rm_designation{
        font-size:9px;
        line-height:12px;
        margin-bottom:6px;
        padding-bottom:3px;
    }

.rm_contact_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    max-width: 100%;
}

    .rm_contact_item{
        min-width:0;
        max-width:48%;
        width:auto;
        gap:4px;
        font-size:8px;
        line-height:1.3;
    }

    .rm_contact_item i{
        width:18px;
        min-width:18px;
        height:18px;
        font-size:7px;
    }


    /* =====================================================
       IMPORTANT - KEEP TWO COLUMNS ON MOBILE
    ===================================================== */

    .rm_body{
        display:grid;
        grid-template-columns:38% minmax(0,62%);
        width:100%;
        align-items:stretch;
    }

    /* LEFT */
    .rm_left{
        min-width:0;
        padding:16px 12px 20px;
        background:#f6f8fa;
        border-right:1px solid #e0e6eb;
        border-bottom:0;
    }

    /* RIGHT */
    .rm_right{
        min-width:0;
        padding:16px 14px 22px;
        background:#fff;
    }

    /* BOX SPACING */
    .rm_box{
        margin-bottom:16px;
    }

    .rm_content_box{
        margin-bottom:17px;
    }

    /* TITLES */
    .rm_title{
        gap:5px;
        margin-bottom:7px;
    }

    .rm_title i,
    .rm_content_title i{
        width:20px;
        min-width:20px;
        height:20px;
        font-size:8px;
    }

    .rm_title h3{
        font-size:9px;
    }

    .rm_content_title{
        gap:6px;
        margin-bottom:8px;
    }

    .rm_content_title h2{
        font-size:10px;
    }

    /* SKILLS */
    .rm_skill{
        margin-bottom:6px;
    }

    .rm_skill > span{
        font-size:8.5px;
        line-height:17px;
    }

    .rm_skill_bar{
        height:3px;
    }

    /* LANGUAGES */
    .rm_language{
        margin-bottom:10px;
    }

    .rm_language > div:first-child{
        margin-bottom:4px;
    }

    .rm_language > div:first-child span{
        font-size:8.5px;
    }

    .rm_language > div:first-child b{
        font-size:7px;
    }

    .rm_language_bar{
        height:3px;
    }

    /* PERSONAL */
    .rm_personal > div{
        grid-template-columns:58px 6px minmax(0,1fr);
        gap:2px;
        padding:3px 0;
    }

    .rm_personal > div > span,
    .rm_personal > div > strong{
        font-size:7.5px;
        line-height:1.3;
    }

    .rm_personal > div > b{
        font-size:7px;
    }

    /* ABOUT */
    .rm_about{
        padding-left:0;
        font-size:8.5px;
        line-height:1.55;
    }

    /* TIMELINE */
    .rm_timeline{
        margin-left:8px;
        padding-left:18px;
    }

.rm_timeline:before {
    left: 2px;
    top: 10px;
    bottom: 4px;
}

    .rm_dot{
        left:-21px;
        top:2px;
        width:11px;
        height:11px;
        border-width:1px;
        box-shadow:0 0 0 3px #f7f8f9;
    }

    .rm_dot:after{
        left:3px;
        top:3px;
        width:3px;
        height:3px;
    }

    /* EXPERIENCE */
    .rm_exp{
        display:grid;
        grid-template-columns:62px minmax(0,1fr);
        gap:7px;
    }

    .rm_exp_date{
        font-size:7.5px;
        line-height:1.4;
    }

    .rm_exp_detail h3{
        font-size:9px;
        line-height:1.3;
        margin-bottom:2px;
    }

    .rm_exp_detail h4{
        font-size:7.5px;
        line-height:1.3;
        margin-bottom:4px;
    }

    .rm_exp_detail p,
    .rm_exp_detail li{
        font-size:7px;
        line-height:1.5;
    }

    .rm_timeline_item{
        margin-bottom:16px;
    }

    /* EDUCATION */
    .rm_education{
        display:grid;
        grid-template-columns:62px minmax(0,1fr);
        gap:7px;
    }

    .rm_education_date{
        font-size:7.5px;
    }

    .rm_education_detail h3{
        font-size:8.5px;
    }

    .rm_education_detail h4{
        font-size:7.5px;
    }

    .rm_education_detail p{
        font-size:7px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   Still 2 columns
========================================================= */

@media(max-width:550px){

.rm_header {
    min-height: 85px;
}

.rm_header:before {
    width: 90px;
}
.rm_header:after {
    left: 85px;
    width: 12px;
}

.rm_profile {
    width: 90px;
    min-width: 90px;
}
.rm_profile_img {
    width: 57px;
    height: 57px;
}

.rm_header_info {
    padding: 10px 6px 10px 15px;
}

.rm_name {
    font-size: 18px;
    line-height: 0;
    margin-top: 12px;
}

    .rm_designation{
        font-size:7.5px;
        line-height:10px;
    }

    .rm_contact_list{
        gap:3px 6px;
    }

.rm_contact_item {
    font-size: 8px;
    gap: 3px;
}

.rm_contact_item i {
    width: 13px;
    min-width: 13px;
    height: 13px;
    font-size: 6px;
}
    /* TWO COLUMNS */
.rm_name {
    font-size: 18px;
    line-height: 0;
    margin-top: 12px;
}

    .rm_left{
        padding:12px 8px 16px;
    }

    .rm_right{
        padding:12px 9px 18px;
    }

    .rm_title{
        gap:4px;
    }

.rm_title i, .rm_content_title i {
    width: 15px;
    min-width: 15px;
    height: 15px;
    font-size: 7px;
}
    .rm_title h3{
        font-size:8px;
    }

    .rm_content_title h2{
        font-size:9px;
    }

    .rm_skill > span,
    .rm_language > div:first-child span{
        font-size:9px;
    }

    .rm_personal > div{
        grid-template-columns:45px 5px minmax(0,1fr);
    }

    .rm_personal > div > span,
    .rm_personal > div > strong{
        font-size:8px;
    }

.rm_about {
    font-size: 10px;
    line-height: 15px;
}

    .rm_exp{
        grid-template-columns:48px minmax(0,1fr);
        gap:5px;
    }

    .rm_exp_date{
        font-size:6.5px;
    }
.rm_exp_detail h3 {
    font-size: 11px;
}
.rm_exp_detail h4 {
    font-size: 8px;
}

    .rm_exp_detail p,
    .rm_exp_detail li{
        font-size:6.5px;
    }

    .rm_education{
        grid-template-columns:48px minmax(0,1fr);
        gap:5px;
    }

    .rm_education_date{
        font-size:6.5px;
    }

    .rm_education_detail h3{
        font-size:7.5px;
    }

    .rm_education_detail h4{
        font-size:6.5px;
    }
}

/* =========================================================
   PRINT / PDF
========================================================= */

@media print{

    @page{
        size:A4;
        margin:0;
    }


    html,
    body{
        width:100%;

        margin:0;

        background:#ffffff;
    }

    .rm_header,
    .rm_left,
    .rm_footer{
        -webkit-print-color-adjust:exact;

        print-color-adjust:exact;
    }


    .rm_timeline_item,
    .rm_box,
    .rm_content_box{
        break-inside:avoid;

        page-break-inside:avoid;
    }

}


@media (max-width: 767px) {
    .mobile-extra-search button{
        margin-bottom: 10px;
    }
    
    .rb-badge {
    padding: 3px 9px;
    font-size: 10px;
}
}




/* =========================================
   RESUME HERO
========================================= */
.rb-hero {
    position: relative;
    overflow: hidden;
    /* min-height: 700px; */
    padding: 35px 0 30px;
    background: linear-gradient(135deg, #3d0493 0%, #702adb 48%, #9e6beb 100%);
    color: #fff;
}

/* BACKGROUND SHAPES */

.rb-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.rb-shape-one {
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -350px;
    background: rgba(255,255,255,.06);
}

.rb-shape-two {
    width: 500px;
    height: 500px;
    right: -220px;
    top: -280px;
    background: rgba(255,255,255,.07);
}


/* CONTAINER */

.rb-container {
    position: relative;
    z-index: 5;
}


/* =========================================
   LEFT CONTENT
========================================= */

.rb-hero-content {
    position: relative;
    z-index: 10;
}

.rb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    color: #ffe52b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 22px;
}

.rb-badge i {
    font-size: 12px;
}

.rb-hero h1 {
    margin: 0;
    max-width: 560px;
    font-size: 51px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
}

.rb-hero h1 span {
    display: block;
    color: #ffe52b;
}


.rb-hero-content > p {
    max-width: 570px;
    margin: 9px 0 30px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}


/* =========================================
   BUTTONS
========================================= */

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

.rb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

.rb-btn-primary {
    color: #191919;
    background: #ffeb67;
}

.rb-btn-primary:hover {
    color: #191919;
    background: #fff;
    transform: translateY(-3px);
}

.rb-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(255,255,255,.03);
}

.rb-btn-outline:hover {
    color: #191919;
    background: #fff;
    transform: translateY(-3px);
}


/* =========================================
   TRUST
========================================= */

.rb-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
}

.rb-avatars {
    display: flex;
    align-items: center;
}

.rb-avatars span,
.rb-avatars strong {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: -7px;
    border: 2px solid #fff;
    background: #fff;
    color: #c4000d;
    font-size: 11px;
    font-weight: 800;
}

.rb-avatars span:first-child {
    margin-left: 0;
}

.rb-avatars span {
    background: #26384a;
    color: #fff;
}

.rb-avatars strong {
    background: #6517db;
    color: #fff;
}

.rb-trust-text {
    font-size: 14px;
    line-height: 1.6;
}

.rb-trust-text b {
    color: #ffe329;
}


/* =========================================
   RESUME PREVIEW
========================================= */

.rb-preview-area {
    position: relative;
    padding: 0;
    perspective: 1500px;
}

.rb-resume {
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: rotate(2deg);
    transform-origin: center;
    transition: .4s ease;
}

.rb-resume:hover {
    transform: rotate(0deg) translateY(-5px);
}


/* =========================================
   FLOATING CARDS
========================================= */

.rb-floating-card {
    position: absolute;
    z-index: 20;
    top: 90px;
    left: -5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 8px;
    background: #fff;
    color: #263d51;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    font-size: 11px;
    font-weight: 700;
}

.rb-floating-card i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #edf4ff;
    color: #1766d1;
}


.rb-pdf-card {
    position: absolute;
    z-index: 20;
    right: -5px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 20px;
    border-radius: 8px;
    background: #fff;
    color: #263d51;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
    font-size: 11px;
    font-weight: 700;
}

.rb-pdf-card i {
    color: #d8a31b;
}


/* =========================================
   RESPONSIVE
========================================= */



@media (max-width: 991px) {

.rb-hero {
    min-height: auto;
    padding: 70px 0px 30px;
}

    .rb-hero-content {
        text-align: center;
        margin-bottom: 0px;
    }
.rb-trust {
    margin-top: 18px;
}
    .rb-hero h1 {
        margin-left: auto;
        margin-right: auto;
    }
.rb-avatars span, .rb-avatars strong {
    width: 30px;
    height: 30px;
    font-size: 9px;
}
    .rb-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .rb-buttons,
    .rb-trust {
        justify-content: center;
    }

    .rb-preview-area {
        max-width: 750px;
        margin: auto;
    }

}


@media (max-width: 767px) {

.rb-hero {
    min-height: auto;
    padding: 70px 0px 30px;
}

.rb-hero h1 {
    font-size: 35px;
    line-height: 42px;
}

    .rb-hero-content > p {
        font-size: 14px;
            margin: 0px 0 16px;
    }

    .rb-btn {
        width: 100%;
    }

.rb-preview-area {
    padding: 20px 0 0px;
}

    .rb-resume {
        transform: none;
    }

    .rb-floating-card {
        left: 0;
        top: 15px;
    }

    .rb-pdf-card {
        right: 0;
        bottom: 20px;
    }

}

/* =========================================
   RESUME BUILDER - HOW IT WORKS
========================================= */
.rb-steps-section {
    position: relative;
    padding: 50px 0 50px;
    background: #ffffff;
    overflow: hidden;
}
/* =========================================
   HEADING
========================================= */

.rb-steps-heading {
    text-align: center;
    margin-bottom: 30px;
}

.rb-steps-label {
    display: inline-block;
    margin-bottom: 4px;
    color: #d00012;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.rb-steps-heading h2 {
    margin-top: 15px;
    color: #1d2733;
font-weight: 700;
    text-transform: capitalize;
    font-size: 33px;
    line-height: 1.25;
}

.rb-steps-heading h2 span{
    background: linear-gradient(90deg, #ff1a80, #c300ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* =========================================
   STEPS WRAPPER
========================================= */

.rb-steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}


/* =========================================
   STEP CARD
========================================= */
.rb-step-card {
    position: relative;
    width: 31%;
    /* min-height: 205px; */
    padding: 10px 10px 25px 40px;
    display: flex;
    align-items: center;
    border: 1px solid #f0e4e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(50,20,20,.07);
    transition: .3s ease;
}

.rb-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(50,20,20,.12);
}


/* =========================================
   NUMBER
========================================= */

.rb-step-number {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #6414da;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgb(43 0 213 / 13%);
}


/* =========================================
   TEXT
========================================= */

.rb-step-content {
    width: 65%;
    align-self: flex-start;
    padding-top: 0px;
    z-index: 2;
}

.rb-step-content h3 {
    margin: 0 0 5px;
    color: #222c37;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.rb-step-content p {
    margin: 0;
    color: #878787;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

/* =========================================
   VISUAL
========================================= */
.rb-step-visual {
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 25%;
    top: 0px;
}


/* =========================================
   STEP 01 - TEMPLATE
========================================= */

.rb-template-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-mini-resume {
    position: absolute;
    width: 54px;
    height: 75px;
    padding: 8px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e3e8ec;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transform: rotate(-5deg);
}

.rb-mini-resume.rb-mini-second {
    right: 4px;
    top: 19px;
    transform: rotate(5deg);
    z-index: 1;
}

.rb-mini-resume:first-child {
    left: -15px;
    top: 25px;
    z-index: 2;
}

.rb-mini-photo {
    width: 22px;
    height: 22px;
    margin-bottom: 7px;
    border-radius: 3px;
    background: #e7edf2;
}

.rb-mini-lines span {
    display: block;
    height: 4px;
    margin-bottom: 5px;
    border-radius: 3px;
    background: #dfe5e9;
}

.rb-mini-lines span:first-child {
    width: 80%;
    background: #d00012;
}

.rb-mini-lines span:nth-child(2) {
    width: 95%;
}

.rb-mini-lines span:nth-child(3) {
    width: 70%;
}

.rb-mini-lines span:nth-child(4) {
    width: 85%;
}

.rb-mini-bottom {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.rb-mini-bottom i {
    width: 13px;
    height: 5px;
    display: block;
    border-radius: 2px;
    background: #f0f3f5;
}

/* =========================================
   ARROW
========================================= */

.rb-step-arrow {
    width: 35px;
    min-width: 35px;
    text-align: center;
    color: #6414da;
    font-size: 17px;
}

.rb-step-arrow i {
    animation: rbArrow 1.5s infinite ease-in-out;
}

@keyframes rbArrow {

    0%,
    100% {
        transform: translateX(0);
    }

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

}


/* =========================================
   STEP 02 - FORM
========================================= */

.rb-form-visual {
    display: flex;
    align-items: start;
    justify-content: center;
}

.rb-mini-form {
    position: relative;
    width: 85px;
    height: 90px;
    padding: 7px;
    border: 1px solid #e1e7eb;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    margin-top: 10px;
}

.rb-form-profile {
    width: 21px;
    height: 20px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf2f5;
    color: #50606c;
    font-size: 11px;
}

.rb-form-input {
    width: 100%;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 4px;
    background: #e8edf0;
}

.rb-form-input.short {
    width: 70%;
}

.rb-form-input.medium {
    width: 82%;
}

.rb-form-check {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 9px;
}

.rb-form-check span {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d00012;
    color: #fff;
    font-size: 7px;
}


/* =========================================
   STEP 03 - PDF
========================================= */

.rb-pdf-visual {
    display: flex;
    align-items: start;
    justify-content: center;
}

.rb-pdf-document {
    position: relative;
    width: 90px;
    height: 90px;
    padding: 9px 10px;
    border: 1px solid #e4e8eb;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    margin-top: 10px;
}
.rb-pdf-top {
    line-height: 0px;
    color: #d00012;
    font-size: 13px;
    font-weight: 900;
    margin-top: 5px;
}

.rb-pdf-lines {
    margin-top: 15px;
}

.rb-pdf-lines span {
    display: block;
    width: 100%;
    height: 5px;
    margin-bottom: 7px;
    border-radius: 4px;
    background: #e6ebee;
}

.rb-pdf-lines span:nth-child(2) {
    width: 75%;
}

.rb-pdf-lines span:nth-child(3) {
    width: 90%;
}

.rb-pdf-lines span:nth-child(4) {
    width: 65%;
}

.rb-pdf-lines span:nth-child(5) {
    width: 80%;
}


/* PDF CORNER */

.rb-pdf-corner {
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #f4f6f7;
    clip-path: polygon(0 0,100% 100%,0 100%);
}


/* DOWNLOAD */
.rb-download-icon {
    position: absolute;
    right: -7px;
    top: 63px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6c2bd9;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 5px 15px rgb(32 0 208 / 24%);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .rb-steps-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .rb-step-card {
        width: calc(50% - 10px);
    }

    .rb-step-arrow {
        display: none;
    }

}


@media (max-width: 767px) {

.rb-steps-section {
    padding: 30px 0;
}

.rb-steps-heading h2 {
    font-size: 23px;
        margin-top: 12px;
}
    .rb-step-card {
        width: 100%;
       
    }

.rb-step-content {
    width: 65%;
}

.rb-mini-resume:first-child {
    left: 20px;
    top: 15px;
}
.rb-mini-resume.rb-mini-second {
    right: 1px;
    top: 9px;
}
    .rb-step-visual {
        width: 35%;
    }
.rb-form-visual {
    align-items: center;
    justify-content: end;
}
.rb-pdf-visual {
    align-items: center;
    justify-content: end;
}
}
/* =========================================
   WHY CHOOSE US
========================================= */
.rb-why-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #fee7e736 55%, #ffffff 70%, #ffffff 100%);
    z-index: 1;
}


/* =========================================
   HEADING
========================================= */

.rb-why-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.rb-why-heading h2 {
    margin-top: 15px;
    color: #1d2733;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 33px;
    line-height: 1.25;
}

.rb-why-heading h2 span {
   background: linear-gradient(90deg, #ff1a80, #c300ba);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rb-why-heading p {
    max-width: 620px;
    margin: 15px auto 0;
    color: #68747e;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.rb-why-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;

    max-width: 1100px;
    margin: auto;
}


/* =========================================
   LEFT MAIN BOX
========================================= */
.rb-why-main {
    position: relative;
    min-height: auto;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(45deg, #3b0991, #7029dd);
    color: #fff;
    box-shadow: 0 4px 14px rgb(108 43 217 / 27%);
}

/* icon */
.rb-why-icon {
    width: 36px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    border-radius: 7px;
    background: linear-gradient(45deg, #ffe60f, #fff070);
    color: #6c2bd9;
    font-size: 17px;
    box-shadow: 0px 8px 14px #ffeb3b78;
}

.rb-feature-tag {
    display: inline-block;
    margin-bottom: 5px;
    color: #FFEB3B;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 01px;
}


.rb-why-main h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 7px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}
.rb-why-main > p {
    position: relative;
    z-index: 2;
    /* max-width: 390px; */
    margin: 0 0 2px;
    color: rgb(255 255 255 / 91%);
    font-size: 15px;
    line-height: 21px;
}

/* =========================================
   LINK
========================================= */

.rb-why-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffe329;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
}

.rb-why-link i {
    transition: .3s ease;
}

.rb-why-link:hover {
    color: #fff;
}

.rb-why-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   SCORE BOX
========================================= */

.rb-score-box {
    /* position: absolute; */
    /* left: 40px; */
    /* right: 40px; */
    /* bottom: 30px; */
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 7px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgb(255 255 255 / 31%);
    backdrop-filter: blur(8px);
}

.rb-score-circle {
    width: 39px;
    height: 39px;
    min-width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffe329;
    border-radius: 50%;
    color: #ffe329;
}

.rb-score-circle strong {
    font-size: 17px;
}
.rb-score-circle small {
    font-size: 11px;
}


.rb-score-box h5 {
    margin: 0 0 0px;
    color: #fff;
    font-size: 14px;
}

.rb-score-box p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 11px;
}


/* =========================================
   RIGHT FEATURES
========================================= */

.rb-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* =========================================
   FEATURE CARD
========================================= */

.rb-why-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* min-height: 215px; */
    padding: 10px 10px 10px 10px;
    border: 1px solid #eee5e5;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(35,20,20,.05);
    transition: .35s ease;
}

.rb-why-card:hover {
   border-color: #cac8f0;
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgb(22 20 35 / 10%);
}


/* number */

.rb-why-card-number {
    position: absolute;
    right: 15px;
    top: 13px;

    color: #e8e8e8;

    font-size: 12px;
    font-weight: 800;
}


/* icon */

.rb-why-card-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
   background: #f4f0ff;
    color: #6c2bd9;
    font-size: 16px;
    transition: .3s ease;
}

.rb-why-card:hover .rb-why-card-icon {
    background: #6c2bd9;
    color: #fff;
}


/* content */

.rb-why-card h3 {
    margin: 2px 0 6px;
    color: #26323d;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}
.rb-why-card p {
    margin: 0;
    color: #ababab;
    font-size: 15px;
    line-height: 21px;
    /* text-align: justify; */
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .rb-why-layout {
        grid-template-columns: 1fr;
    }


}


@media (max-width: 767px) {
.rb-why-heading {
    margin: 0 auto 20px;
}
.rb-why-section {
    padding: 30px 0px;
}
    .rb-why-heading h2 {
        font-size: 23px;
        margin-top: 12px;
    }

    .rb-why-heading p {
        font-size: 13px;
    }
.rb-why-card p {
    font-size: 14px;
}
.rb-why-card h3 {
    margin: 2px 0 3px;
    font-size: 17px;
}

    .rb-why-main h3 {
        font-size: 22px;
    }

    .rb-why-features {
        grid-template-columns: 1fr;
    }

    .rb-why-card {
        min-height: auto;
    }

}


.int_add-icon {
    background: #00968826;
    color: #009688;
}

.int_date-icon {
    background: #af00d41c;
    color: #d204c6;
}


.int_time-icon {
    background: #607d8b33;
    color: #607d8b;
}

.ot-icon {
    background: #dca73936;
    color: #dca739;
}






/*---login popup
-------*/


.mobile_step {
    display: block;
}

.otp_step {
    display: none;
}

.otp_box_wrapper {
    margin-top: 20px;
}

.otp_input {
    width: 60px;
    height: 50px;
    border: 1px solid #d2d2d2;
    border-radius: 7px;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
}

.otp_input:focus {
    box-shadow: none;
    border-color: #1e88e5;
}

.otp_verify_btn {
    width: 100%;
}

.resend .sendotpbutton {
    color: #1e88e5;
    text-decoration: none;
}

.resend .sendotpbutton:hover {
    text-decoration: underline;
}




/* ==========================================
   CANDIDATE LOGIN MODAL
========================================== */

.condidate_login_modal {
    width: 100%;
    max-width: 460px;
    margin: auto;
    border: 0 !important;
    border-radius: 20px !important;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}


/* HEADER */

.condidate_login_modal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 16px 18px;
}

.condidate_login_modal .btn-close {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    background-color: #f5f6f8;
    opacity: 1;
    background-size: 11px;
}

.condidate_login_modal .btn-close:hover {
    background-color: #eceef2;
}


/* BODY */

.condidate_login_modal .modal-body {
    padding: 20px 20px 20px;
}


/* ==========================================
   MOBILE ICON
========================================== */
.login_mobile_icon {
    width: 100px;
    height: 60px;
    border-radius: 15px;
    /* background: #fff1f2; */
    color: #e00012;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 18px !important; */
    margin: 12px auto 30px;
}
    .login_mobile_icon img {
       width: 100%;
    }

/* ==========================================
   HEADING
========================================== */
.login_heading {
    margin-bottom: 12px;
    text-align: center;
}

.login_heading h4 {
    margin: 0 0 3px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    color: #202124;
}

.login_heading p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #73777d;
}


/* ==========================================
   PHONE FIELD
========================================== */

.candidate_phone_field {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #d1d4d8;
    border-radius: 6px;
    background: #fff;
    transition: .2s ease;
}

.candidate_phone_field:focus-within {
    border-color: #d1d4d8;
    box-shadow: 0 0 0 3px #6c51e426;
}


/* COUNTRY CODE */

.candidate_country_code {
    height: 100%;
    min-width: 65px;

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

    border-right: 1px solid #e5e6e8;

    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.candidate_country_code i {
    font-size: 9px;
    color: #85888d;
}


/* PHONE INPUT */

.candidate_phone_field .phone_number {
    width: 100%;
    height: 100%;

    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;

    padding: 0 15px;

    font-size: 14px;
    color: #222;
    background: transparent;
}

.candidate_phone_field .phone_number::placeholder {
    color: #a0a4aa;
        font-size: 13px;
}


/* ==========================================
   ERROR
========================================== */

.phoneError {
    min-height: 18px;
    margin: 6px 0 0;

    font-size: 12px;
    line-height: 1.4;

    color: #e00012;
}


/* ==========================================
   TERMS
========================================== */

.candidate_terms {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 15px;
    margin-bottom: 5px;
}

.candidate_terms > i {
    margin-top: 3px;
    font-size: 13px;
    color: #7d8187;
}

.candidate_terms p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #777b81;
    text-align: center;
}

.candidate_terms a {
    color: #6c51e4;
    text-decoration: none;
    font-weight: 600;
}

.candidate_terms a:hover {
    text-decoration: underline;
}


/* ==========================================
   NEXT BUTTON
========================================== */

.candidate_next_btn {
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 9px;
    background: #6c2bd9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.candidate_next_btn i {
    font-size: 15px;
    transition: transform .2s ease;
}

.candidate_next_btn:hover {
    background: #8856db;
}

.candidate_next_btn:hover i {
    transform: translateX(4px);
}

.candidate_next_btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}


/* ==========================================
   OTP STEP
========================================== */

.otp_step {
    display: none;
}

.otp_step h5 {
    font-size: 23px;
    font-weight: 700;
    color: #202124;
}


.otp_input:focus {
    border-color: #6c51e4;
    box-shadow: 0 0 0 3px #6c51e426;
}

.otp_verify_btn .theme-btn {
    width: 100%;
    height: 45px;
    border-radius: 5px;
}
.timer {
    color: #6c51e4;
    font-weight: 700;
}

.resend .sendotpbutton {
    color: #da020a;
    font-weight: 600;
    text-decoration: none;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .condidate_login_modal {
        max-width: calc(100% - 24px);
        border-radius: 17px !important;
    }

    .condidate_login_modal .modal-body {
        padding: 30px 20px 24px;
    }

    .condidate_login_modal .modal-header {
        padding: 12px 13px;
    }

    .condidate_login_modal .btn-close {
        width: 32px;
        height: 32px;
    }

    .login_mobile_icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        margin-bottom: 15px;
    }

    .login_mobile_icon i {
        font-size: 19px;
    }

    .login_heading {
        margin-bottom: 19px;
    }

    .login_heading h4 {
        font-size: 21px;
    }

    .login_heading p {
        font-size: 12px;
    }

    .candidate_phone_field {
        height: 53px;
    }

    .candidate_country_code {
        min-width: 68px;
        font-size: 13px;
    }

    .candidate_phone_field .phone_number {
        font-size: 13px;
        padding: 0 12px;
    }

    .candidate_terms {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .candidate_terms p {
        font-size: 11.5px;
    }

    .candidate_next_btn {
        height: 49px;
    }

    .otp_input {
        width: 42px;
        height: 47px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

    .condidate_login_modal .modal-body {
        padding: 27px 16px 22px;
    }

    .otp_input {
        width: 38px;
        height: 44px;
    }

    .otp-section .d-flex {
        gap: 5px !important;
    }

}


.user-menu {
    position: relative;
    display: inline-block;
}

.user-profile-btn {
    width: 40px;
    height: 40px;
    border-radius: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(115deg, #ed8d00 0%, #e73891 28%, #c000d8 55%, #5f17db 78%, #4f05cc 100%);
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0px 3px 8px #560cd233;
}
.user-profile-btn:hover {
    background: #151a42;
    color: #fff;
}

.user-icon {
    font-size: 17px;
}

.user-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 150px;
    background: #fff;
    border-radius: 7px;
    padding: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
    z-index: 9999;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 7px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
}

.user-dropdown a:hover {
   background: #6c4ce338;
    color: #6c41e3;
}

.user-dropdown a i {
    width: 18px;
    color: #6c41e3;
}








/*-------------------create resume ----------------form ---------*/




/* =========================================================
PAGE
========================================================= */
.cr-hobby-item {
    height: 27px;
    border: 1px solid #d4030e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px;
    margin-bottom: 0px;
    font-size: 12px;
    color: #ffffff;
    background: #d4030e;
    border-radius: 6px;
}

.cr-hobby-name {
    flex: 1;
    font-size: 14px;
}

.cr-hobby-delete {
background: transparent;
    border: navajowhite;
    font-size: 11px;
    color: #ffffff;
    margin-left: 9px;
    margin-top: 3px;
    padding: 0;
}

.create-resume-page{
background:#f4f6f8;
min-height:calc(100vh - 80px);
}


/* =========================================================
TOP BAR
========================================================= */

.cr-topbar {
    min-height: 64px;
    background: #d4030e;
    border-bottom: 1px solid #e3e7ec;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.cr-top-left{
display:flex;
align-items:center;
gap:12px;
}

.cr-back-btn{
width:38px;
height:38px;

border:1px solid #d8dee6;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#163c63;
text-decoration:none;
background:#fff;

transition:.2s ease;
}

.cr-back-btn:hover{
background:#f1f5f9;
color:#163c63;
}

.cr-page-title {
    text-transform: capitalize;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.cr-page-subtitle{
font-size:11px;
color:#7a8796;
margin-top:2px;
}

.cr-top-actions{
display:flex;
align-items:center;
gap:8px;
}

.cr-action-btn{
height:39px;
padding:0 15px;

border:1px solid #ccd4dd;
border-radius:5px;

background:#fff;
color:#173b63;

font-size:13px;
font-weight:600;

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

text-decoration:none;
cursor:pointer;
}

.cr-action-btn:hover{
background:#f7f9fb;
color:#173b63;
}

.cr-action-btn.download {
    background: #371305 !important;
    border-color: #021f18;
    color: #fff;
}



/* =========================================================
BUILDER LAYOUT
========================================================= */

.cr-builder-area{
width:100%;
max-width:1500px;
margin:0 auto;

display:grid;
grid-template-columns:47% 53%;
gap:18px;

padding:18px;
}


/* =========================================================
LEFT PANEL
========================================================= */

.cr-form-panel{
background:#fff;
border:1px solid #e0e5ea;
border-radius:8px;
overflow:hidden;
}


/* =========================================================
SECTION
========================================================= */

.cr-section{
border-bottom:1px solid #e4e8ed;
}

.cr-section:last-child{
border-bottom:none;
}

.cr-section-head{
min-height:62px;
padding:0 21px;

display:flex;
align-items:center;
justify-content:space-between;

cursor:pointer;

background:#fff;

transition:.2s ease;
}

.cr-section-head:hover{
background:#fafbfc;
}

.cr-section-left{
display:flex;
align-items:center;
gap:12px;
}

.cr-section-icon{
width:32px;
height:32px;

border-radius:7px;

background:#eff5fa;
color:#1d6394;

display:flex;
align-items:center;
justify-content:center;

font-size:14px;
}

.cr-section-title {
    color: #27292b;
    font-size: 16px;
    font-weight: 500;
}

.cr-section-arrow{
width:30px;
height:30px;

border-radius:50%;
background:#f4f6f8;

color:#607187;

display:flex;
align-items:center;
justify-content:center;

font-size:11px;

transition:.2s ease;
}

.cr-section-head.active .cr-section-arrow{
background:#eaf5f1;
color:#21896f;
}

.cr-section-body{
padding:2px 21px 22px;
display:none;
}

.cr-section-body.active{
display:block;
}


/* =========================================================
FORM
========================================================= */

.cr-field{
margin-bottom:15px;
}

.cr-field:last-child{
margin-bottom:0;
}

.cr-field label {
    display: block;
    color: #183b60;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cr-required{
color:#e53935;
}

.cr-input,
.cr-select,
.cr-textarea{
width:100%;

border:1px solid #cfd6df;
border-radius:5px;

background:#fff;

color:#243d59;

font-size:13px;

outline:none;

transition:.2s ease;
}

.cr-input,
.cr-select{
height:40px;
padding:0 11px;
}

.cr-textarea{
min-height:100px;
padding:10px 11px;
resize:vertical;
}

.cr-input:focus, .cr-select:focus, .cr-textarea:focus {
    border-color: #d4030e;
    box-shadow: 0 0 0 3px rgb(212 3 14 / 12%);
}

.cr-input::placeholder,
.cr-select::placeholder,
.cr-textarea::placeholder {
    font-size: 12px;
        color: #d5d5d5;
}
.cr-two-column{
display:grid;
grid-template-columns:1fr 1fr;
gap:13px;
}


/* =========================================================
PHOTO
========================================================= */

.cr-photo-box{
display:flex;
align-items:center;
gap:12px;
margin-bottom:16px;
}

.cr-photo-preview {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dde3ea;
    flex: 0 0 45px;
    text-align: center;
    display: flex;
    font-size: 30px;
    justify-content: center;
    align-items: center;
}

.cr-photo-preview img{
width:100%;
height:100%;
object-fit:cover;
display:none;
}

.cr-photo-info{
flex:1;
}

.cr-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d4030e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 0px;
}

.cr-upload-label input{
display:none;
}

.cr-photo-info small{
display:block;
color:#8190a2;
font-size:10px;
}


/* =========================================================
RADIO
========================================================= */

.cr-radio-row{
display:flex;
align-items:center;
gap:22px;
}

.cr-radio{
display:inline-flex !important;
align-items:center;
gap:7px;

margin:0 !important;

font-size:12px !important;
font-weight:500 !important;
color:#52657b !important;
}

.cr-radio input {
    width: 15px;
    height: 15px;
    accent-color: #d4030e;
}

/* =========================================================
ADD BUTTON
========================================================= */

.cr-add-btn{
width:100%;
min-height:40px;

border:1px dashed #b9c5d1;
border-radius:5px;

background:#fafbfc;

color:#1e567f;

font-size:12px;
font-weight:700;

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

cursor:pointer;

transition:.2s ease;
}

.cr-add-btn:hover{
border-color:#21896f;
color:#21896f;
background:#f5fbf8;
}


/* =========================================================
REPEATED ITEMS
========================================================= */

.cr-repeat-item {
    border: 1px solid #aeb8c3;
    border-radius: 5px;
    padding: 12px 12px 0px;
    margin: 0 0 9px;
    background: #fff;
}
.cr-repeat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cr-delete-repeat{
        background: #fff;
    border: 1px solid #d4030e87;
    height: 24px;
    font-size: 13px;
    line-height: 23px;
    color: #d4030e;
    border-radius: 4px;
}
.cr-repeat-header{
display:flex;
align-items:center;
justify-content:space-between;

margin-bottom:12px;
}

.cr-repeat-number{
color:#244d72;
font-size:12px;
font-weight:700;
}

.cr-remove-btn{
border:0;
background:transparent;

color:#d84a4a;

width:30px;
height:30px;

display:flex;
align-items:center;
justify-content:center;

cursor:pointer;

border-radius:4px;
}

.cr-remove-btn:hover{
background:#fff0f0;
}


/* =========================================================
SKILL / LANGUAGE CHIP
========================================================= */

.cr-chip-list{
display:flex;
flex-wrap:wrap;
gap:7px;

margin-top:10px;
}

.cr-chip{
display:inline-flex;
align-items:center;
gap:7px;

padding:6px 9px;

background:#edf6f3;
color:#196a58;

border-radius:20px;

font-size:11px;
font-weight:600;
}

.cr-chip button{
border:0;
background:transparent;

padding:0;

color:#297764;

cursor:pointer;

line-height:1;
}


/* =========================================================
RIGHT PREVIEW
========================================================= */

.cr-preview-panel {
    min-height: calc(100vh - 100px);
    position: sticky;
    top: 82px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 0px 5px #9f9e9e42;
}

.cr-preview-scroll {
   height: calc(100vh - 135px); 
    overflow-y: auto;
    padding: 0px;
    background: #fff;
    /* padding: 13px 0px; */
    border-radius: 6px;
    /* border: 1px solid #eff1f3; */
    /* box-shadow: 0px 0px 15px #9c9898d1; */
}

.cr-preview-scroll::-webkit-scrollbar{
width:7px;
}

.cr-preview-scroll::-webkit-scrollbar-thumb{
background:#c4cad1;
border-radius:20px;
}


/* =========================================================
RESUME PAPER
========================================================= */

.cr-paper{
width:100%;
max-width:820px;

min-height:1120px;

margin:0 auto;

background:#fff;

padding:46px;

box-shadow:0 4px 24px rgba(0,0,0,.10);

color:#222;

position:relative;
}

.cr-paper.template-1{
font-family:Arial,sans-serif;
}


/* =========================================================
PREVIEW HEADER
========================================================= */

.cr-resume-header{
padding-bottom:18px;

border-bottom:1px solid #e2e6eb;
}

.cr-preview-photo{
width:78px;
height:78px;

border-radius:50%;

overflow:hidden;

background:#f1f3f5;

display:none;

margin-bottom:12px;
}

.cr-preview-photo img{
width:100%;
height:100%;
object-fit:cover;
}

.cr-resume-name{
margin:0;

color:#151515;

font-size:30px;
font-weight:700;

line-height:1.15;
}

.cr-resume-role{
margin-top:5px;

color:#6d7680;

font-size:14px;
}

.cr-resume-contact{
margin-top:13px;

display:flex;
flex-wrap:wrap;

gap:7px 15px;
}

.cr-contact-item{
font-size:10px;
color:#64748b;

display:inline-flex;
align-items:center;
gap:5px;
}

.cr-contact-item i{
color:#2878bd;
}

.cr-resume-section{
margin-top:24px;
}

.cr-resume-title{
display:flex;
align-items:center;
gap:8px;

margin-bottom:9px;

color:#2878bd;

font-size:14px;
font-weight:700;
}

.cr-resume-title:before{
content:"";

width:55px;
height:3px;

border-radius:3px;

background:#2878bd;
}

.cr-resume-text{
margin:0;

color:#444;

font-size:11.5px;
line-height:1.65;
}


/* =========================================================
EXPERIENCE PREVIEW
========================================================= */

.cr-preview-exp{
display:grid;
grid-template-columns:82px 1fr;
gap:14px;

margin-bottom:18px;
}

.cr-preview-date{
color:#586575;

font-size:10px;
line-height:1.45;
}

.cr-preview-exp h4{
margin:0;

color:#1d2936;

font-size:12.5px;
font-weight:700;
}

.cr-preview-exp h5{
margin:3px 0 0;

color:#4b5563;

font-size:11px;
font-weight:600;
}

.cr-preview-exp p{
margin:5px 0 0;

color:#555;

font-size:10.5px;
line-height:1.5;
}


/* =========================================================
EDUCATION
========================================================= */

.cr-preview-edu{
margin-bottom:14px;
}

.cr-preview-edu h4{
margin:0;

color:#1c2938;

font-size:12.5px;
}

.cr-preview-edu p{
margin:3px 0 0;

color:#555;

font-size:10.5px;
}


/* =========================================================
SKILLS
========================================================= */

.cr-preview-skills{
display:flex;
flex-wrap:wrap;
gap:7px;
}

.cr-preview-skill{
padding:5px 9px;

background:#f0f5f9;

border-radius:3px;

color:#324b63;

font-size:10px;
}


/* =========================================================
EMPTY PREVIEW
========================================================= */

.cr-empty-preview{
color:#99a4b0;

font-size:12px;

padding:15px 0;
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

.cr-builder-area{
grid-template-columns:1fr;
}

.cr-preview-panel{
position:relative;
top:auto;
}

.cr-preview-scroll{
height:auto;
}

}

@media(max-width:768px){

.cr-topbar{
padding:12px 14px;

flex-wrap:wrap;

gap:10px;
}

.cr-top-actions{
width:100%;

overflow-x:auto;
}

.cr-builder-area{
padding:10px;
}

.cr-two-column{
grid-template-columns:1fr;
}

.cr-section-head{
padding:0 14px;
}

.cr-section-body{
padding-left:14px;
padding-right:14px;
}

.cr-paper{
padding:25px;
}

}


/* =========================================================
PRINT
========================================================= */

@media print{

body *{
visibility:hidden !important;
}

.cr-paper,
.cr-paper *{
visibility:visible !important;
}

.cr-paper{
position:absolute;
left:0;
top:0;

width:100%;
max-width:none;

margin:0;

box-shadow:none;
}

}





/* =========================================================
NEW RESUME BUILDER SECTIONS
========================================================= */

.cr-form-panel{
background:#f5f5f5;
border:0;
border-radius:8px;
overflow:visible;
}

.cr-section{
background:#fff;
border:0;
border-radius:6px;
margin-bottom:8px;
overflow:hidden;
box-shadow:0 1px 3px rgba(0,0,0,.06);
}

.cr-section-head{
min-height:48px;
padding:0 14px;

background:#fff;

border:0;
}

.cr-section-head:hover{
background:#fff;
}

.cr-section-left{
gap:9px;
}

.cr-section-icon{
width:22px;
height:22px;

background:transparent;
color:#182f49;

border-radius:0;

font-size:12px;
}

.cr-section-title {
    color: #27292b;
    font-size: 16px;
    font-weight: 500;
}

.cr-section-arrow{
width:22px;
height:22px;

background:transparent;
color:#183b60;

font-size:9px;
}

.cr-section-head.active .cr-section-arrow{
background:transparent;
color:#183b60;
}

.cr-section-body{
padding:0 10px 10px;
background:#fff;
}


/* =========================================================
INNER REPEATED CARD
========================================================= */

.cr-repeat-item {
    border: 1px solid #aeb8c3;
    border-radius: 5px;
    padding: 12px 12px 0px;
    margin: 0 0 9px;
    background: #fff;
}

.cr-repeat-header{
min-height:30px;
margin-bottom:10px;
}

.cr-repeat-number {
    color: #d4030e;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 22px;
    margin-bottom: 0px;
}

.cr-repeat-meta{
color:#667789;
font-size:9px;
margin-top:2px;
}

.cr-repeat-actions{
display:flex;
align-items:center;
gap:3px;
}

.cr-remove-btn,
.cr-collapse-btn{
width:24px;
height:24px;

border:0;
background:transparent;

display:flex;
align-items:center;
justify-content:center;

cursor:pointer;

font-size:10px;
}

.cr-remove-btn{
color:#e00000;
}

.cr-collapse-btn{
color:#163c63;
}

.cr-remove-btn:hover{
background:#fff2f2;
}

.cr-collapse-btn:hover{
background:#f1f5f8;
}


/* =========================================================
SMALL LABELS
========================================================= */

.cr-builder-field{
margin-bottom:11px;
}

.cr-builder-field label {
    display: block;
    margin-bottom: 5px;
    color: #163b60;
    font-size: 12px;
    font-weight: 500;
}
.cr-builder-input, .cr-builder-select {
    width: 100%;
    height: 40px;
    border: 1px solid #bfc6ce;
    border-radius: 5px;
    background: #fff;
    color: #243d59;
    font-size: 13px;
    padding: 0 8px;
    outline: none;
}

.cr-builder-input:focus, .cr-builder-select:focus {
    border-color: #d4030e;
    box-shadow: 0 0 0 3px rgb(212 3 14 / 16%);
}


/* =========================================================
TWO / THREE COLUMN
========================================================= */

.cr-builder-two{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.cr-builder-three{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:10px;
}


/* =========================================================
PILL OPTIONS
========================================================= */

.cr-option-row{
display:flex;
flex-wrap:wrap;
gap:5px;
}

.cr-option{
position:relative;
}

.cr-option input{
position:absolute;
opacity:0;
pointer-events:none;
}

.cr-option span{
display:inline-flex;

align-items:center;
justify-content:center;

min-height:22px;

padding:0 8px;

border:1px solid #b9aabd;
border-radius:12px;

color:#263d55;

background:#fff;

font-size:8px;

cursor:pointer;
}

.cr-option input:checked + span{
border-color:#1680ff;
color:#1680ff;
background:#f5faff;
}

.cr-builder-input::placeholder {
    font-size: 11px;

    color: #d2d2d2;
}
/* =========================================================
YES / NO
========================================================= */

.cr-yesno .cr-option span{
min-width:22px;
}


/* =========================================================
DESCRIPTION
========================================================= */
.cr-description {
    width: 100%;
    min-height: 90px;
    border: 1px solid #b7c1cc;
    border-radius: 5px;
    resize: vertical;
    padding: 8px;
    font-size: 10px;
    color: #243d59;
    outline: none;
}
.cr-description::placeholder {
    font-size: 11px;

    color: #d2d2d2;
}
.cr-description:focus{
    border-color: #d4030e;
    box-shadow: 0 0 0 3px rgb(212 3 14 / 16%);
}

.cr-description-toolbar{
height:25px;

border:1px solid #b7c1cc;
border-bottom:0;

display:flex;
align-items:center;

gap:12px;

padding:0 8px;

font-size:9px;

color:#4b5968;
}

.cr-ai-write{
margin-left:auto;

border:0;
background:transparent;

color:#15926f;

font-size:9px;
font-weight:600;

cursor:pointer;
}


/* =========================================================
ADD NEW
========================================================= */
.cr-add-new {
    border: 0;
    background: transparent;
    color: #d4030e;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 3px;
    cursor: pointer;
}
.add_sikl{
        height: 24px;
    font-size: 12px;
    line-height: 25px;
    padding: 0px 8px;
    background: #000 !important;
    border-color: #000!important;
}

.skillList{
    display: flex;
    gap: 10px;
}
.cr-skill-delete {
    background: transparent;
    border: navajowhite;
    font-size: 11px;
    color: #ffffff;
    margin-left: 9px;
    margin-top: 3px;
    padding: 0;
}
.cr-add-new:hover {
    color: #d4030e;
}


/* =========================================================
SKILL ROW
========================================================= */

.cr-skill-top{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;

margin-bottom:9px;
}

.skill_list{
    display: flex;
    gap: 10px;

}

.cr-skill-item, .cr-language-item {
    height: 27px;
    border: 1px solid #d4030e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 8px;
    margin-bottom: 0px;
    font-size: 12px;
    color: #ffffff;
    background: #d4030e;
    border-radius: 6px;
}

.cr-skill-remove,
.cr-language-remove{
border:0;
background:transparent;

color:#1674c5;

cursor:pointer;

font-size:12px;
}

.cr-language-delete{
    background: transparent;
    border: navajowhite;
    font-size: 11px;
    color: #ffffff;
    margin-left: 9px;
    margin-top: 3px;
    padding: 0;
}
/* =========================================================
SUGGESTIONS
========================================================= */

.cr-suggestions {
    margin-top: 8px;
    padding: 8px;
    background: #d4030e0d;
    border: 1px dashed #d4030e;
    border-radius: 10px;
}

.cr-suggestions-title {
    color: #0e0e0e;
    font-size: 12px;
    margin-bottom: 3px;
}
.cr-suggestion {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 2px 8px;
    margin: 2px;
    border: 1px solid #bfc6ce;
    border-radius: 5px;
    background: #fff;
    color: #263d55;
    font-size: 12px;
    cursor: pointer;
}

.cr-language-suggestion{
        display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 2px 8px;
    margin: 2px;
    border: 1px solid #bfc6ce;
    border-radius: 5px;
    background: #fff;
    color: #263d55;
    font-size: 12px;
    cursor: pointer;
}


/* =========================================================
ADD OTHER SECTIONS
========================================================= */

.cr-add-other {
    background: #fff8f8;
    border-radius: 6px;
    padding: 13px 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    cursor: pointer;
    text-align: center;
    margin: auto;
    border: 1px dashed #d4030e;
}
.cr-add-other-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4030e;
    font-size: 17px;
    font-weight: 500;
    justify-content: center;
}

.cr-add-other-title i{
color:#d4030e;
}


/* =========================================================
OTHER SECTION MENU
========================================================= */

.cr-other-menu{
display:none;

background:#fff;

margin-top:7px;

border-radius:6px;

box-shadow:0 2px 8px rgba(0,0,0,.08);

overflow:hidden;
}

.cr-other-menu.active{
display:block;
}

.cr-other-option {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #edf0f2;
    background: #fff;
    padding: 11px 13px;
    text-align: left;
    color: #080808;
    font-size: 17px;
    cursor: pointer;
}


.cr-other-option:last-child{
border-bottom:0;
}


/* =========================================================
HIDDEN SECTION
========================================================= */

.cr-dynamic-section{
display:none;
}

.cr-dynamic-section.show{
display:block;
}


@media(max-width:768px){

.cr-builder-two,
.cr-builder-three,
.cr-skill-top{
grid-template-columns:1fr;
}

}


/*--------------------end-----------*/
.rm_header.has-photo:before {
    display: none !important;
}

.rm_header.has-photo:after {
    display: none !important;
}





/*-----template------- 2-------*/





.resume_secon {
    width: 100%;
    margin: auto;
    background: #fffaf7;
    display: grid;
    grid-template-columns: 30% 70%;
    box-shadow: 0 8px 30px rgba(70,40,35,.18);
    /* overflow: hidden; */
}

/* =====================================================
   LEFT
===================================================== */

.left {
    background: #4b2027;
    color: white;
    padding: 15px 10px 10px;
    position: relative;
    min-height: 100%;
}

.left:before{
    content:"";
    position:absolute;
    top:0;
    right:-35px;
    width:70px;
    height:170px;
    background:#c58d70;
    transform:skewX(-12deg);
    opacity:.25;
}

.profile {
    width: 90px;
    height: 90px;
    margin: 0 auto 11px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0d7ca;
    position: relative;
    z-index: 2;
    background: #613039;
}

.profile img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* NO PHOTO */

.profile.no-photo{
    display:none;
}

.skill_1 .rm_language_bar {
    width: 100%;
    height: 3px;
    background: #96696f;
    border-radius: 20px;
    overflow: hidden;
} 
.skill_1 .rm_language > div:first-child span {
    color: #f4ded7;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
}
.skill_1  .rm_language > div:first-child b {
    color: #f4ded7;
    font-size: 9px;
    font-weight: 600;
}
.skill_1 .rm_language_bar span {
    display: block;
    height: 100%;
    background: #e0a78f;
    border-radius: 20px;
    position: relative;
}
.skill_1 .rm_language_bar span:after {
display:none;
}
/* LEFT NAME */

.left-name {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}
.left-name h1 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0px;
    color: #fff;
    text-transform: capitalize;
}
.left-name p {
    font-size: 12px;
    color: #f6cdb8;
    letter-spacing: 1px;
    margin-top: 0px;
    text-transform: capitalize;
}


/* LEFT SECTION */

.left-section{
    margin-bottom:23px;
}
.left-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #f1c5b2;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 11px;
}

.left-heading i {
    font-size: 11px;
}
.left-heading span{
    height:1px;
    background:rgba(255,255,255,.25);
    flex:1;
}


/* CONTACT */
.contact-item {
    display: flex;
    gap: 5px;
    margin: 7px 0;
    font-size: 12px;
    line-height: 1.4;
    color: #f4e4dd;
    word-break: break-word;
    align-items: center;
}

.contact-item i{
    width:14px;
    color:#e0a78f;
    text-align:center;
    font-size:10px;
    flex-shrink:0;
}

.awared .rm_simple_list_item strong{
        font-weight: 500;
    font-size: 14px;
    display: block;
}

.awared .rm_simple_list_item span{
    font-size: 11px !important;
    line-height: 14px !important;
    display: inline-block !important;
    vertical-align: top !important;
    color: #eacccc;
}

.awared .rm_simple_list_item{
        border-left: 2px solid #d59a82;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* SKILLS */

.skill-name {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 4px;
}.skill {
    margin: 9px 0;
}
.skill-bar {
    height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 5px;
}
.skill-fill {
    height: 100%;
    background: #e0a78f;
    border-radius: 5px;
}
/* LANGUAGES */

.language{
    margin:9px 0;
}

.language-top{
    display:flex;
    justify-content:space-between;
    font-size:11px;
    margin-bottom:4px;
}

.language-top span:first-child{
    color:#f4e4dd;
}

.language-top span:last-child{
    color:#e0a78f;
    font-size:9px;
}

.language-bar{
    height:3px;
    background:rgba(255,255,255,.2);
    border-radius:5px;
}

.language-fill{
    height:100%;
    background:#e0a78f;
    border-radius:5px;
}


/* HOBBIES */

.hobby-list{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.hobby-tag {
    background: rgba(224,167,143,.18);
    border: 1px solid rgba(224,167,143,.35);
    color: #f4d4c7;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: capitalize;
}

/* SOCIAL */

.social-item{
    margin-bottom:9px;
}

.social-name{
    display:block;
    color:#e0a78f;
    font-size:9px;
    font-weight:800;
    margin-bottom:2px;
}

.social-url{
    color:#f4e4dd;
    font-size:9px;
    text-decoration:none;
    word-break:break-all;
}

.social-url:hover{
    color:#e0a78f;
}


/* SIMPLE LIST */

.simple-item{
    background:rgba(255,255,255,.06);
    border-left:2px solid #d59a82;
    padding:7px 8px;
    margin-bottom:7px;
}

.simple-item strong {
    display: block;
    font-size: 13px;
    color: #f4e4dd;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.simple-item span, .simple-item a {
    display: block;
    color: #d8c0b8;
    font-size: 10px;
    line-height: 1.4;
    word-break: break-word;
}
.simple-item a{
  
    text-decoration:none;
}


/* =====================================================
   RIGHT
===================================================== */

.right {
    padding: 20px 15px 10px;
    background: #fffaf7;
}

/* OBJECTIVE */

.intro{
    margin-bottom:22px;
}

.intro-label{
    font-size:9px;
    color:#b06f56;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:5px;
}

.intro h2{
    font-size:25px;
    color:#3d2927;
    font-weight:900;
}

.intro p {
    font-size: 12px;
    color: #756b68;
    line-height: 18px;
    margin-top: 7px;
}


/* SECTION */

.section{
    margin-bottom:23px;
}

.section-heading{
    display:flex;
    align-items:center;
    margin-bottom:13px;
}

.section-number{
    font-size:14px;
    color:#b06f56;
    font-weight:900;
    margin-right:8px;
}
.resume_22 .rm_social_url{
    font-size: 12px;
    color: #efd5d1;
}

.resume_2pd .rm_publication_url{
        font-size: 12px;
    color: #f4ded7;
}
.resume_2pd strong {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 19px;
    display: inline-block;
}
.resume_2pd .rm_licence_url {
    font-size: 12px;
    color: #f4ded7;
}
.section-title {
    font-size: 13px;
    font-weight: 800;
    color: #422b29;
    letter-spacing: 1px;
}
.rm_social_name{
    font-size: 13px;

}
.section-line{
    flex:1;
    height:2px;
    background:#eadfd9;
    margin-left:10px;
}


/* OBJECTIVE */

.objective {
    background: #f5ebe6;
    border-radius: 0 12px 12px 0;
    border-left: 4px solid #b06f56;
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1.5;
    color: #665c59;
}


/* EXPERIENCE */

.experience-item{
    display:grid;
    grid-template-columns:95px 1fr;
    gap:15px;
    margin-bottom:17px;
}

.experience-date {
    background: #f1e2db;
    color: #9d604c;
    height: max-content;
    padding: 5px 4px;
    text-align: center;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
}
.experience-content{
    border-left:2px solid #e8d8d1;
    padding-left:14px;
}

.job-title {
    font-size: 14px;
    font-weight: 800;
    color: #392a28;
    text-transform: capitalize;
}
.company {
    font-size: 12px;
    color: #b06f56;
    font-weight: 400;
    margin: 0px 0 0px;
    text-transform: capitalize;
}
.experience-content p {
    font-size: 12px;
    color: #716966;
    line-height: 1.5;
    /* white-space: pre-line; */
}

/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.project {
    background: #fff;
    border: 1px solid #eadfd9;
    border-radius: 10px;
    padding: 9px;
    position: relative;
}


.project h3{
    font-size:13px;
    color:#3e2c29;
    margin-bottom:5px;
    padding-right:25px;
}

.project a {
    font-weight: 500;
    font-size: 11px;
    color: #b07665;
    word-break: break-all;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.project p{
    font-size:11px;
    color:#756c68;
    line-height:1.5;
}


/* TIMELINE */

.timeline-item{
    display:grid;
    grid-template-columns:95px 1fr;
    gap:15px;
    margin-bottom:17px;
}

.timeline-date{
    background:#f1e2db;
    color:#9d604c;
    height:max-content;
    padding:7px 6px;
    text-align:center;
    border-radius:7px;
    font-size:10px;
    font-weight:700;
}

.timeline-content{
    border-left:2px solid #e8d8d1;
    padding-left:14px;
}

.timeline-content h3{
    font-size:14px;
    color:#392a28;
    font-weight:800;
}

.timeline-content h4 {
    font-size: 12px;
    color: #b06f56;
    margin: 3px 0 5px;
    font-weight: 400;
    text-transform: capitalize;
}

.timeline-content p{
    font-size:11px;
    color:#716966;
    line-height:1.5;
    white-space:pre-line;
}


/* HIDE */

.dynamic-hidden{
    display:none !important;
}


/* MOBILE */

@media(max-width:480px){

    body{
        padding:5px;
    }

    .resume{
        width:390px;
    }

    .left{
        padding:10px;
    }

    .profile{
        width:70px;
        height:70px;
        border:3px solid #f0d7ca;
        margin-bottom:5px;
    }

    .left-name{
        margin-bottom:10px;
    }

    .left-name h1{
        font-size:13px;
    }

    .left-name p{
        font-size:7px;
    }

    .left-section{
        margin-bottom:13px;
    }

    .left-heading{
        font-size:7px;
        margin-bottom:8px;
    }

    .left-heading i{
        font-size:8px;
    }

    .contact-item{
        font-size:6px;
        margin:7px 0;
    }

    .contact-item i{
        font-size:7px;
    }

    .skill-name{
        font-size:6px;
    }

    .skill-bar{
        height:2px;
    }

    .language-top{
        font-size:6px;
    }

    .hobby-tag{
        font-size:6px;
        padding:3px 5px;
    }

    .social-name,
    .social-url{
        font-size:6px;
    }

    .simple-item strong{
        font-size:6px;
    }

    .simple-item span,
    .simple-item a{
        font-size:6px;
    }

.right {
    padding: 20px 15px 10px;
    background: #fffaf7;
}

    .section{
        margin-bottom:10px;
    }

    .section-heading{
        margin-bottom:7px;
    }

    .section-number{
        font-size:7px;
    }

    .section-title{
        font-size:7px;
    }

    .objective{
        font-size:7px;
        padding:6px;
    }

    .experience-item,
    .timeline-item{
        grid-template-columns:50px 1fr;
        gap:9px;
        margin-bottom:11px;
    }

    .experience-date,
    .timeline-date{
        font-size:6px;
        padding:4px;
    }

    .experience-content,
    .timeline-content{
        padding-left:8px;
    }

    .job-title,
    .timeline-content h3{
        font-size:9px;
    }

    .company,
    .timeline-content h4{
        font-size:8px;
    }

    .experience-content p,
    .timeline-content p{
        font-size:6px;
    }

    .project-grid{
        gap:5px;
    }

    .project{
        padding:6px;
    }

.project h3 {
    font-size: 14px;
    color: #3e2c29;
    margin-bottom: 2px;
    padding-right: 0;
}

    .project p{
        font-size:6px;
    }

    .project-icon{
        width:15px;
        height:15px;
        font-size:6px;
        right:5px;
        top:5px;
    }

}
.social-item {
    margin-bottom: 8px;
}

#previewSocialList {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #f1c5b2 !important;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #f1c5b2;
    background: rgb(255 255 255 / 22%);
    border-radius: 5px;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1250px !important;
    }
}




















.profile-sidebar {
    width: 100%;
    position: relative;
}


.profile-cover {
    position: relative;
    min-height: 100px;
    padding: 20px 20px 20px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #6C2BD8 0%,
        #7D3BE0 45%,
        #9559E8 100%
    );
    box-shadow: 0 12px 30px rgba(108, 43, 216, .18);
}

.profile-cover-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 145px;
    height: 145px;
    top: -75px;
    right: -25px;
    background: rgba(255, 255, 255, .12);
}

.circle-two {
    width: 100px;
    height: 100px;
    bottom: -55px;
    right: -10px;
    background: rgba(255, 255, 255, .09);
}

.profile-avatar {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: #ffffff;
    color: #6C2BD8;
    font-size: 25px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(40, 15, 75, .18);
}


.profile-user-info {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.profile-user-info h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
}

.profile-meta-item:last-child {
    margin-bottom: 0;
}

.profile-meta-item i {
    width: 16px;
    text-align: center;
    color: #ffffff;
}

.personal-card {
    margin-top: 16px;
    padding: 20px;
    border: 1px solid #ebe5f2;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(40, 20, 70, .05);
}


.personal-heading {
    margin-bottom: 15px;
}

.personal-heading h4 {
    margin: 0;
    color: #171126;
    font-size: 18px;
    font-weight: 700;
}

.personal-heading span {
    display: block;
    width: 32px;
    height: 3px;
    margin-top: 8px;
    border-radius: 10px;
    background: #6C2BD8;
}

.profile-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eeeaf2;
}

.profile-detail:last-child {
    border-bottom: 0;
}

.detail-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f2ebff;
    color: #6C2BD8;
    font-size: 12px;
    transition: all .2s ease;
}

.profile-detail:hover .detail-icon {
    background: #6C2BD8;
    color: #ffffff;
}

.detail-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-info span {
    color: #81758e;
    font-size: 14px;
    line-height: 1.2;
}

.detail-info strong {
    color: #211633;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    word-break: break-word;
}

.detail-info .home-town {
    color: #6C2BD8;
    cursor: pointer;
}

.detail-info .home-town:hover {
    color: #5420b2;
}

.activities-box {
    margin-top: 18px;
}

.activities-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.activities-heading h4 {
    margin: 0;
    color: #171126;
    font-size: 18px;
    font-weight: 700;
}

.activities-heading span {
    display: block;
    margin-top: 0px;
    color: #968ba1;
    font-size: 14px;
}

.application-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid #ebe5f2;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(40, 20, 70, .04);
    cursor: pointer;
    transition: all .25s ease;
}

.application-box:hover {
    border-color: rgba(108, 43, 216, .35);
    transform: translateY(-2px);
    box-shadow: 0 9px 25px rgba(108, 43, 216, .10);
}


.application-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd0f4;
    border-radius: 10px;
    background: #f4eeff;
    color: #6C2BD8;
    font-size: 16px;
}


.application-info {
    min-width: 0;
    flex: 1;
}

.application-info h6 {
    margin: 0 0 3px;
    color: #211633;
    font-size: 14px;
    font-weight: 700;
}

.application-info p {
    max-width: 250px;
    margin: 0;
    color: #81758e;
    font-size: 14px;
    line-height: 1.4;
}

.application-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C2BD8;
    font-size: 11px;
}

@media (max-width: 991px) {

    .profile-cover {
        min-height: 190px;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }

}

@media (max-width: 767px) {

    .profile-cover {
        min-height: 170px;
        padding: 20px;
        border-radius: 14px;
    }

    .profile-avatar {
        width: 65px;
        height: 65px;
        font-size: 21px;
    }

    .profile-user-info h3 {
        font-size: 16px;
    }

    .personal-card {
        padding: 16px;
        border-radius: 13px;
    }

    .profile-detail {
        padding: 11px 0;
    }

    .application-box {
        padding: 13px;
    }

}


@media (max-width: 480px) {

    .profile-cover {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .profile-avatar {
        width: 58px;
        height: 58px;
        font-size: 19px;
    }

    .profile-user-info h3 {
        font-size: 15px;
    }

    .profile-meta-item {
        font-size: 11px;
    }

}