


/* ==== RESET CSS ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul[role='list'],
ol[role='list'],
ul,
ol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  color: #000;
}

a {
  font-size: 14px;
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}
/* main{
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
} */

/* Main styles Start */
:root{
    /* --vc-primary-color:  #F89C2D; */
    --vc-primary-color:  #F58220;
    /* --vv-secondary-color: rgba(46, 100, 24, 1); */
    --vv-primary-light:  #FFD1B9;
    --font-plus-jakarta-sans: "Plus Jakarta Sans", sans-serif;
    --font-inter: "Inter", sans-serif;
}
@media screen and (max-width: 1400px) {
  :root{
    font-size: 15.8px;
  }
}

.font-plus-jakarta{
  font-family: var(--font-plus-jakarta-sans);
}
.font-inter{
  font-family: var(--font-inter);
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{
  font-family: var(--font-plus-jakarta-sans);
  margin: 0px;
  color: #223a4b;
  line-height: 1.2;
}
.card-title{
   --bs-card-title-color: #223a4b;
}
.border-inset{
  border: 0px;
  box-shadow: inset 0px 0px 0px 1px var(--bs-card-border-color);
}

p, a, li, span, label, input, button, textarea, table, tr, td, th{
  font-family: var(--font-inter);
  
}
p, a, li,label{
  color: rgb(33 37 41 / 84%);
  font-size: 0.875rem;
}
p{
  line-height: 1.6;
  margin-bottom: 16px;
}

.h-100px{
  height: 90px;
}
.flex-start-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vc-underline-h5{
  color: var(--bs-dark);
  text-decoration-color: currentColor;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-opacity: 0.5;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.vc-bg-primary-light{
  background-color: #FBF3DB;
}
.vc-bg-dark-blue{
  background-color: #253D4E;
}

.link-dark{
  text-decoration: underline;
}
.object-left{
  object-position: left;
}
/* Common Utility Start */


/* Base Button Styles */
.vc-btn-primary,
.vc-btn-secondary,
.vc-btn-white {
  position: relative;
  border-radius: 4px;
  transition: all 250ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  vertical-align: middle;
  font-size: 14px;
  padding: 12px 22px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--btn-color);
}

/* Primary Button */
.vc-btn-primary {
    background-color: var(--vc-primary-color);
    color: #fff;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    0 2px 0 0 rgba(196, 104, 23, 0.7),
    0 4px 0 0 rgba(180, 85, 5, 0.7),
    0 6px 0 0 rgba(160, 60, 0, 0.7);
}

.vc-btn-primary:hover {
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    0 1px 0 0 rgba(196, 104, 23, 0.7),
    0 2px 0 0 rgba(180, 85, 5, 0.7),
    0 1px 0 0 rgba(160, 60, 0, 0.7);
  background-color: #c46817;
}

.vc-btn-primary.btn-sm,
.vc-btn-secondary.btn-sm,
.vc-btn-white.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
}
.vc-btn-primary.btn-sm{
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    0 1px 0 0 rgba(196, 104, 23, 0.7),
    0 2px 0 0 rgba(180, 85, 5, 0.7),
    0 3px 0 0 rgba(160, 60, 0, 0.7);
}
.vc-btn-primary.btn-sm:hover{
    transform: translateY(2px);
}
/* Secondary Button */
.vc-btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    0 2px 0 0 rgba(108, 117, 125, 0.7),
    0 4px 0 0 rgba(91, 99, 106, 0.7),
    0 6px 0 0 rgba(70, 75, 80, 0.7);
}

.vc-btn-secondary:hover {
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
    0 1px 0 0 rgba(108, 117, 125, 0.7),
    0 2px 0 0 rgba(91, 99, 106, 0.7),
    0 3px 0 0 rgba(70, 75, 80, 0.7);
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(91.8, 99.45, 106.25);
}

/* White Button */
.vc-btn-white {
  background-color: #fff;
  color: #323232;
  padding: 12px 30px;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 2px 0 0 rgba(217, 217, 217, 0.7),
    0 4px 0 0 rgba(204, 204, 204, 0.7),
    0 6px 0 0 rgba(190, 190, 190, 0.7);
}

