@import url('https://fonts.googleapis.com/css?family=Proxima+Nova');
/* @import '~mdb-ui-kit/css/mdb.min.css'; */

@font-face {
  font-family: 'FontAwesome';
  src: url("assets/fonts/fontawesome-webfont.eot") format("eot");
  src: url("assets/fonts/fontawesome-webfont1.eot") format("eot"),
    url("assets/fonts/fontawesome-webfont2.eot") format("eot");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "proxima_nova_rgregular" !important;
  src: url("assets/fonts/proximanova-regular-webfont.woff") format("woff"),
       url("assets/fonts/proximanova-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "proxima_nova_rgbold" ;
  src: url("assets/fonts/proximanova-bold-webfont.woff") format("woff"),
       url("assets/fonts/proximanova-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "proxima_nova_rgregular" !important;;
    src: url('assets/fonts/proximanova-regular.otf') format('otf');
    src: url('assets/fonts/proximanova-regularit.otf') format('otf');
    src: url('assets/fonts/ProximaNova Font.otf') format('otf');
     font-weight: normal;
    font-style: normal;
} */

:root {
  --default-font: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important;
  --heading-font: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif"!important;
  --nav-font: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif"!important;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #000000;
  --default-color-rgb: 61, 67, 72;
  --heading-color: #000000;
  --heading-color-rgb: 62, 80, 85;
  --accent-color: #1c71b3;
  --accent-color-rgb: 56, 141, 168;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #313336;
  --nav-hover-color: #77b6ca;
  --nav-dropdown-color: #313336;
  --nav-dropdown-hover-color: #77b6ca;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif";
  font-style: normal;
}

a {
  color: #1c71b3;
  text-decoration: none !important;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/**/
i.head-lists {
    display: none;
}
.me-auto {
    margin-right: 32px !important;
}
li.login-css {
    margin-right: 0px;
    margin-left: 75px;
}
li.dash-right {
    margin-left: 21%;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgb(255 255 255);
  padding: 4px 0;
    transition: all 0.5s;
  z-index: 99;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 51px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 34px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #1c71b3;
    font-size: 14px;
    padding: 6px 20px;
    font-weight: 600;
    margin: 0 0 0 15px;
    text-transform: uppercase;
    border-radius: 10px 0px;
    transition: 0.3s;
}

.registered {
    color: var(--contrast-color) !important;
    background: #F0852F !important;
    border-color: #f08530 !important;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: linear-gradient(271deg, #1c71b3, #f0852f) !important;
  border-color: none;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
            margin-left: 30px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(var(--default-color-rgb), 0.15);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
            color: var(--nav-color);
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #241c5a;
  }

  .navmenu ul li.active a {
    color: #1c71b3;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
            width: 260px;
    visibility: hidden;
    right: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #1c71b3;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: #1c71b3;
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
            color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        position: absolute;
        left: 0px;
        top: 0px;
        transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

      .navmenu ul {
        display: none;
        left: 10px;
        position: relative;
        width: 84%;
        height: 100%;
        inset: 0px 16px 0px 0px;
        padding: 50px 0px 10px 0px;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
    }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 7px 20px;
    font-family: var(--nav-font);
          font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
            display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1c71b3;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    /* display: block; */
   display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 0px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid rgba(var(--default-color-rgb), 0.1);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
           color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        left: 88%;
        margin-right: 0;
        z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgb(240 133 47);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/* .page-title {
  --background-color: rgba(var(--default-color-rgb), .04);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0 10px 0;
  position: relative;
  background: #e2f2ff;
} */

/* Container for page title with 3D neon glow animation */
.page-title {
  position: relative;
  color: var(--default-color);
  padding: 10px 0;
  overflow: hidden;
  background: linear-gradient(90deg, #f2f2f2, #a0ccfa, #ffffff);
  background-size: 300% 100%;
  animation: neonGlow 5s ease infinite;
}

/* Keyframes for the neon glow animation */
@keyframes neonGlow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}




.page-title h1 {
  font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #104069;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
      border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 5px;
  position: relative;
}

.section-title h2 {
      font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative;
}

/*.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 3px;
  background: #1c71b3;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}*/

.section-title p {
    margin-bottom: 0;
    font-weight: 600;
    color: dimgrey;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
background: rgb(0 0 0 / 43%);
/*  background: rgb(255 255 255 / 0%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    line-height: 56px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 span {
  color: var(--accent-color);

}

.hero p {
  color: white;
  margin: 5px 0 30px 0;
  font-size: 20px;
  text-align: left;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: #1c71b3;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
  font-weight: 600;
  font-size: 15px;
      margin: 0px 60px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px 0px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: linear-gradient(271deg, #1c71b3, #f0852f) !important;
  box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: rgba(var(--accent-color-rgb), 0.85);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
            width: 100%;
  }
}


/*-------------------------------------------------------------------------------------
# HEADER LOGIN POPUP CSS SATRT HEADER LOGIN POPUP CSS SATRT HEADER LOGIN POPUP CSS SATRT 
-------------------------------------------------------------------------------------*/

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 0px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #000000c9;
/*  background: linear-gradient(45deg, #1c71b3e0, #241c5adb) !important;*/
  transition: opacity 600ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup-header {
  background: rgb(255, 255, 255);
/*    background: linear-gradient(271deg, #1c71b3, #343957) !important;*/
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
    padding: 5px 10px;
    border-bottom: 2px solid lightgrey;
}
.popup-header img {
    background: white;
    padding: 3px 5px;
    border-radius: 10px 0px;
    width: 37%;
}
.login-forms {
    position: absolute;
    right: 23px;
    top: 40%;
    border: 1px solid lightgrey;
    background: #e2e2e2;
    border-radius: 0px 6px 7px 0px;
    padding: 11px 12px;
}
.logins-form {
    position: absolute;
    right: 23px;
    top: 57%;
    border: 1px solid lightgrey;
    background: #e2e2e2;
    border-radius: 0px 6px 7px 0px;
    padding: 11px 12px;
}
.popup {
  margin: 0px auto;
  padding: 8px 5px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  /* transition: all 5s ease-in-out; */
      border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    border-left: 4px solid #1c71b3;
    border-right: 4px solid #1c71b3;
}
input.form-control {
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    height: 40px;
}
.form-control-select {
  position: relative;
  appearance: none;
  width: 100% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../../images/icons/down.png') no-repeat right 10px center;
  padding-right: 30px;
  background-size: 12px;
}
.range-item p {
  font-weight: 600;
  font-size: 13px;
}
.iti {
  width: 100% !important;
}

.popup h2 {
  margin-top: 0;
  color: #333;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}
.popup .close {
     position: absolute;
    top: 11px;
/*    background: white;*/
    right: 10px;
/*    padding: 0px 8px;*/
    height: 40px;
    transition: all 200ms;
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
     max-height: 30%;
/*    overflow: auto;*/
    padding: 15px 15px 15px 15px;
    margin-top: 0px;
    border-top: 3px solid #e3e3e3;
}
label {
    display: inline-block;
    margin: 10px 0px 8px 0px;
}
.fpassword {
    text-align: right;
    padding: 3px 0px 4px 0px;
}
.headings-full {
    padding: 10px 17px 5px 17px;
}

.headings-full h6 {
    color: #3c3c3c;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 10px;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
}
.headings-full h3.headings {
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.25rem;
    margin-top: 10px;
    margin-bottom: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}
.form-group {
    margin-bottom: 10px;
}

/* Make all labels within .form-group bold */
.form-group label {
  font-weight: bold;
}



.login-footer {
  background: rgb(255, 255, 255);
/*background: linear-gradient(271deg, #1c71b3, #343957) !important;*/
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    border-top: 2px solid lightgrey;
    border-bottom: 2px solid lightgrey;
    text-align: center;
}

.login-footer a {color: rgb(0, 0, 0);text-decoration: none;transition: 0.3s;font-size: 16px;text-transform: capitalize;font-weight: 600;}

.login-footer1 {
  background: black;
/*background: linear-gradient(271deg, #1c71b3, #343957) !important;*/
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    text-align: center;
    margin-top: 5px;
    width: 44%;
    border-radius: 26px;
   
}

.login-footer1 a {color: white;text-decoration: none;transition: 0.3s;font-size: 12px;text-transform: capitalize;font-weight: 600;}


label {
    display: inline-block;
    margin: 6px 0px 6px 0px;
    color: #494949;
       font-weight: 600 !important;
    font-size: 15px;
}

@media screen and (max-width: 600px){
  .box{
    width: 70%;
  }
  .popup{
    width: 100%;
  }
}
 /*--------------------------------------------------------------
# HEADER REGISTER POPUP PAGE CSS START  HEADER REGISTER POPUP PAGE CSS START 
--------------------------------------------------------------*/
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}
.tabs-fully .Profile-list label {
    text-align: left;
    display: inline-block;
    margin: 6px 0px 6px 0px;
    color: black;
    width: 100%;
    font-weight: 600;
}
.modal-content {
   position: relative;
    background-color: #ffffff;
    margin: 5px auto;
    padding: 2px 0px;
    width: 50%;
    border-radius: 0px;
}
.close {
        color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    position: absolute;
    right: 14px;
    top: 5px;
}
.close:hover,
.close:focus {
    color: #ff5b5b;
}
.popup-header p {
    text-align: left;
    font-size: 15px;
        color: white;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0rem;
}
.full-signin p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #3e3e3e;
    text-transform: capitalize;
    margin-top: 0.9rem;
    margin-bottom: 0.5rem;
}
.full-signin {
    padding: 0px 15px;
}

.role-boxes {
    text-align: center;
    padding: 20px 0px;
}

.role-boxes .tab-job {
    background: #ffffff;
    border: 2px solid #d6d6d6;
    padding: 27px 10px;
    box-shadow: inset 0px 2px 20px rgb(0 0 0 / 20%);
    margin: 10px 5px;
}

.role-boxes .tab-job img {
    width: 80px;
    margin-bottom: 21px;
}

.role-boxes .tab-job h4 {
    color: #fff;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.4;
}



/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --background-color: rgba(var(--accent-color-rgb), .06);
  padding: 40px 0;
      border-top: 2px solid #cde2ea;
          border-bottom: 2px solid #cde2ea;
}

.featured-services .service-item {
  position: relative;
  /* padding-top: 20px; */
  box-shadow: 0px 2px 20px rgb(0 0 0 / 34%);
  padding: 22px 6px;
  border: 3px solid #f7faf9;
  z-index: 9;
  background: #f7faf9;
}
.featured-services .service-item:hover {
    /*border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;*/
    border-right: 4px solid #1c71b3;
    border-left: 4px solid #1c71b3;
}
.featured-services .service-item .icon {

    background-color: var(--accent-color);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  box-shadow: 0px 2px 20px rgb( 0 0 0 /10%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item .icon i {
/*  color: var(--accent-color);*/
color: white;
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
      font-weight: 600;
    margin-bottom: 10px;
    font-size: 17px;
    text-transform: uppercase;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
/*  background-color: rgba(var(--accent-color-rgb), 0.2);*/
background: #f0852f;
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
   box-shadow: 0px 2px 20px rgb(214 214 214);
}
.abouts-img img {
    width: 80%;
}
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.about .content h3 {
     font-size: 1.7rem;
    font-weight: 600;
     line-height: 1.5;
    text-transform: uppercase;
}

.content p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    color: grey;
    margin-top: 9px;
    text-transform: capitalize;
    margin-bottom: 1rem;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: #1c71b3;
  color: var(--contrast-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .content .reads-mores {
  background: #f0852f;
  color: var(--contrast-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: linear-gradient(271deg, #1c71b3, #343957) !important;
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  background: #f5f5f5;
    border-bottom: 3px solid #ebebeb;
}

.clients .client-logo {
/* display: flex; */
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    padding: 9px 2px;
        margin: 3px 0px;
        box-shadow: 0px 2px 20px rgb(97 97 97 / 20%);
/*    border: 3px solid #d6d6d6;*/
    background: white;
    border-bottom: 3px solid #e3e3e3;
    border-top: 3px solid #e3e3e3;
/*    margin: 15px 19px 10px 19px;*/
}

/*.client-logo :hover {
    border-right: 4px solid #1c71b3;
    border-left: 4px solid #1c71b3;
     border-top: 4px solid #000;
    border-bottom: 4px solid #000;

}*/


.clients .client-logo img {
     padding: 22px 47px;
    max-width: 86%;
  transition: 0.3s;
  opacity: 1.5;
/*  filter: grayscale(100);*/
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 10px 10px;
  }
}
/**/
.customer-satisfied {
  padding: 24px 10px 24px 20px;
    margin: 25px 0px;
    background: white;
       box-shadow: 0px 2px 20px rgb(97 97 97 / 20%);
    border-bottom: 3px solid #e3e3e3;
    border-top: 3px solid #e3e3e3;
}
.customer {
    display: flex;
    padding: 4px 0px;
}
.customer-satisfied .customer .left-start {
    width: 20%;
    margin-bottom: 10px;
}

.customer-satisfied .customer .right-start {
    width: 80%;
}


.customer-satisfied .customer .right-start h4 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.3rem;
}

.customer-satisfied .customer .left-start img {
    width: auto;
    height: auto;
}

.customer-satisfied .customer .right-start p {
    margin-top: 0;
    margin-bottom: 0rem;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(var(--default-color-rgb), 0.15);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: rgba(var(--accent-color-rgb), 0.04);
}

.features .nav-link.active {
  background: rgba(var(--accent-color-rgb), 0.08);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# connection  Section
--------------------------------------------------------------*/
.connections {
      background: #f5f5f5;
}
.connections-fully:hover {
    background: white !important;
    box-shadow: 0px 1px 20px rgb(0 0 0 / 10%);
        border-top: 4px solid #1c71b3;
    border-bottom: 4px solid #1c71b3;
    border-left: 4px solid #000000;
    border-right: 4px solid #000000;
}
.connections .content-connections .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.connections .content-connections h3 {
  font-size: 2rem;
  font-weight: 600;
      margin-bottom: 1rem;
}

.content-connections p {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.8;
    color: grey;
    margin-top: 9px;
    text-transform: capitalize;
    margin-bottom: 1rem;
}
.connections .content-connections p:last-child {
  margin-bottom: 0;
}

.connections .content-connections .read-more {
  background: #1c71b3;
  color: var(--contrast-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.connections .content-connections .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.connections .content-connections .read-more:hover {
  background: linear-gradient(271deg, #1c71b3, #f0852f) !important;
  padding-right: 19px;
}

.connections .content-connections .read-more:hover i {
  margin-left: 10px;
}

.connections .connections-images img {
  border-radius: 10px;
}
.connections-fully .connections-icon {text-align: center;margin-bottom: 9px;}

.connections-fully {
     padding: 10px 5px;
    box-shadow: 0px 2px 20px rgb(97 97 97 / 20%);
    text-align: center;
    border: 3px solid #d6d6d6;
    background: white;
}

.connections-fully .connections-icon img {
    width: 50px;
    height: auto;
}

.connections-fully .connections-icon h4.title {
    margin-top: 10px;
    margin-bottom: .2rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.5rem;
}


/*--------------------------------------------------------------
# Easy-helpers Section
--------------------------------------------------------------*/

section#Easy-helpers {
    background: #f5f5f5;
}
/*HAPPY CLIENT SLIDER SCRIPT START */
section#client-slider {
    background: #044176;
    padding: 40px 0px;
}
.easily_helpers {
      padding: 20px 5px;
}

.easily_helpers:hover {
    border-top: 3px solid #1c71b3;
    border-bottom: 3px solid #1c71b3;
    border-left: 3px solid #000000;
    border-right: 3px solid #000000;
    height: 170px;
    border-radius: 10px 0px;
}

.easily_helpers .easily-img {
    width: 20%;
    padding: 0px 0px;
    text-align: left;
}
.easily_helpers .easily-img img {
    width: 50px;
    height: auto;
}
.easily_helpers .helpers-text {
    width: 80%;
    padding-left: 20px;
}
.easily_helpers .helpers-text h3 {
    font-size: 1.15rem;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
}

.easily_helpers .helpers-text p {
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
    color: #858585;
    font-weight: 600;
    font-size: 14px;
}

.find-helpers a.read-more {
    background: #1c71b3;
    color: var(--contrast-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-item {
    position: relative;
    /* display: none; */
 float: none !important;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}


@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
      display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
      display: block;

    }
  }

  .carousel-inner .carousel-item.active,
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    display: flex;
  }

  /* medium and up screens */
  @media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
  }

  .carousel-inner .carousel-item-end,
  .carousel-inner .carousel-item-start { 
    transform: translateX(0);
  }

  .carousel-control-prev {
    left: -50px !important;
}
.carousel-control-next {
    right: -50px !important;
}
.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: black!important;
}
.carousel-control-next, .carousel-control-prev {
       position: absolute;
    top: 50px;
    right: 0px;
/*    left: 0px;*/
    bottom: 0px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4%;
    height: 28%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 2px solid lightgrey;
    opacity: .5;
    transition: opacity .15s ease;
}
.card-img {
    text-align: center;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
    padding: 10px !important;
}
.card-img .img-fluid {
    max-width: 100%;
    height: auto;
    width: 90%;
}
.carousel-item {
    width: 80% !important;
}

.card {
       position: relative;
    display: flex;
    flex-direction: column;
        box-shadow: 0px 2px 20px rgb(97 97 97 / 20%);
    min-width: 0;
        margin: 5px 6px;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
/*    border: 1px solid rgb(63 75 84);*/
border: 2px solid rgb(240 240 240);
    border-radius: 15px 0px
}
.card:hover {
    background: white;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
section#Features {
    box-shadow: 0px 2px 20px rgb(214 214 214);
}
.Features .feature-item {
 text-align: center;
    border: 3px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 40px 20px;
    background: white;
    transition: all ease-in-out 0.3s;
    height: 100%;
    box-shadow:  0px 2px 20px rgb(0 0 0 / 15%);
}

.Features .feature-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1c71b3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.Features .feature-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.Features .feature-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.Features .feature-item h3 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.Features .feature-item p {
    line-height: 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}

.Features .feature-item:hover {
  background: linear-gradient(179deg, #000000, #313131) !important;
    box-shadow: 0px 1px 20px rgb(0 0 0 / 10%);
       border-top: 4px solid #1c71b3;
    border-bottom: 4px solid #1c71b3;
    border-left: 4px solid #000000;
    border-right: 4px solid #000000;
        transform: translateY(-10px);
}

.Features .feature-item:hover .icon {
  background: var(--contrast-color);
}

.Features .feature-item:hover .icon i {
  color: var(--accent-color);
}

.Features .feature-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.Features .feature-item:hover h3,
.Features .feature-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Available-jobs Section
--------------------------------------------------------------*/
.Available-jobs {
      box-shadow: 0px 2px 20px rgb(214 214 214);
}

.Available-jobs .Available-item {
background-color: var(--contrast-color);
    box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.2);
    box-sizing: content-box;
    padding: 20px 10px;
    margin: 30px 30px 29px 30px;
    min-height: auto;
    display: block;
    flex-direction: column;
    text-align: left;
    transition: 0.3s;
    border: 2px solid #eeeeee;
}
/*.Available-jobs .Available-item :hover {
 box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.2);
    border-bottom: 4px solid #1c71b3;
    border-top: 4px solid #1c71b3;
}*/
.Availables-jobs {
    text-align: center;
}
.Available-jobs .Available-item .stars {
  margin-left: 10px;
  text-align: left;
}

.Available-jobs .Available-item .stars i {
/*  color: #ffc107;*/
  margin: 0 1px;
}

.Available-jobs .Available-item .testimonial-img {
  width: 70px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.Available-jobs .Available-item h3 {
      font-size: 15px;
    font-weight: bold;
        line-height: 1.4;
    text-transform: capitalize;
    margin: 13px 0 10px 0;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}


.Available-jobs .Available-item h6 {
  color: #1c71b3;
}

.Available-jobs .Available-item h4 {
    font-size: 15px;
    text-transform: capitalize;
    margin: 4px 0 7px 0;
    color: #787878;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.Available-jobs .Available-item p {
      font-style: normal;
       margin: 0 auto 5px auto;
    font-size: 14px;
    line-height: 1.6;
    text-transform: capitalize;
    font-weight: 600;
    color: #565656;
}

.Available-jobs .swiper-wrapper {
  height: auto;
}

.Available-jobs .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.Available-jobs .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
}

.Available-jobs .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.Available-jobs .swiper-slide {
  opacity: 1;
}

@media (max-width: 1199px) {
  .Available-jobs .swiper-slide-active {
    opacity: 1;
  }

  .Available-jobs .swiper-pagination {
    margin-top: 0;
  }

  .Available-jobs .Available-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .Available-jobs .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}



/*--------------------------------------------------------------
# Direct-Hire  Section
--------------------------------------------------------------*/
.Direct-Hire {
    background: #f5f5f5;
}
.Direct-hire-item {
    background: white;
    box-shadow: 0px 2px 20px rgb( 0 0 0 /10%);
    border: 3px solid #efefef;
    border-radius: 10px 0px;
   display: block;
/*     display: flex;*/
    padding: 20px 0px;
    margin: 5px 0px;
}
.Direct-hire-item:hover {
 /*   border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
    border-left: 4px solid #1c71b3;
    border-right: 4px solid #1c71b3;*/
    transform: translateY(-10px);
}
.Direct-hire-item img {
       width: 40%;
    height: auto;
    padding-top: 5px;
    border-radius: 10px 0px;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 13%);
}
.anker-btn {
    border-top: 2px solid lightgrey;
    padding-top: 3px;
    margin-top: 13px;
}
.Direct-hire-item .hires-boxes {
    padding: 0px 10px 10px 20px;
    width: 100%;
}
.Direct-hire-item .hire-box {
    width: auto;
        text-align: left;
}
.Direct-hire-item .hires-boxes h3 {
    margin-top: 10px;
    margin-bottom: 0.7em;
    font-weight: 600; 
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 1.0rem;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}


.Direct-hire-item .hires-boxes h3 i {
/*    color: #1c71b3;*/
    padding-right: 8px;
}

.Direct-hire-item .hires-boxes h5 {
       margin-top: 0px;
    margin-bottom: .5em;
    font-weight: 600;
    padding: 4px 10px;
    top: 4px;
    left: 4px;
    display: inline-block;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 58%);
    border: 2px solid #1c71b3;
    background: #ffffffcf;
    position: absolute;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 0.6rem;
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}
.Direct-hire-item .hires-boxes p {
    margin-top: 10px;
    margin-bottom: 0.5rem;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    text-transform: capitalize;
}

.Direct-hire-item .hires-boxes a.read-more {
    text-decoration: none;
    width: 100%;
    display: block;
    padding: 5px 0px;
    font-weight: 600;
    opacity: 1;
}
.author span.date {
    float: right;
    color: black;
}

.author span.name {
    text-align: left;
}

.author {
    border-top: 2px solid #e2e2e2;
    margin: 5px 0px 1px 0px;
    padding: 10px 0px 2px 0px;
        font-size: 14px;
}

.author span.name i {
/*    color: #1c71b3;*/
    padding-right: 8px;
}

.author span.name a {
    color: black;
    font-weight: 600;
}

.author span.date i {
    color: #1c71b3;
    padding-right: 10px;
}

.author span.date a {
    color: black;
    font-weight: 600;
}

/*--------------------------------------------------------------
# job-more Section
--------------------------------------------------------------*/
.job-more {
    box-shadow: 0px 2px 20px rgb(214 214 214);
}
.jobs-more-content {
    text-align: left;
    padding: 10px 0px;
}

.jobs-more-content p.about-jobs-mores {
    margin-top: 0;
    margin-bottom: 0rem;
    font-size: 15px;
    font-weight: 600;
    color: #61be94;
}

.jobs-more-content h3 {
        margin-top: .6rem;
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1.55rem;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.jobs-more-content p.fst-normal {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #888888;
    text-transform: capitalize;
}

.jobs-more-content a.read-more {
    background: #1c71b3;
    color: var(--contrast-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

ul.job-more-list {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 0rem;
    list-style-type: none;
}

ul.job-more-list li {
    padding: 6px 0px 5px 0px;
    color: black;
        font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.5;
}

ul.job-more-list li i {
    color: #1c71b3;
    padding-right: 5px;
}

/*--------------------------------------------------------------------------------------------
# TESTIMONIAL SLIDER CSS STSRAT TESTIMONIAL SLIDER CSS STSRAT TESTIMONIAL SLIDER CSS STSRAT 
--------------------------------------------------------------------------------------------*/
section#testimonials {
    background: #f5f5f5;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
    padding: 15px 20px 15px 20px;
    margin: 15px 15px;
    height: 386px;
  text-align: center;
  min-height: 350px;
      box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.10);
    border: 1px solid #e5e5e5;
    background: #fff;
}
.testimonial-item:hover {
       box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
       border-top: 4px solid #1c71b3;
    border-bottom: 4px solid #1c71b3;
    border-left: 4px solid #000000;
    border-right: 4px solid #000000;
    border-radius: 20px 0px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 21px;
    font-weight: bold;
    margin: 19px 0 13px 0;
    color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
    color: #000;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e96b56;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

i.fa.fa-quote-right ,i.fa.fa-quote-left {
    color: #241c5a;
}

.testimonials .testimonial-item p {
     font-style: normal;
    margin: 0 auto 15px auto;
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.8;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1c71b3;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1c71b3;
}
.star-testi {
    margin-bottom: 0px;
    margin-top: 10px;
}

.star-testi i {
    color: #f0852f;
    margin: 0 1px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.starter-section {
    height: 35vh !important;
}

/*--------------------------------------------------------------
# COBNTACT US PAGE CSS START 
--------------------------------------------------------------*/
.contact-left {
    box-shadow: 0px 2px 20px rgb(0 0 0 / 14%);
    padding: 22px 6px;
    border: 3px solid #f7faf9;
    background: #f7faf9;
    text-align: center;
}
section#contact-us {
    background: #f5f5f5;
}
.contact-left i {
    font-size: 25px;
    color: #1c71b3;
    padding-bottom: 15px;
}

.contact-left h3 {
    margin-top: 0;
    margin-bottom: .8rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 1.35rem;
    color: var(--heading-color);
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.contact-left p {
    margin-top: 0;
    line-height: 1.8;
    margin-bottom: 0rem;
}
/*--------------------------------------------------------------
# PRIVACY POLICY  PAGE CSS START PRIVACY POLICY  PAGE CSS START 
--------------------------------------------------------------*/
.policy-left {
    text-align: left;
}

.policy-left h3 {
    margin-top: 0;
    margin-bottom: .8rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 1.35rem;
    color: var(--heading-color);
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.policy-left ul {list-style-type: disclosure-closed;margin-top: 0.5rem;margin-bottom: 1rem;padding-left: 1rem;}

.policy-left ul li {
    font-weight: 600;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: rgba(var(--accent-color-rgb), .03);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 0px;
  box-shadow: 0px 2px 20px rgb(214 214 214);
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 2px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
  color: var(--heading-color);
}

.footer .footer-about p {
     font-size: 14px;
    font-weight: 600;
  font-family:"Proxima Nova Regular", serif !important;
    text-transform: capitalize;
    line-height: 1.9;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
    display: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 23px;
    text-transform: uppercase;
}

.social-links {
    margin-top: 0px !important;
}
.footer .copyright a {
    padding-left: 28px;
}
.copyrights {}

.copyrights .copyrights-left {
    width: 35%;
    text-align: left;
}

.copyrights .copyrights-right {
    width: 65%;
    text-align: center;
}

.copyrights .copyrights-left .lang-copy {
    padding: 0px 10px;
}

.copyrights .copyrights-left .lang-copy i {
    padding-right: 10px;
}

.copyrights .copyrights-left .lang-copy select#languages {
    border: none;
}

.copyrights .copyrights-left .lang-copy select#Location {
    border: none;
}
.footer .footer-links {
  margin-bottom: 0px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  padding-left: 1rem;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
      font-weight: 600;
      text-transform: capitalize;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgb(0 0 0 / 80%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid rgba(var(--accent-color-rgb), 0.3);
  display: flex;
  background-color: var(--contrast-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

/*.full-filters:hover {*/
/*    border-top: 3px solid #1c71b3;*/
/*    border-bottom: 3px solid #1c71b3;*/
/*}*/

.footer .footer-newsletter .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}

@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer .copyright {
     padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*ALL PAGE CSS START */
section#page-tops {
    padding-top: 46px;
}
.page-name h2 {
    color: white;
    font-weight: 600;
}
.fpassword button.form-control {
    background: #24407f !important;
}

.fpassword a.form-control {
    background: #f0852f !important;
}
.tab-job {
    background: linear-gradient(177deg, #1c71b3, #000000) !important;
}
/*----------------------------------------------------------------------------------
#.HTML PAGE CSS START .HTML PAGE CSS START .HTML PAGE CSS START .HTML PAGE CSS START 
----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
#.HTML PAGE CSS START .HTML PAGE CSS START .HTML PAGE CSS START .HTML PAGE CSS START 
----------------------------------------------------------------------------------*/
/*--------------------------------------------------------------
# JOBS SEARCH.HTML PAGE CSS START 
--------------------------------------------------------------*/

.jobs-finder{
/*  background: white;*/
}

.page-name {
    text-align: left;
}
.page-name p {
    color: #b9b9b9;
    padding-right: 0px;
    line-height: 1.7;
    font-weight: 600;
}
.filter {
    margin-bottom: 11px;
        text-align: end;
}
.filt-boxes {
    padding: 5px 8px;
}
.filter h5 {
       float: left;
    text-align: left;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.15rem;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
}

.filter a {
    text-align: right;
    /* float: right; */
    width: 100%;
}

.full-filters {
    text-align: left;
    margin: 6px 10px;
    /*border: 3px solid #ededed;*/
    /*box-shadow: 0px 2px 20px rgb( 0 0 0 /15%);*/
}

.fullbox-filt {
    border: 2px solid #d4d4d4;
        margin: 0px 10px;
}
.header-job h3 {
   color: #fff;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 7px;
    margin-bottom: .1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 6px 6px 8px 7px;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #245383;
}

.full-filters h4 {
  color: #1c71b3;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    background: #f5f5f5;
    /* background: linear-gradient(271deg, #1c71b3, #343957) !important; */
    margin-top: 0px;
    margin-bottom: 0.2rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px 10px;
    font-size: 14px;
    text-transform: capitalize;
    border-bottom: 3px solid #ededed;
}
.full-filters h4 i {
    padding-right: 11px;
    color: #1e5184;
}

.header-job {
    text-align: left;
    display: none;
    margin: 5px 0px;
        background: linear-gradient(271deg, #1c71b3, #343957) !important;
}
.job-choice {
    text-align: left;
}
.job-choice .helpes {padding-top: 6px;}

.job-choice .helpes label {
   margin: 0px 0px 0px 0px;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    padding-left: 10px;
}
.job-choice .drivers label {
   margin: 0px 0px 0px 0px;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    padding-left: 10px;
}
.job-choice .temporary label {
   margin: 0px 0px 0px 0px;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    padding-left: 10px;
}
   

.header-dates {
    text-align: left;
}

.header-dates label {
    margin: 6px 0px 5px 0px;
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
    padding-left: 10px;
}
.loca-drop {
    padding: 8px 0px 8px 0px;
}
.all-status {
    padding: 7px 5px 6px 5px;
}
.jobs-boxes {
      box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
    padding: 10px 10px;
    border: 3px solid #ededed;
    border-radius: 0px 0px;
    margin: 10px 0px;
}

.jobs-boxes .job-detil .job-img {
    text-align: left;
    width: 20%;
}
.jobs-boxes .job-detil .job-img img {
    width: 90%;
    height: auto; 
      margin: 0px 0 10px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      overflow: hidden;
      border-radius: 0% !important;

    
}
.jobs-boxes .job-detil .job-text {
    width: 80%;
    text-align: left;
        padding-left: 10px;
}

.jobs-boxes .job-detil .job-text h3 {
    margin-top: 0;
    margin-bottom: .8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.0rem;
    text-transform: uppercase;
}
/**/
.agency-detail {
    padding: 5px 0px 0px 0px;
}
.agency-detail .details-box .detail-left {
    width: 0%;
    text-align: left;
}

.agency-detail .details-box .det-links {
    width: 100%;
    display: flex;
        margin-bottom: 8px;
}

.agency-detail .details-box .det-links h6 {
    padding: 5px 7px;
    color: #205182;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    margin-bottom: 0rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.2px;
    font-size: 14px;
    text-transform: uppercase;
}

.agency-detail .details-box .det-links h6 a.user-details {
    color: #1e5080;
}

.agency-detail .details-box .detail-left h5 {
/*    background: linear-gradient(271deg, #1c71b3, #343957) !important;*/
    padding: 5px 8px;
    display: inline-block;
    font-size: 17px;
    color: black;
    margin-top: 0;
    margin-bottom: .1rem;
    font-weight: 600;
    line-height: 1.2;
}

h5.img-text {
  padding: 4px 16px;
    display: block;
    background: #f5f5f5;
    font-size: 15px;
    position: absolute;
    color: black;
    margin-left: 27px;
    /* background: linear-gradient(271deg, #1c71b3, #343957) !important; */
    margin-top: -11px;
    margin-bottom: .1rem;
    font-weight: 600;
    line-height: 1.2;
    border: 3px solid #ededed;
}

.agency-detail .details-box .det-links h6 a.user-details i {
    color: #1c71b3;
}
.jobs-boxes .job-detil .job-text h5 {
    color: #4b4b4b;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.0rem;
    margin-top: 0;
    text-transform: capitalize;
    margin-bottom: .1rem;
    font-weight: 500;
    line-height: 1.2;
}

.jobs-boxes .job-detil .job-text h5 span {
    color: #1e5080;
}
.jobs-boxes .job-detil .job-text p {
       margin-top: 0rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #4b4b4b;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 1.8;
}
.jobs-texts {
    text-align: left;
}

.jobs-texts i {
        color: #000;
    font-size: 20px;
    padding-right: 10px;
}

.jobs-texts h3 {
       color: #000;
    font-size: 17px;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: .8rem;
    font-weight: 600;
    line-height: 1.2;
}

.jobs-texts h5 {
    color: #525252;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 16px;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
.clients-icon {
    text-align: center;
    background: #ffffff;
    margin: 11px 6px 6px 6px;
}

.clients-icon img {
    width: 110px;
    height: auto;
    padding: 10px 10px;
}
/*--------------------------------------------------------------
# JOBS SEARCH.HTML PAGE CSS START 
--------------------------------------------------------------*/
.tablink {
 background-color: #ededed;
    color: #888888;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 9px 10px;
    font-size: 15px;
    margin: 3px 15px 3px 15px;
    width: 20%;
    border: 2px solid #e4e4e4;
    font-weight: 600;
}

.tablink:hover {
  background-color: #1c71b3;
  color: white;
}
.tabcontent {
  color: white;
  display: none;
  padding: 60px 20px 30px 20px;
  height: 100%;
}
/*Agency service all tab heading css cstart */
.agency-services-top {
    text-align: left;
}

.agency-services-top h3 {
    color: white;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.45rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.agency-services-top p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #e2e2e2;
    padding-right: 25%;
}
/**/
.agency-all {
    background: white;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    border: 2px solid #e3e3e3;
    border-radius: 0px;
}
/*Agency serv product css*/
.agencies-fully {
    box-shadow: 0px 2px 20px rgb(0 0 0 / 20%);
    border: 2px solid lightgrey;
        padding: 5px 5px;
    margin: 5px 15px;
}
.agenc-box {
    text-align: center;
}

.agenc-box img {
    width: 100%;
}

.agency-dropdown {
    padding: 10px 0px;
}

.agency-product {
    padding: 10px 0px;
}
.agencies .agenc-img {
    margin-top: -10%;
    width: 30%;
}

.agenc-img img {
    width: 89px;
    height: auto;
}

.agencies .agenc-texts {
    width: 70%;
    text-align: left;
    padding: 10px 0px 0px 5px;
}

.agencies {text-align: center;
padding: 10px 0px 5px 0px}

.agencies .agenc-texts h3 {
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
}
.agencies .agenc-texts p {
    color: #626262;
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1.6;
}
.rating {text-align: center;padding: 10px 0px 5px 0px;}

.rating i {
    color: #241c5a;
    padding: 0px 2px;
}
span.locate {
        color: #19446f;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: 15px;
}
.agenc-btns{
  padding: 10px 0px 10px 0px;
}
.Category-links{
         padding: 0px 0px 0px 0px;
    border-top: 3px solid #35353524;
    margin: 6px 0px 0px 0px;
    /* border-bottom: 3px solid #35353512;*/
}
.Category-links a {
  display: inline-block;
    padding: 9px 6px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 4%);
    width: 23%;
    border: 2px solid #e4e4e4;
    border-radius: 24px;
    background-color: rgb(255 255 255);
    margin: 14px 3px 4px 3px;
    font-size: 13px;
    white-space: nowrap;
    color: black
}
.Category-links h3 {
   color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 8px 10px;
    background: #19446f12;
    font-size: 15px;
    margin-bottom: .1rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}
.country.name {
    padding: 15px 10px 5px 10px;
}

.country.name .country-name {
    text-align: left;
}

.country.name .country-name h4 img {
    width: 20px;
    height: 18px;
}

.country.name .country-name h4 {
  color: #19446f;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: .1rem;
    font-weight: 600;
    line-height: 1.2;
}

.country.name .country-name h4 i {
    color: #19446f;
}
.agenc-btns a.btn-get-started {
/*      background: linear-gradient(45deg, #ffffff, #ffffff);*/
      background: #1c71b3;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 20%);
    width: 28%;
    margin: 0px 0px;
    border: 2px solid #eaeaea;
    display: inline-block;
    padding: 8px 2px;
    border-radius: 1px;
    transition: 0.5s;
}
.foot-btn a {
    background: #1c71b3;
    /* background: linear-gradient(45deg, #2d2d2d, #353535) !important; */
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 12px;
    color: var(--contrast-color);
    box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.45);
    width: 20%;
    margin: 0px 0px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 2px;
    border-radius: 1px;
    transition: 0.5s;
}

.foot-btn {
    text-align: center;
    padding-top: 10px;
}
.pagination {
    margin: 10px 0px 5px 0px;
}
/**/
.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
}
.pagination a.active {
  background: linear-gradient(271deg, #1c71b3, #343957) !important;
  color: white;
}
.pagination a:hover:not(.active) {background-color: #ddd;}

/**/
.header-faq {
    padding-top: 27px;
}

.header-faq h3 {
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.35rem;
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}
.faq-agenc {
    text-align: left;
    padding: 10px 10px;
    border: 3px solid #35353514;
    background: white;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 6%);
    margin: 5px 0px;
}
.faq-agenc h4 {
       color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 11px;
    font-size: 1.0rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.faq-agenc p {
       color: #1e1e1e;
    margin-top: 0;
    font-weight: 500;
    margin-bottom: 0rem;
    line-height: 1.9;
}


/*--------------------------------------------------------------
# VIEWS AND MORE TIPS MORE Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
       padding: 0px 0px;
    box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.0);
    border: 3px solid #f2f2f2;
        margin: 5px 0px;
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid rgb(212 212 212);
    border-top: 2px solid rgb(212 212 212);
    padding: 13px 10px;
    margin-bottom: 15px;
    background: #000;
    color: white;
}

.service-details .services-list a {
     color: rgba(var(--default-color-rgb), 0.8);
    background-color: rgb(61 67 72 / 7%);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-top: 10px;
    transition: 0.3s;
    font-weight: 600;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: #241c5a;
    color: #fff;
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}
/*---------------------------------------------------------------------------------
# VIEWS AND MORE CSS START  VIEWS AND MORE CSS START  VIEWS AND MORE CSS START 
---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------
# VIEWS AND MORE CSS START  VIEWS AND MORE CSS START  VIEWS AND MORE CSS START 
---------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------
# VIEWS AND MORE CSS START  VIEWS AND MORE CSS START  VIEWS AND MORE CSS START 
---------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------
# TIPS AND MORE CSS START  TIPS AND MORE CSS START  TIPS AND MORE CSS START 
---------------------------------------------------------------------------------*/


.view-news-box {box-shadow: 0px 2px 20px rgb(0 0 0 /10%);border: 2px solid lightgrey;background: white;margin: 6px 0px;padding: 0px 0px;}

.view-news-box .right-images {
    text-align: center;
    padding: 10px 10px;
}

.view-news-box img {
    width: 100%;
    height: auto;
}
.box-contents {
    text-align: left;
    padding: 6px 10px 10px 10px;
}

.box-contents .tips-text {}

.box-contents .tips-text h3 {
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 8px;
    margin-bottom: .5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2em;
    line-height: 1.2;
}

.box-contents .tips-text p {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #2e2e2e;
    text-transform: capitalize;
}

.box-contents .tips-text a {
    color: #1c71b3;
    background: transparent;
    font-size: 16px;
    text-align: left;
    padding: 9px 5px;
    margin: 2px 1px 0px 1px;
    border-radius: 10px 0px;
    transition: 0.3s;
}




/*--------------------------------------------------------------
# TIPS AND MORE PAGE PRICING TIPS AND MORE PAGE PRICING TIPS AND MORE PAGE PRICING 
--------------------------------------------------------------*/
.pricing .pricing-item {
/*  background-color: rgba(var(--accent-color-rgb), 0.04);*/
   background: rgb(0 0 0 / 4%);
  padding: 0px 0px;
  height: 100%;
      border: 3px solid #e8e8e8;
  border-radius: 1px; 
}
.pricings {
    padding: 5px 15px;
    text-align: center;
}
.pricing h3 {
 font-weight: 600;
    margin-bottom: 15px;
    /* border-radius: 15px; */
    font-size: 20px;
    background: #1c71b3;
    padding: 24px 10px;
    color: white;
    border-bottom: 7px solid #ef7e30;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  background-color: var(--default-color);
  color: var(--contrast-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: rgba(var(--default-color-rgb), 0.7);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
     padding: 10px 0;
    display: flex;
        font-size: 14px;
    align-items: center;
    font-weight: 600;
    text-transform: capitalize;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
      color: #732b66;
    font-size: 18px;
    padding-right: 0px;
    margin-right: 10px;
}

.pricing ul .na {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na i {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}
.pricing .featured {
    position: relative;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 40%);
}
.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}


.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*NEW PRICING BOX CSS START */
section#public-holiday {
    display: none;
}
section#publics-box { 
}

/*.price-bg {*/
/*    background: #f0852f !important;*/
/*}*/
.price-head {
    background: #1c71b3;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 24%);
    padding: 12px 10px;
}

.price-head .price-left {
    width: 25%;
}

.price-head .price-left h4 {
    color: black;
    text-align: center;
    margin-top: 0;
    padding: 5px 5px;
    margin-bottom: 0rem;
    font-weight: 500;
    line-height: 1.1;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 20px;
    background: white;
    border-radius: 50%;
}

.price-head .price-left h4 span {
    font-size: 15px;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    text-transform: capitalize;
}

.price-head .price-left h4 b {
    font-size: 26px;
    display: block;
}

.price-head .price-right {
    width: 75%;
    text-align: left;
    padding: 18px 4px;
}

.price-head .price-right h3 {
    color: white;
    text-align: left;
    margin-top: 0;
    padding-left: 10px;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.1;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 24px;
}
.price-center {
    background: #ececec;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 24%);
    margin: 0px 7px;
    padding: 29px 10px;
}

.price-center p {
    font-weight: 500;
    margin-top: 0;
    color: black;
    margin-bottom: 0rem;
    font-size: 18px;
    line-height: 1.6;
}
.price-foot {
       background: #1c71b3;
    margin: 0px 0px 0px 0px;
    padding: 12px 14px;
     box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
}
.full-price {
    margin: 6px 0px;
}
.price-foot h3 {
    margin-top: 0;
    font-size: 1.15rem;
    margin-bottom: .0rem;
    font-weight: 500;
    line-height: 1.2;
    color: white;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}


/*VM PRICING  CALL TO ACTION CSS START VM PRICING  CALL TO ACTION CSS START VM PRICING  CALL TO ACTION CSS START */
#pricing-action {
    background: #f5f5f5;
/*    box-shadow: 0px 2px 20px rgb(214 214 214);*/
}

.call-action {
    text-align: center;
}

.call-action h3 {
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.35rem;
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.call-action p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.read-btn a {
    background: #19446f;
    text-align: center;
    padding: 10px 20px;
    width: 30%;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #e2e2e2;
    transition: 0.3s;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin: 5px 0px;
}

/*--------------------------------------------------------------------------------------------------------
 ABOUT US.HTML PAGE CSS START  ABOUT US.HTML PAGE CSS START  ABOUT US.HTML PAGE CSS START  
--------------------------------------------------------------------------------------------------------*/
.about_us .content.aboutss h5 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    color: red;
}
.about-left {
    text-align: center;
        padding: 11px 0px 1px 0px;
}

.about-left img {
    width: 100%;
    height: auto;
}
.about_us .content.aboutss h5 b {
       color: #1c71b3 !important;
    font-size: 15px;
}

.about_us .content.aboutss h3 {
    font-weight: 400;
    font-size: 34px;
    font-family: "Heebo",sans-serif;
    margin-top: 0;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about_us .content.aboutss p {
    margin-top: 0;
    margin-bottom: 0rem;
    color: #4c4c4c;
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    font-family: "Roboto",sans-serif;
}

.about_us .content.aboutss ul {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 0rem;
    padding: 0px 0px 10px 0px;
}

.about_us .content.aboutss ul li {
    padding: 8px 0px 4px 0px;
    font-weight: 600;
    color: black;
}

.left-icon img {
    width: 49px;
    margin-right: 10px;
}

.abouts-icons {
    padding: 10px 0px;
}

.left-img.persons img {
    width: 90%;
    height: auto;
}

.about_us .content.aboutss ul li i {
    color: #1c71b3;
    padding-right: 10px;
    font-size: 16px;
}


/*--------------------------------------------------------------------------------------------------------
#PUBLIC HOLIDAY  CSS START  
--------------------------------------------------------------------------------------------------------*/
.public-holyday{
    width: 100%;
    padding:5px 0 5px;
}
.public-holyday .heading{
    text-align: center;
    width: 100%;
    padding:20px 0 20px;
}
.public-holyday .heading h2{
    font-size: 32px;
    font-weight: 400;
}
.public-holyday .heading h2 span{
    color: #117EC3;
}
.public-holyday .heading h6{
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 14px;
    padding:8px 0 8px;
}
.public-holyday .separator{
    width: 50px;
    height: 2px;
    margin-bottom: 50px;
    background-color: #555555;
    display: inline-block;
}
.public-main {
    width: 100%;
/* border: 2px solid #efefef;*/
    border-bottom: 4px solid #d6d6d6;
    border-top: 4px solid #d6d6d6;
    margin: 5px 0px;
    background-color: #f7f8f8;
    padding: 4px 0px;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
}
.cover:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 250px rgba(0,0,0,0.45) inset;
    -webkit-transition: 0.7s ease 0s;
    -moz-transition: 0.7s ease 0s;
    -o-transition: 0.7s ease 0s;
    -ms-transition: 0.7s ease 0s;
    transition: 0.7s ease 0s;
}
.public-main:hover .cover:before{
    box-shadow: none;
}
.public-holyday .pholiday-box{
   position: relative;
    width: 32%;
    border: 0px solid lightgrey;
    padding: 0px 0px;
}
.public-holyday .pholiday-box img{
    width: 100%;
    height: auto;   
}
.public-holyday .holiday-head{
       text-align: left;
    padding: 15px 5px 10px 15px;
    border-top: none;
    width: 68%;
}
.public-holyday .holiday-head h3{
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 16px;
    font-weight: 600;
}
.public-holyday .holiday-head p{
    color: #999;
    letter-spacing: 0.4px;
    line-height: 1.7;
    margin: 10px 0 10px;
}
.public-holyday .holiday-head a{
    color: #000;
    font-size: 13px;
    padding:10px 0px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.public-holyday .holiday-head i{
    margin-left: 5px;
}
.public-main:hover{
    border-bottom: 3px solid #1c71b3;
    border-top: 3px solid #1c71b3;
    padding: 5px 0px;
}
.public-main:hover .holiday-head a{
        background-color: #e4e4e4;
    color: #000;
    text-decoration: none;
    padding: 8px 10px;
    border: 2px solid #dedede;
}
h6.pub-corner {
    position: absolute;
    right: 51%;
    margin-top: -17px;
    text-align: center;
    color: black;
    border-top: 1px solid lightgrey;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 10px 2px 13px 0px;
    background: #1c71b3;
}
.btn-get-started {
    color: var(--contrast-color);
    background: #1c71b3;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 15px;
    margin: 0px 5px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 10px 0px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);
}
/*-----------------------------------------------------------------------------------
# DASHBOARD PAGE CSS START DASHBOARD PAGE CSS START DASHBOARD PAGE CSS START 
-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------
# DASHBOARD PAGE CSS START DASHBOARD PAGE CSS START DASHBOARD PAGE CSS START 
-----------------------------------------------------------------------------------*/
.dashboard-full {
    box-shadow: 0px 2px 20px rgb( 0 0 0 /10%);
    background: white;
    border: 2px solid lightgrey;
    padding: 0px 0px;
    margin: 5px 0px;
}

.dashboard-full .dash-head {
    background: #1c6eb0;
}

.dashboard-full .dash-head h3 {
    color: #fff;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0px;
    margin-bottom: .1rem;
    padding: 13px 5px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: 1.0rem;
}
.dashboard-full .dash-text {
    padding: 14px 10px;
    border-bottom: 2px solid #e4e4e4;
}

.dashboard-full .dash-text .dash-right {
    width: 80%;
    text-align: left;
    padding-left: 10px;
}

.dashboard-full .dash-text .dash-left h5 {
    background: #e4e4e4;
    display: inline-block;
    padding: 9px 13px;
    border-radius: 50%;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    font-size: 1.15rem;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: 0px 2px 20px rgb( 0 0 0 /10%);
}

.dashboard-full .dash-text .dash-left {
    width: 20%;
    text-align: left;
}
 
.dashboard-full .dash-text .dash-right h3 {
    padding: 9px 0px;
    border-radius: 50%;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    font-size: 1.0rem;
    margin-bottom: .2rem;
    font-weight: 600;
    line-height: 1.2;
}

.dashboard-full .dash-text .dash-right p {
    margin-top: 0;
    margin-bottom: 0.2rem;
}
a.dashboard-btns {
    color: #fff;
    background: #1c6eb0;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #d8d8d8;
    margin: 0px 5px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 26px;
    border-radius: 10px 0px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(var(--accent-color-rgb), 0.2);
}
/* DASHBOARD DROPDOWN PROFILE START  DASHBOARD DROPDOWN PROFILE START */
.dropbtn {
      background-color: #3498DB;
    color: white;
    margin: 4px 10px;
    padding: 10px 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
      color: black;
    padding: 11px 16px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid lightgrey;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

.dash-news h3 , .dash-tips h3 {
    padding: 10px 0px;
    border-radius: 50%;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    font-size: 1.15rem;
    margin-bottom: .2rem;
    font-weight: 600;
    line-height: 1.2;
}
.dash-news p, .dash-tips p {
    margin-top: 0;
    margin-bottom: 0rem;
}
li.dropdown.notification-menu {
    display: inline-block;
    position: relative;
        margin: 0px 16px 0px 0px;
}

a.dropdown-toggle {
    opacity: 1;
    color: #000;
    padding: 10px 5px 9px 5px;
    font-size: 12px;
    line-height: 50px;
}
@media (min-width: 1200px) {
    .navmenu a i, .navmenu a:focus i {
        font-size: 19px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
}
span.badge.badge-danger.header-badge {
    position: absolute;
    top: -19px;
    left: 11px;
    color: #fff;
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    background: #1c6eb0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
.notification-menu .not-head {
    padding: 8px 20px;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.notification-menu .media {
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 8px 12px;
}
.dropdown-menu li a {
    position: relative;
    padding: 8px 0px;
}
.media-left {
    padding-right: 10px;
        float: left;
}
.bell-notification img {
    width: 40px;
}
 .notification-menu .not-footer {
    text-align: center;
    background-color: #fff;
    padding: 5px;
}
/*----------------------------------------------------------------------------------
# DASHBOARD PROFILE CSS START DASHBOARD PROFILE CSS START DASHBOARD PROFILE CSS START 
-----------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
# DASHBOARD PROFILE CSS START DASHBOARD PROFILE CSS START DASHBOARD PROFILE CSS START 
-----------------------------------------------------------------------------------*/
.profiles-img {
    text-align: center;
}

.profiles-img img {
    width: 100%;
}
select#lang {
    background: white;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
}
.profile-full {
  box-shadow: 0px 2px 20px rgb(0 0 0 / 20%);
  background: white;
  border: 2px solid lightgrey;
  padding: 10px 10px;
}
/* Profile_Update_resume.html page css start  Profile_Update_resume.html page*/
.gend-male {
    padding: 0px 10px;
}

.gend-male input#genders {
    margin-right: 5px;
}
.full-updates {
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
    padding: 10px 0px;
}
/**/
.heads-profiles {
    background: #054a84;
    padding: 10px 6px;
    margin-bottom: .5rem;


    
}

.heads-profiles h4 {
    margin-top: 0;
    margin-bottom: .0rem;
    font-weight: 600;
    color: white;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    line-height: 1.2;
    font-size: 1.0rem;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# PROFILE UPDATE RESUME  CSS START 
--------------------------------------------------------------*/

.apply-boxes .position-helper {
       width: 25%;
    background: #ececec;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    padding: 10px 5px;
    text-align: center;
    border: 2px solid lightgrey;
    margin: 10px 9px;
}
.apply-boxes .position-driver {
     width: 25%;
    background: #ececec;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    padding: 10px 5px;
    text-align: center;
    border: 2px solid lightgrey;
    margin: 10px 9px;
}
.apply-boxes .position-helper img {
    width: 80px;
    height: auto;
}
.apply-boxes .position-driver img {
    width: 80px;
    height: auto;
}
.apply-boxes .position-helper h3 {
    margin-top: 10px;
    margin-bottom: .5rem;
   font-weight: 600;
    font-size: 1.10rem;
    line-height: 1.2;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.apply-boxes .position-driver h3 {
    margin-top: 10px;
    margin-bottom: .5rem;
   font-weight: 600;
    font-size: 1.10rem;
    line-height: 1.2;
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}
.apply-job-type .job-types {
    background: #fff;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    padding: 7px 5px;
    text-align: center;
    border: 2px solid #ebebeb;
    margin: 6px 5px;
}
.apply-job-type .job-types h3 {
    margin-top: 0;
    font-size: 1.15rem;
    margin-bottom: 0rem;
    font-weight: 500;
    color: #3e3e3e;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    line-height: 1.2;
}
.apply-job-type .job-types:hover {
    background: #1c71b3;
    color: white;
}

.head-prof {
    background: #fff;
    padding: 3px 6px;
    margin: 5px 4px;
    border: 2px solid #ebebeb;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 10%);
}
.head-prof h4 {
    margin-top: 0;
    margin-bottom: .0rem;
    font-weight: 600;
    color: #2c2c2c;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    line-height: 1.2;
    font-size: 1.0rem;
    text-transform: capitalize;
}
.haeds-langes {
    border: 2px solid lightgrey;
        margin: 8px 0px 8px 0px;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
}
.profile-language {
    padding: 2px 0px 6px 0px;
}
.skill-duties .job-language {
       background: #fff;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 15%);
    padding: 7px 5px;
    text-align: center;
    border: 2px solid #ebebeb;
    width: 19%;
    margin: 3px 5px;
}
.skill-duties .job-language h3 {
    color: var(--heading-color);
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    font-size: 1.0rem;
    margin-top: 0;
    margin-bottom: .1rem;
    font-weight: 500;
    line-height: 1.2;
}
.job-language img {
    width: 20px;
    height: auto;
}



    .boxes-filters {
        display: block;
    }
.filters-btns {
    display: none !important;
}

@media (max-width: 1199px) {
    section#featured-services {
        display: none;
    }
    .mt-3 {
    margin-top: 0rem !important;
}
}


/*--------------------------------------------------------------
#Job SEARCh PAGE  CSS START 
--------------------------------------------------------------*/
p.direct-det {
    position: absolute;
    background: #1c71b3;
    padding: 2px 38px;
    color: white;
    font-size: 16px;
    margin: 10px 60px;
    font-weight: 600;
}
p.direct-actives {
    position: absolute;
    background: #1c71b3;
    padding: 2px 41px;
    color: white !important;
    top: 76%;
    left: 56%;
    border: 2px solid #3e3c7754;
    font-size: 16px;
    margin: 10px 0px 10px 9px;
    font-weight: 600;
}

.Job-reqirement {
    padding: 0px 0px 0px 0px;
    border-top: 3px solid #35353524;
    margin: 6px 0px 0px 0px;
}

.Job-reqirement h3 {
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 8px 10px;
    background: #19446f12;
    font-size: 15px;
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}
.jobs-text {
    padding: 8px 0px 6px 0px;
}

.jobs-text h4 {
       margin-top: 0;
    margin-bottom: .1rem;
    font-weight: 600;
    color: var(--heading-color);
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    line-height: 1.0;
    text-transform: capitalize;
    font-size: 14px;
}
.jobs-text h4 i {
    color: #1c71b3;
    padding-right: 10px;
}
.job-lists {
    padding: 10px 5px;
}
.skil-duty h5 {
    color: #002846;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 8px 10px;
    font-size: 15px;
    margin-bottom: .1rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}
.skil-duty {
    padding: 0px 0px 0px 0px;
    border-top: 3px solid #35353524;
    margin: 6px 0px 0px 0px;
}

.skil-duty h3 {
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 8px 10px;
    background: #19446f12;
    font-size: 15px;
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}
.skill-duties a {
    display: inline-block;
    padding: 5px 2px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 4%);
    width: 15%;
    border: 2px solid #e4e4e4;
    border-radius: 2px;
    background-color: #1c71b3;
    margin: 14px 3px 4px 3px;
    font-size: 13px;
    white-space: nowrap;
    color: white;
}
h6.actives-right {
    position: absolute;
    text-align: right;
    left: 58%;
    top: 102%;
    display: inline;
    background: #1c71b3;
    padding: 2px 41px;
    color: white !important;
    border: 2px solid #3e3c7754;
    font-size: 16px;
    margin: 10px 0px 10px 9px;
}
/*CANDIDATE FIND DETAIL PAGE CSS START CANDIDATE FIND DETAIL PAGE CSS START */

.work-experience .experience {
    border-bottom: 2px solid lightgrey;
}

.work-experience .experience .experience-left {
    width: 15%;
    text-align: left;
    padding: 25px 5px;
}

.work-experience .experience .experience-left img {
    width: 85px;
}

.work-experience .experience .experience-right {
    width: 85%;
    text-align: left;
}

.work-experience .experience .experience-right p.head {
    margin-top: 0;
    margin-bottom: 0.2rem;
    font-size: 16px;
    font-weight: 600;
    color: #1c71b3;
}

.work-experience .experience .experience-right  h4 {
    margin-top: 8px;
    margin-bottom: .5rem;
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.work-experience .experience .experience-right h5 {
    margin-top: 0;
    margin-bottom: .3rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #3c3c3c;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.work-experience .experience .experience-right h4 i {
    color: #1c71b3;
}

.work-experience .experience .experience-right  h6 {
    margin-top: 0;
    margin-bottom: .3rem;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.2;
    color: #4c4c4c;
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
}

.work-experience .experience .experience-right p {
    margin-top: 0;
    margin-bottom: 0rem;
}
.work-experience .experience .experience-left i {
    font-size: 35px;
    text-align: center;
    padding-left: 15px;
    color: #052741;
}
/*--------------------------------------------------------------
# AGEMCY SERVICE LINK PAGE CSS START 
--------------------------------------------------------------*/
.Occupations-links {
    padding: 0px 0px 0px 0px;
    border-top: 3px solid #35353524;
    margin: 6px 0px 0px 0px;
}

.Occupations-links h3 {
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 8px 10px;
    background: #19446f12;
    font-size: 15px;
    margin-bottom: .1rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.Occupations-links a {
    display: inline-block;
    padding: 9px 6px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0px 2px 20px rgb(0 0 0 / 4%);
    /* width: 20%; */
    border: 2px solid #e4e4e4;
    border-radius: 24px;
    background-color: rgb(255 255 255);
    margin: 14px 3px 4px 3px;
    font-size: 13px;
    white-space: nowrap;
    color: black;
}
.user-review {
    text-align: left;
    padding-left: 12px;
}

.user-review h5 {
    color: #000000;
   /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important; */
    margin-top: 0;
    padding: 5px 0px;
    font-size: 19px;
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.user-review address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.8;
    font-weight: 500;
    font-size: 16px;
}
.Ethical h3 {
    color: #000000;
    font-family: "Proxima Nova Regular", serif !important;
    margin-top: 0;
    padding: 5px 0px;
    margin-top: 11px;
    font-size: 19px;
    margin-bottom: .5rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
}
section#dashboards-mobile {
    display: none;
}











/*--------------------------------------------------------------
# @MEDAI QUERY CSS START @MEDAI QUERY CSS START @MEDAI QUERY CSS START 
--------------------------------------------------------------*/

@media screen and (min-width: 320px) and (max-width: 768px){
.fullbox-filt {
    display: none;
}
.popup .content {
    padding: 15px 8px 15px 8px;
}
.header {
    padding: 20px 10px;
       z-index: 9;
  }
  li.dropdown.notification-menu {
    margin: 0px 0px 0px 10px !important;
}
  .navmenu ul {
    padding: 40% 0px 10px 0px !important;
  }
  nav#navmenu ul.user-heads {
    padding: 34% 0px 0px 0px !important;
}
.banner-text {
    margin-top: -43%;
}
.hero {
    min-height: 60vh;
        padding: 245px 0 40px 0;
  }
.customer-satisfied {
    margin: 0px 0px;
  }
.about .content .read-more {
    padding: 12px 15px;
    display: inline;
  }
.abouts-imgs {
    padding-top: 0% !important;
            display: none;
}
    .carousel-item {
    float: none !important;
}
.carousel-item {
     width: 100% !important;
  height: 100vh !important;
  position: relative !important;
  display: block !important;
  margin-top: 10px !important;
}
#Easy-helpers {
    height: 83vh;
}
.carousel-item.active {
           top: 180px !important;
        height: 67vh !important;
        display: block !important;
        position: absolute !important;
        z-index: 999 !important;
        opacity: 1 !important;
}
.card{
   width: 100% !important;
}
.connections-fully .connections-icon img {
    width: 100px;
            display: none;
  }
.connections-fully .connections-icon h4.title {
    font-weight: 600;
    font-size: 1.9rem;
}
.content-connections p {
            font-weight: 500;
        font-size: 16px;
  }
.connections-fully {
    margin: 5px 0px !important;
}
.connect img {
    display: none;
}
.conect-img {
    text-align: center;
}
.jobs-img img {
    display: none;
}
.job-fimgs {
    text-align: center !important;
}
.starter-section {
    height: auto !important;
            background: white !important;
}
h5.img-text {
    padding: 4px 10px;
    font-size: 14px;
    margin-left: 2px;
    margin-top: -5px;
}
.agency-detail .details-box .det-links {
    display: block !important;
}
.tablink {
    margin: 1px 1px 1px 1px !important;
    width: 45% !important; 
      font-size: 14px !important;

}
.tabcontent {
    padding: 120px 0px 5px 0px !important;
  }

.agencies-fully {
    margin: 5px 0px !important;
}
.agenc-img img {
    width: 65px !important;
    height: auto !important;
}
.rating i {
    color: #241c5a !important;
    padding: 0px 0px 10px 0px !important;
    font-size: 14px !important;
}
span.locate {
    font-weight: 400 !important;
    text-transform: capitalize;
    font-size: 13px;
}
.full-btnss {
    width: auto !important;
    padding: 10px 12px !important;
}
.Category-links a {
    width: 48% !important;
    margin: 10px 1px 3px 1px !important;
  }
.country.name .country-name {
    text-align: left;
    padding: 5px 0px;
}
.partners-bg {
    height: 46vh !important;
}
.tipps-moress {
    padding: 60px 0px 5px 0px !important;
}
.view-news-box {
    margin-top: 0px !important;
}
.featured-services .service-item {
    z-index: 1 !important;
}
.modal-content {
    width: 100% !important;
}
.full-filters {
    text-align: left;
    margin: 6px 0px
  }
.public-main {
    width: 100%;
    display: block !important;
  }
.public-holyday .pholiday-box {
    width: 100%;
  }
.public-holyday .holiday-head {
    width: 100%;
  }
h6.pub-corner {
    position: absolute;
    right: 6%;
  }
.btn-get-started {
    margin: 3px 5px !important;
    padding: 12px 15px !important;
}
.apply-boxes .position-driver {
    width: 45%;
  }
.apply-boxes .position-helper {
    width: 45%;
  }
.profile-language {
    overflow: auto;
}
span.badge.badge-danger.header-badge {
    position: absolute;
    top: 0px;
  }
.page-title h1 {
    font-size: 18px;
}
.section-title h2 {
    font-size: 20px;
}

.clients .client-logo {
    display: flex; */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0px 0px;
    text-align: center;
    margin: 0px 0px;
    box-shadow: 0px 2px 20px rgb(97 97 97 / 0%);
    border: 0px solid #d6d6d6;
    background: #ffffff00;
    border-bottom: 0px solid #e3e3e3;
    border-top: 0px solid #e3e3e3;
    margin: 0px 0px 0px 0px;
  }
.clients .client-logo img {
    max-width: 70%;
  }
.customer-satisfied {
    padding: 5px 5px 5px 5px;
    margin: 4px 0px;
    background: #ffffff00;
    box-shadow: 0px 2px 20px rgb(97 97 97 / 0%);
    border-bottom: 0px solid #e3e3e3;
    border-top: 0px solid #e3e3e3;
}
.Features .feature-item {
    padding: 15px 10px;
  }
.Features .feature-item h3 {
    font-weight: 600;
    margin: 5px 0 10px 0;
    font-size: 20px;
}
.Features .feature-item p {
    line-height: 25px;
    font-size: 14px;
    color: #686868;
}
.connections .content-connections h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.Direct-hire-item .hires-boxes {
    padding: 0px 0px 0px 0px;
    width: 100%;
}
.Direct-hire-item {
    padding: 19px 30px;
}
.Direct-hire-item .hires-boxes h3 {
    font-size: 1.1rem;
}
.Direct-hire-item .hires-boxes p {
    margin-top: 10px;
    margin-bottom: 0.5rem;
    font-size: 16px;
    line-height: 2.2;
    font-weight: 600;
  }
.Direct-hire-item img {
    width: 150px;
    height: auto;
    padding: 10px 5px;
  }
.jobs-more-content a.read-more {
    padding: 10px 10px;
}
div#jobs {
    padding: 165px 0px 5px 0px !important;
}
.tablink {
    padding: 10px 0px !important;
}
.abouts-imgs {
    padding-top: 0% !important;
}
.page-name p {
    color: #444444;
    padding-right: 0px;
            font-weight: 500 !important;
  }
.page-name h2 {
    color: black;
    font-weight: 600;
}
.jobs-boxes {
    padding: 8px 0px 0px 5px;
    margin: 5px 0px;
  }
.jobs-boxes .job-detil .job-text h3 {
    font-size: 0.9rem;
}
.jobs-boxes .job-detil .job-text h5 {
    font-size: 0.9rem;
}
.agency-detail .details-box .det-links h6 {
    padding: 3px 0px;
        font-size: 13px;
  }
 .jobs-boxes .job-detil .job-text p {
    display: none;
  }
.left-filters {
    width: 49%;
    text-align: left;
    margin-bottom: 10px;
}

.right-filters {
    width: 48%;
    text-align: right;
}
.boxes-filters {
    display: block;
}
.filters-btns {
    display: flex !important;
            margin: 5px 0px 8px 0px;
}
.popup {
    margin: 4px auto !important;
    padding: 10px !important;
    background: #fff;
    border-radius: 5px;
    width: 100% !important;
  }
.clients-icon img {
    padding: 4px 0px;
  }
.agency-services-top {
    padding: 29px 10px !important;
    height: 55vh !important;
            background: white !important;
                border: 2px solid lightgrey;
}
.agency-services-top h3 {
    color: black;
  }
.agency-services-top p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #7a7a7a;
    padding-right: 0%;
}
.agenc-btns a.btn-get-started {
width: 46% !important;
  }
  .foot-btn a {
    width: 45% !important;
  }
p.direct-det {
    padding: 2px 15px;
    margin: 10px 6px;
}
h6.actives-right {
    position: absolute;
    top: 63%;
            display: none;
  }

p.direct-actives {
    padding: 2px 25px;
    top: 15%;
  }
.skill-duties a {
width: 45%;
}
i.head-lists {
    display: block !important;
}
li.dash-right {
    margin-left: 0% !important;
}

li.login-css {
    position: absolute !important;
    top: 6px !important;
    left: 8px !important;
    width: 35% !important;
}

li.login-css a {
    /* width: 100% !important; */
    color: white !important;
}
li.Regist-css {
    width: 49% !important;
    top: 6px !important;
    position: absolute !important;
    right: 7px !important;
    display: block !important;
}
li.Regist-css .registers {
    /* width: 100%; */
}
.job-reqt {
  float: left !important;
}
button#chattouser {
  position: absolute !important;
  left: 46% !important;
  top: 55% !important;
  font-size: 15px !important;
  padding: 3px 14px !important;
  border-radius: 0px !important;
  margin: -3px 0px 0px 0px;
  background: #1c71b3 !important;
  border-color: #1c70b2 !important;
}
.agencies {
  display: block !important;
}
.agenc-box {
    height: 15vh !important;
}
.work-experience .experience .experience-left img {
    width: 40px;
}
.work-experience .experience .experience-left i {
    font-size: 24px;
    text-align: center;
    padding-left: 5px;
    color: #052741;
}
.dropdown.profiles img.dropbtn {
  margin: 4px 10px 5px 25px;
}
.social-links {
    margin-top: 0rem !important;
}
.banner-slides {
    padding: 10px 40px;
}

.banners-btns {
    display: block !important;
}
.Direct-hire-item .hire-box {
    text-align: center;
}
section#Dashboard-us {
    display: none;
}
section#dashboards-mobile {
    display: block;
}
.dash-mobile {
           text-align: left;
        margin: 5px 5px;
        padding: 5px 0px;
        width: 33%;
}
.dash-mobile img {
    width: 75px;
    margin-bottom: 13px;
}
.dash-mobile h3 {
    color: var(--heading-color);
      /* font-family: "proxima_nova_rgregular,Helvetica Neue,Helvetica,Arial,sans-serif" !important;  */
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
     font-size: 13px;
    line-height: 1.2;
}
.page-title {
    display: none !important;
}
.Profile-resume {
    padding: 0px 6px;
}
.skill-duties {
    display: block !important;
}

.skill-duties .job-language {
   display: block;
        width: 60%;
        text-align: left;
}
.overlay {
    overflow: auto !important;
}
.agency-dropdown {
    display: none;
}

.inbox_people {
    float: none;
    width: 100%;
}
.mesgs {
    float: none;
    width: 100%;
}
li.login-css {
    margin-right: 0px;
    margin-left: 0px;
}
li.dash-right {
    margin-left: 0%;
}
.tablink1 {
  width: 90% !important;
}
.copyrights {
  display: block !important;
}
.copyrights .copyrights-left {
  width: 100%;
}
.copyrights .copyrights-right {
  width: 100%;
}

.jobs-boxes .job-detil .job-img {
  width: 25%;
}
.jobs-boxes .job-detil .job-text {
  width: 75%;
}
.jobs-boxes .job-detil .job-img img {
  width: 100%;
  height: 100px !important;
}
.tab {
   padding: 10px 6px !important;
  margin: 5px 2px 5px 2px !important;
  border-radius: 3px 3px 0px 0px !important;
  width: 48% !important;
}
.left-filters  a.button {
  color: rgb(255, 255, 255);
  background: #1c71b3;
}
 .right-filters  a.button {
  color: rgb(255, 255, 255);
  background: #1c71b3;
  display: none;
}
.inbox_chat {
  height: 270px !important;
  overflow-y: scroll;
}
.mesgs {
  width: 100% !important;
}
.inbox_people {
  width: 100% !important;
}
.notification-menu .not-head {
  padding: 10px 0px;
}
.position-apply {
  display: block !important;
}
.selected-image {
  width: 80% !important;
  text-align: center;
}
.selected-img {
  width: 90% !important;
  margin: 10px 8px;
}
.dropdown.profiles {
  position: absolute;
  top: 0px;
}

.dropdown.profiles div#myDropdown {
  display: block;
}
.dropdown-content a {
  font-size: 11px;
  padding: 8px 15px;
}

}
/*@ MEDIA QUERY CSS END @ MEDIA QUERY CSS END @ MEDIA QUERY CSS END @ MEDIA QUERY CSS END*/




/* Susbcription box plans  */

.plan-box {
  border: 2px solid #ccc;
  padding: 20px 20px;
  margin: 10px 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  max-width: 500px;
  width: 100%;
  position: relative;
  
}

.plan-box:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-box.selected {
  border-color: rgb(46, 196, 255);
  transform: scale(1.05);
  background: linear-gradient(to right, #e0eafc, #cfdef3);
}

.plan-name {
  color: #007bff;
  font-size: 18px;
  margin-bottom: 10px;
}

.plan-text {
  color: #000;
  font-size: 16px;
}

.btn-plan-details {
  background-color: #17a2b8;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-top: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.plan-terms {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

#plans-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 10px;
}

.plan-box {
  flex: 0 0 auto;
}

.plan-box h5, .plan-box p {
  margin: 0;
}

.plan-box p {
  margin-top: 5px;
  color: #000;
  font-size: 14px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


.neon-border img {
  border: 2px solid #08d5f0;
  border-radius: 50%;
  box-shadow: 0 0 11px #27edf9, 0 0 65px #fcf2f2, 0 0 50px #92e3f3;
}


/* ------------  Susbcription plans end ----------  */
.select.profile-selects {
  margin: 1px 2px;
}

.button_select{
  margin: 2px 0px 2px 0px !important; 
}
.fullss-boxss, .btn-group {
  margin-bottom: 11px  !important;
}
.select.profile-selects {
  margin: 0px 5px  !important;
}
form {
  & #debt-amount-slider {
      &::before {
          content: " ";
          position: absolute;
          height: 2px;
          width: 88% !important;
          top: 50% !important;
          left: 43% !important;
          transform: translate(-50%, -50%);
          background: #000;
      }
  }
}

/* EXTRA CSS REGISTER LOGIN PAGE CSS START  */

.educationExperienceDiv h3 {
  /* font-size: 21px; */
  font-weight: 500;
  text-transform: uppercase;
  color: #004173;
}

.educationExperienceDiv  p {
  color: #494949;
  font-weight: 500;
  font-size: 15px;
}



.terms-text {
  padding: 11px 0px 3px 0px;
}
.terms-text p {
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 0.0rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  div#jobs, div#Employer {
      padding: 20px 12px 5px 10px !important;
  }
}
button.role1 {
background: #f0852f !important;
}

.kilbold{
  font-weight : 800 !important;
}



/* 
-------------------   mobile screen filer kil ----------------  */

/* .header[_ngcontent-serverApp-c776771805] {
  background-color: #d1ecf1!important;
  font-size: 15px!important;
  font-weight: 600!important;
}

.header[_ngcontent-serverApp-c776771805] {
  padding-left: 40px!important;
  width: 100%;
  background: transparent!important;
  color: #1b5f69!important;
  padding: 8px;
  border-radius: 6px;
} */