.vc-btn-white:hover {
  transform: translateY(4px);
    color: #fff;
  background-color: #898989;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    0 1px 0 0 rgba(217, 217, 217, 0.7),
    0 2px 0 0 rgba(204, 204, 204, 0.7),
    0 3px 0 0 rgba(190, 190, 190, 0.7);
}

/* Large primary button variant */
.vc-btn-primary.btn-lg {
  padding: 18px 25px;
  font-size: 15px;
}
.vc-navbar .link-dark{
  font-size: 14px;
}


.vc-breadcrumb-wrapper .breadcrumb{
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  --bs-breadcrumb-item-active-color: var(--vc-primary-color);
  margin-bottom: 0px;
}
.vc-breadcrumb-wrapper .breadcrumb-item,
.vc-breadcrumb-wrapper .breadcrumb-item a{
  font-size: 0.8125rem
}
.vc-breadcrumb-wrapper .breadcrumb-item a:hover{
  color: var(--vc-primary-color)
}
.vc-breadcrumb-wrapper{
  padding-top: 1rem;
}
.vc-op-card{
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
}
.vc-op-card:hover{
  background-color: #f7f7f7;

}

.vc-list-tick li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}
.vc-list-tick li:last-child{
  margin-bottom: 0px;
}

.vc-list-tick li::after {
  content: '';
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_285_228)'%3E%3Cpath d='M10 0C4.47719 0 0 4.47719 0 10C0 15.5231 4.47719 20 10 20C15.5231 20 20 15.5231 20 10C20 4.47719 15.5231 0 10 0ZM10 18.7697C5.17531 18.7697 1.25 14.8247 1.25 9.99996C1.25 5.17527 5.17531 1.24996 10 1.24996C14.8247 1.24996 18.75 5.17529 18.75 9.99996C18.75 14.8246 14.8247 18.7697 10 18.7697ZM13.9909 6.34094L8.12373 12.245L5.48154 9.60281C5.23748 9.35875 4.84186 9.35875 4.59748 9.60281C4.35342 9.84688 4.35342 10.2425 4.59748 10.4866L7.69092 13.5803C7.93498 13.8241 8.33061 13.8241 8.57498 13.5803C8.60311 13.5522 8.62719 13.5215 8.64906 13.4897L14.8753 7.22498C15.1191 6.98092 15.1191 6.58529 14.8753 6.34094C14.6309 6.09688 14.2353 6.09688 13.9909 6.34094Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_285_228'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0.1875rem;
}

.vc-card-link .card-body{
  display: flex;
  align-items: start;
  flex-direction: column;
}
.vc-card-link .card-img-top {
  transition: transform 0.5s ease, filter 0.3s ease;
}

.vc-card-link.card:hover .card-img-top {
  transform: scale(1.05);
  filter: brightness(90%);
}

.vc-card-link{
  transition: box-shadow 0.3s ease;
}
.vc-card-link.card:hover {
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.15);
}

.vc-card-link.card:hover .card-img-top {
  transform: scale(1.05);
  filter: brightness(90%);
}

.vc-card-link.card:hover .vc-arrow-link::after {
    transform: translateY(-50%) translateX(5px);
}

.vc-op-card img{
  aspect-ratio: 22 / 9;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
}
.vc-op-card .vc-op-arrow{
  font-size: 35px;
  color: var(--vc-primary-color);
  transform: translateX(0px);
  transition: transform 0.2s ease-in-out;
}
.vc-op-card:hover .vc-op-arrow{
  transform: translateX(5px);
}


.vc-arrow-link {
  position: relative;
  color: #050505;
  display: inline-block;
  text-decoration: none;
  padding-right: 1.5rem;
  padding-right: 30px;
}
.vc-arrow-link:hover{
  color: var(--vc-primary-color);
}

.vc-arrow-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 1 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 1 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: transform 0.3s ease;
}

.vc-arrow-link:hover::after {
  transform: translateY(-50%) translateX(5px);
}

@media screen and (min-width: 1200px) {
  .browse-by-category .swiper-wrapper{
  justify-content: center;
}

}

.browse-by-category .swiper-button-next,
.browse-by-category .swiper-button-prev{
  --swiper-navigation-sides-offset: -44px;
  --swiper-navigation-size: 30px;
   color: #000;
}
.browse-by-category .swiper-pagination{
  --swiper-pagination-bottom: 0px;
  --swiper-pagination-bullet-horizontal-gap: 2px;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-color: var(--vc-primary-color)
}
.browse-by-category .swiper-slide{
  height: auto !important;
}
.browse-by-category .category-card{
  border: 1px solid #dee2e6;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem 1.25rem;
  border-radius: 1rem; 
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.browse-by-category .category-card h5{
  transition: color 0.2s linear;
}
.browse-by-category .category-card:hover h5{
  color: #fff !important;
}
.browse-by-category .category-card:hover{
  background-color: var(--vc-primary-color);
  
}
/* Common Utility  End  */

/* NavBar Start */
.vc-navbar-logo{
  width: 200px;
  height: auto;
  object-fit: contain;
}
.vc-home-hero-wrapper{
  position: relative;
  padding-top: 100px;
  overflow-x: hidden;
  overflow-y: visible; 
}
.vc-header-section{
  position: relative;
  padding-top: 90px;
  overflow: hidden;
  z-index: 1;

}
.vc-header-section-wrapper.vc-jb-page-wrapper{
  background-image: url("../images/banners/jobs-view.jpg");
  padding-bottom: 0px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.vc-header-section-wrapper .vc-jb-page{
  height: 100%;
  min-height: 320px;

}
.popular-search-items li{
  display: inline;
}

/* .vc-header-section .vc-home-vector-1,
.vc-header-section .vc-home-vector-2{
  z-index: unset;
} */


.vc-header-section{
  background-color: #FBF3DB;
}

.vc-home-hero-wrapper::after{
  content: '';
  position: absolute;
  background-color: #FBF3DB;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
  /* transform: skewY(-5deg); */
  /* transform-origin: top left; */
}

.vc-navbar.navbar{
  position: absolute;
  width: 100%;
  top: 0px;
  padding: 15px 0px;
  z-index: 20;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;

}
.vc-navbar.fixed-nav{
  position: fixed;
background: rgba(255, 255, 255, 0.62);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
  animation: slideDown 0.5s ease forwards;
  pointer-events: auto; /* re-enable interaction after animation */
  padding: 6px 0px;
}

.vc-navbar.fixed-nav .vc-btn-white{
  background-color: var(--vc-primary-color);
  color: #fff;
}

.vc-navbar .vc-btn-white:hover{
 background-color: #c46817;
 border-color: #c46817;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.vc-navbar .nav-item > .nav-link{
  font-weight: 500;
  color: #323232;
  font-size: 14px;
}
.vc-navbar.navbar-expand-xl .navbar-nav .nav-link{
  padding: 24px 15px 24px 15px;
}
.vc-navbar.navbar-expand-xl .navbar-nav .nav-link:hover{
  color: var(--vc-primary-color);
}
    #mobileSidenav {
      position: fixed;
      top: 0;
      right: -400px; /* hidden off-screen to the right */
      height: 100%;
      width: 100%;
      max-width: 400px;
      background-color: #fff;
      z-index: 1050;
      overflow-y: auto;
      transition: right 0.3s ease-in-out;
      box-shadow: -2px 0 5px rgba(0,0,0,0.3);
      padding: 1rem;
    }

    #mobileSidenav.active {
      right: 0;
    }

    #sidenavOverlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1040;
      display: none;
    }

    #sidenavOverlay.active {
      display: block;
    }
    .vc-navbar-mobile .nav-link{
      font-weight: 500;
      color: #323232;
      font-size: 16px;
    }
    .vc-navbar-mobile .nav-link:hover,
    .vc-navbar-mobile .nav-link:active,
    .vc-navbar-mobile .nav-link:focus{
      color: var(--vc-primary-color);
    }
    body.no-scroll {
  overflow: hidden;
}

    @media (min-width: 1200px) {
      #mobileSidenav, #sidenavOverlay {
        display: none !important;
      }
      .vc-header-section .vc-home-vector-1, 
      .vc-header-section .vc-home-vector-2{
        top: unset;
        bottom: 40px;
      }
    }
    @media (max-width: 1400px){
    .vc-navbar-logo{
      width: 170px;
    }
  }
    @media (max-width: 1366px){
    .vc-navbar.navbar-expand-xl .navbar-nav .nav-link{
      padding: 24px 7px 24px 14px;
    }
  }
    
/* NavBar End */

/* Hero Section Start */
.vc-home-hero{
  position: relative;
  overflow: hidden;
}
/* Animation keyframes for floating and waving */
@keyframes float {
  0% {
    transform: rotate(62deg) translate(-9%, -27%) translateY(0px);
  }
  50% {
    transform: rotate(62deg) translate(-9%, -27%) translateY(-15px);
  }
  100% {
    transform: rotate(62deg) translate(-9%, -27%) translateY(0px);
  }
}

@keyframes float2 {
  0% {
    transform: rotate(62deg) translate(1%, -17%) translateY(0px);
  }
  50% {
    transform: rotate(62deg) translate(1%, -17%) translateY(-10px);
  }
  100% {
    transform: rotate(62deg) translate(1%, -17%) translateY(0px);
  }
}


/* Apply animations to the vector shapes */
.vc-home-vector-1,
.vc-home-vector-2 {
  width: 28%;
  aspect-ratio: 1 / 1;
  background-color: #F89C2D;
  border-radius: 15%;
  min-width: 100px;
  max-width: 500px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.vc-home-vector-1 {
  animation-name: float;
}

.vc-home-vector-2 {
  background-color: rgba(248, 156, 45, 0.7);
  animation-name: float2;
}

.vc-right-match{
  background-image: url("../images/find-the-match.jpg");
  background-color: #ABACB5;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@media screen and (max-width: 992px) {
.vc-right-match::after{
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: brightness(0.5); 
  -webkit-backdrop-filter: brightness(0.5); 
  pointer-events: none; 
  z-index: -1;
}
  .vc-right-match h2,
  .vc-right-match p{
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .vc-right-match{
    aspect-ratio: 	1315 / 466;
  }

}
.vc-ww-bg{
  background-image: url("../images/what-is-waiting.png");
  background-position: center;
  background-size: cover;
}

/* Footer Start */
.vc-footer{
  padding-top: 40px;
  padding-bottom: 40px;
}

.vc-footer ul.vc-ft-links > li > a{
  color: #4F5E64;
  font-weight: 500;
  margin-bottom: 4px;
    font-size: 14px;
  display: block;
}
.vc-footer ul.vc-ft-links > li > a:hover{
  color: var(--vc-primary-color);
}
.vc-ft-sm h5,
.vc-ft-sm ul li a{
    color: #4F5E64;
}
.vc-ft-sm ul{
  display: inline-flex;
  gap: 16px;
  --size: 10px;
  margin-top: var(--size);
  padding-bottom: var(--size);
}
.vc-ft-sm ul li a{
  font-size: 20px;
}
.vc-ft-sm ul li a:hover{
  color: var(--vc-primary-color);
}
.vc-ft-sm p{
   color: #4F5E64
}
.vc-ft-sm .vc-ft-sm-wrapper{
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
}

.vc-ftr-logo img{
  width: 160px;
  object-fit: contain;
}
/* Footer End */



  #mainNavbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    top: 100%
  }

  #mainNavbar .dropdown-menu .dropdown:hover .vc-submenu-2 {
    left: 100%;
    top: -10px;
  }
  .nav-btm-icon-l2{
    display: inline-block;
    text-transform: none;
    line-height: 1;
    border: 0px !important;
    font-size: 13px;
    margin-left: 4px;
    position: absolute;
    top: 8px;
    transform: translateY(-50);
    right: 8px;
  }

  .dropdown .dropdown-menu {
    display: none;
    border-radius: 0px;
  }

  .dropdown-item{
    font-size: 13px;
    --bs-dropdown-link-hover-bg:#eaebec;
  }
  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .dropdown-item{
    white-space: normal;
  }
  .dropdown-menu .dropdown > .dropdown-item{
    padding-right: 25px;
  }

  .vc-navbar .nav-link.dropdown-toggle::after,
  #mainNavbar .dropdown-menu .dropdown > .dropdown-item::after{
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 0px !important;
    font-size: 13px;
    margin-left: 4px;
} 
    .dropdown-menu .dropdown > .dropdown-item::after{
      position: absolute;
      right: 12px;
      top: 7px;
    }
      
  .vc-navbar .dropdown-menu{
    box-shadow: 0px 2px 15px 1px #00000026;
    /* max-width: 180px; */
    width: 200px;


  }

  .vc-navbar-mobile .with-menu{
    position: relative;
    /* padding-right: 27px; */
  }
.vc-navbar-mobile .with-menu .nav-btm-icon {
    display: inline-block;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 0px !important;
    font-size: 13px;
    margin-left: 4px;
    position: absolute;
    right: 10px;
    top: 15px;
    cursor: pointer;
}
.vc-navbar-mobile  .with-menu.active .nav-btm-icon{
  transform: rotate(180deg);
}
.vc-navbar-mobile .nav-item .nav-link{
  width: fit-content;
}
.vc-navbar-mobile .dropdown-menu{
  position: relative;
  border-radius:  var(--bs-border-radius);
  /* margin-inline: 14px; */
}
.vc-navbar-mobile .dropdown-menu .dropdown-item{
  width: fit-content;
}
 .vc-navbar-mobile .dropdown-menu.vc-submenu-2{
    margin-inline: 12px;
  }


.vc-hm-partner{
  background-color: #EAF8F3;
  border: 1px solid #d1f7e9;
}
.vc-hm-partner .hm-logo{
  width: 75px;
}
.vc-hm-partner .vc-hm-downloads a img{
  height: 40px;
  object-fit: contain;
}

   /* Scroll to Top  */
    .scrolltop {
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 45px;
    aspect-ratio: 1 / 1;
    background-color: var(--vc-primary-color);
    display: none;
    cursor: pointer;
    z-index: 99;
    border-radius: 50%;
}
.scrolltop .icon {
    text-align: center;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vc-next-gen {
    background-color: #253D4E;
    background-image: url(../images/vee-technologies-next-gen.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
    background-blend-mode: multiply;
    height: 100%;
}

.vc-testmnial-sec{
  background-color: #253D4E;
  background: linear-gradient(rgba(37, 61, 78, 0.9), rgba(37, 61, 78, 0.9)), url('../images/testimonial-background.jpg');
  background-size: cover;
  background-position: center;
}
.vc-testmnial-card-wrapper{
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  --image-space: 40px;  /* Fallback for old browsers */
  --image-space: clamp(1rem, calc(1.5rem + 3vw), 80px);
  padding-left: var(--image-space);
  padding-right: var(--image-space);
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  --swiper-pagination-color: var(--vc-primary-color);
  --swiper-navigation-color:#818181;
  --swiper-navigation-size: 23px;
  --swiper-navigation-sides-offset: 13px;

}
.vc-testmnial-card-wrapper .swiper-button-next:hover,
.vc-testmnial-card-wrapper .swiper-button-prev:hover{
  --swiper-navigation-color:#2b2b2b;
}
.swiper-navigation-icon path {
  stroke: currentColor;
  stroke-width: 0.6px;
}

.vc-testmnial-card-wrapper::before{
  bottom: calc(var(--image-space) / 5);
  left:  calc(var(--image-space) / 5);
  transform: rotate(180deg);
}
.vc-testmnial-card-wrapper::after{
  top:  calc(var(--image-space) / 5);
  right:  calc(var(--image-space) / 5);
}

.vc-testmnial-card-wrapper::before,
.vc-testmnial-card-wrapper::after{
  content: '';
  position: absolute;
  width: calc(var(--image-space) - calc(var(--image-space) / 10));
  height:  calc(var(--image-space) - calc(var(--image-space) / 10));
  background-image: url("../images/quote-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;

}
.vc-testmnial-card{
  text-align: center;
}

.vc-testmnial-card blockquote{
  color: #4F5E64;
  font-weight: 600;
  margin-top: 1rem;
}
.vc-testmnial-sec,.vc-testmnial-card-wrapper{
  --bottom-space: 100px;
}
.vc-testmnial-sec{
  margin-bottom: calc(var(--bottom-space) + 50px);
  margin-top: 50px;
}
.vc-testmnial-card-wrapper{
  margin-bottom: calc( -1 * var(--bottom-space));
}

.vc-tabs .nav-link{
  background-color: #D9D9D9;
  color: #4F5E64;
  padding-inline: 1.8rem;
  padding-inline: clamp(0.8rem, calc(1rem + 1vw) , 1.8rem);
  padding-block: clamp(0.4rem, calc(0.2rem + 1vw) , 0.5rem);
}
.vc-tabs .nav-link.active{
  background-color: #4F5E64;
  color: #fff;
}

/* Nav Profile Start  */
      .vc-profile-bar{
         position: relative;
         min-height: 55px;
         align-content: center;
      }
      .vc-profile-bar .vc-pro-avatar{
         font-size: 22px;
         color: #535353;
         width: 35px;
         height: 35px;
         border: 1px solid #2a2a2a41;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         /* background-color: #2a2a2a21; */
         background-color: #73737321;
      }
      .vc-profile-wrapper{
         display: flex;
         align-items: center;
         gap: 7px;
      }
      .vc-profile-wrapper p{
         margin-bottom: 0px;
      }
      .vc-profile-wrapper small{
         font-size: 9px;
         color: #323232;
         line-height: 1;
         display: block;
         margin-bottom: 4px;
      }
      .vc-profile-wrapper p {
        font-size: 12px;
        color: #323232;
        font-weight: 500;
        max-width: 140px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Change this number for more lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .vc-profile-menu{
         position: absolute;
         top: 50px;
         padding: 10px 0;
         background: #fff;
         border-radius: 6px;
         border: 1px solid #eee;
         transition: all .2s ease-in-out;
         list-style: none;
         right: 0;
         width: 200px;
         overflow: hidden;
         z-index: 999;
         display: none;
      }
      .vc-profile-ds-bar:hover .vc-profile-menu{
         display: block;
      }
   .vc-profile-menu ul li a{
         display: block;
         padding: 0 10px;
         color: #1e293a;
         font-size: 14px;
         line-height: 30px;
         text-decoration: none;
}
.vc-profile-menu ul li a:hover {
    background-color: #f6f6f6;
    color: var(--vc-primary-color);
}
.vc-profile-down-icon{
   font-size: 12px;
   color: #1e293a;
} 
.vc-navbar-mobile .vc-profile-menu{
   position: static;
   margin-top: 12px;
}
.vc-navbar-mobile .vc-profile-bar{
   align-content: normal;
} 
.vc-profile-wrapper.active .vc-profile-down-icon i::before{
   transform: rotate(180deg);
}
.vc-navbar-mobile  .vc-profile-down-icon{
   font-size: 14px;
   color: #1e293a;
   margin-left: auto
} 

    .vc-lg-form{
        position: relative;
        min-height: calc(100vh - 0px);
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }
    .vc-form{
      position: relative;
      background: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      max-width: 500px;
      margin: 0 auto;
    }
    .login-overley{
      background-image: url("./assets/images/login.jpg");
      background-position: center;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .login-logo{
      
      padding: 2rem;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.3);

    }
    .vc-form .form-logo{
      width: 190px;
    }

@keyframes ripple-out {
  0% {
    transform: translate(50%, 50%) scale(1);
  }
  100% {
    transform: translate(50%, 50%) scale(1.03);
  }
}
@keyframes ripple-out-left {
  0% {
    transform: var(--position) scale(1);
  }
  100% {
    transform: var(--position) scale(1.03);
  }
}

.vc-login-ripple-wrapper .vc-vector {
  width: 20%;
  aspect-ratio: 1 / 1;
  background-color: var(--vc-primary-color);
  display: block;
  position: absolute;
  right: 0px;
  border-radius: 3rem;
  bottom: 0px;
  transform: translate(50%, 50%);
  animation: ripple-out 5s linear infinite alternate;
  
}

.vc-login-ripple-wrapper.vc-vector-2 .vc-vector {
  right: unset;
  left: 0px;
  --position: translate(-50%, 50%);
  transform: var(--position);
  animation: ripple-out-left 5s linear infinite alternate;

}
.vc-login-ripple-wrapper .vc-vector:nth-child(2) {
  width: 30%;
  opacity: 0.5;
  animation-delay: 0.6s;
}

.vc-login-ripple-wrapper .vc-vector:nth-child(3) {
  width: 40%;
  opacity: 0.3;
  animation-delay: 1s;

}

.vc-login-ripple-wrapper .vc-vector:nth-child(4) {
  width: 50%;
  opacity: 0.1;
  animation-delay: 1.4s;
}
.vc-login-ripple-wrapper .vc-vector:nth-child(5) {
  width: 60%;
  opacity: 0.05;
  animation-delay: 1.8s;
}

/* Login / Register form End */
@media screen and (max-width: 782px){
    .browse-by-category .swiper-button-next, .browse-by-category .swiper-button-prev{
      display: none;
    }
}
/* Nav Profile End  */



@media screen and (max-width: 600px) {
    .scrolltop {
        right: 15px;
        bottom: 20px;
    }
}
  /* Scroll to end */

@media screen and (min-width: 1200px) {
    .vc-header-section-wrapper{
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 600px) {
  .vc-hm-partner .hm-logo{
    width: 70px;
  }
  .vc-hm-partner h4{
    font-size: 20px;
    font-size: clamp(14px, calc( 1rem + 1vw) ,24px);
  }
  .vc-hm-partner h6{
    font-size: 16px;
    font-size: clamp(10px, calc( 0.7rem + 1vw) ,18px);
  }
}
@media screen and (max-width: 1200px) {
  .vc-home-hero-wrapper, .vc-header-section{
    padding-top: 80px;
  }
  .vc-ftr-logo img{
    width: 120px;
  }
  .vc-header-section-wrapper{
    padding-top: 40px;
    padding-bottom: 40px;
  }

}


.vc-cop-card {
  padding: 0.375rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff; 
}

.vc-line-link {
  color: var(--bs-dark);
  text-underline-offset: 0.25rem; 
  text-decoration: underline;
  --bs-link-underline-opacity: 0.25;
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.vc-line-link:hover {
  --bs-link-underline-opacity: 1;
}

@media (min-width: 768px) {
  .vc-cop-card {
    padding: 1.2rem;
  }
}


/* Password Input style start */
.password-container {
     position: relative;
}
.password-toggle {
    position: absolute;
    top: 8px;
    right: 0.75rem; 
    z-index: 3; 
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.password-input {
    padding-right: 2.5rem; 
}
.password-container {
    position: relative;
}
.was-validated .password-container .password-input{
    padding-right: 3.9rem; 
}
.was-validated .password-toggle {
    right: 2.5rem;
}

/* Table Start  */

   .vc-cop-card .pagination .page-link,
   .vc-cop-card .dataTables_info{ 
    color: #6c757d
   }
   .vc-cop-card .page-link.active,  .vc-cop-card .active>.page-link{
      color: #fff;
   }
   .vc-cop-card .table th{
      font-weight: 500;
      padding-block: 10px;
   }
   .vc-cop-card .table-responsive{
     padding-bottom: 16px;
   }
   .vc-cop-card .table{
      font-size: 15px;     
   }
   .vc-cop-card .table td,
   .vc-cop-card .table th{
      font-size: 14px;
   }
   .vc-cop-card .table td{
      color: rgba(33, 37, 41, 0.9);
   }
   .vc-cop-card #category_id {
    display: inline-block !important;
   }
  @media screen and (min-width: 1400px) {
      .vc-cop-card .table td,
      .vc-cop-card .table th{
      font-size: 15px;
      }
  }
/* Table End  */

.vc-gallery-card{
  cursor: pointer;
}
.vc-gallery-image{
  border-radius: 0.9rem;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid #ededed;
  margin-bottom: 12px;
}
.vc-gallery-image:after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #0000003e;
  z-index: -1;
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
}
.vc-gallery-image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s;
  z-index: -2;
}
.vc-overlay{
  background-color: var(--vc-primary-color);
  padding: 6px 18px;
  position: absolute;
  border-radius: 50rem;
  font-size: 12px;
  color: #fff;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.vc-gallery-card:hover .vc-overlay{
  opacity: 1;
  bottom: 20%;
}
.vc-gallery-card:hover .vc-gallery-image:after{
  opacity: 1;
}
.vc-gallery-card:hover img{
  transform: translate3d(0, 0, 0) scale(1.1, 1.1);
}
.vc-gallery-card h4{
  text-align: center;
}

.vc-gallery-wrapper > a{
  position: relative;
  cursor: pointer;
}
.vc-gallery-wrapper > a::after {
    content: '';
    color: var(--vc-primary-color);
    background: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.vc-gallery-wrapper > a::before{
  content: 'view';
  color: #fff;
  font-family: var(--swiper-navigation-sides-offset);
  font-size: 12px;
  background-color: var(--vc-primary-color);
  padding: 4px 8px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 50rem;
}
.vc-gallery-wrapper > a:hover::after,
.vc-gallery-wrapper > a:hover::before{
    opacity: 1;
}

.vc-disclaimer{
  background-color: rgb(248, 249, 250);
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.vc-disclaimer p{
  font-size: 14px;
}


.vc-tags-layout {
    font-size: 16px;
    line-height: 1.6;
    border: 1px solid var(--bs-border-color-translucent);
    border-radius: 0.5rem;
    background-color: rgba(var(--bs-tertiary-bg-rgb), 1);
    padding: 20px;

}
.vc-tags-layout h1,
.vc-tags-layout h2,
.vc-tags-layout h3,
.vc-tags-layout h4,
.vc-tags-layout h5,
.vc-tags-layout h6{
  margin-bottom: 0.5em;
}

.vc-tags-layout p strong {
    font-weight: bold;
}

.vc-tags-layout ul {
    list-style-type: disc; 
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 16px; 
}

.vc-tags-layout ul li {
    padding-left: 0; 
}

.vc-tags-layout a {
    text-decoration: underline;
    text-underline-offset: 0.25rem; 
    text-decoration: underline;
    --bs-link-underline-opacity: 0.25;
    color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1));
    text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1));
}

.vc-tags-layout a:hover{
  --bs-link-underline-opacity: 1;
}
.vc-tags-layout a:active{
  color: var(--vc-primary-color);
  text-decoration-color: var(--vc-primary-color);
}
.vc-no-jobs-avail{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vc-no-jobs-avail > img{
    max-width: 700px;
    width: 30%;
    min-width: 200px;
    margin-bottom: 24px;
}
.vc-tags-layout strong {
    font-weight: bold;
}
.vc-tags-layout table,
.vc-tags-layout td,
.vc-tags-layout th,
.vc-tags-layout tr{
  height: auto !important;
  width: auto !important;
}
.vc-tags-layout .vc-btn-primary{
  text-decoration: none;
  color: #fff;
  padding-inline: 1.75rem;
}

/* Remove Tick Icon and Green Border  */
.was-validated .form-control:valid, .form-control.is-valid{
  border: var(--bs-border-width) solid var(--bs-border-color);
  background-image: none;
  padding-right: 2.5rem;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    box-shadow: rgba(245, 130, 32, 0.25) 0px 0px 0px 0.25rem;
    border-color: rgb(250, 193, 144);
}

.was-validated .form-control:valid .password-toggle,
.was-validated .password-container:has(.form-control:valid:not(.is-invalid)) .password-toggle-btn{
  right: 0.75rem;
}


.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"], 
.form-select.is-valid:not([multiple]):not([size]), 
.form-select.is-valid:not([multiple])[size="1"]{
  --bs-form-select-bg-icon: none;
  border: var(--bs-border-width) solid var(--bs-border-color);
}
.was-validated .form-select:valid:focus, 
.form-select.is-valid:focus {
  box-shadow: rgba(245, 130, 32, 0.25) 0px 0px 0px 0.25rem;
  border-color: rgb(250, 193, 144);
}


p:has(> strong:only-child) {
    margin-bottom: 0.5em;
}

@media screen and (max-width: 992px) {
  .vc-disclaimer p{
    font-size: 13px;
  }
}

.vc-list-group.list-group{
  --bs-list-group-item-padding-y: 1rem;
  --bs-list-group-item-padding-x: 0.8rem;
}

@media screen and (min-width: 992px) {
  .vc-list-group.list-group{
  --bs-list-group-item-padding-y: 1rem;
  --bs-list-group-item-padding-x: 1rem;
}
}
/* Sweat Alert Popup */
.swal2-styled.swal2-confirm{
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-inline: 1.5rem;
    color: #fff;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid #F58220 !important;
    border-radius: 0.375rem !important;
    background-color: #F58220 !important;

}
.swal2-styled.swal2-confirm:hover{
    background-color: rgb(246.5, 148.75, 65.45) !important;
    border-color: rgb(246, 142.5, 54.3) !important;
}
@media screen and (max-width: 786px){
    .swal2-title{
      font-size: 22px !important;
      line-height: 1.2;
      padding: 15px 12px 0px 12px !important;
    }
    .swal2-icon{
      font-size: 12px !important;
    }
}
.highlight-company {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: normal;
}