/*
@File: Jaba Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - Default-style
** - Default-btn-style
** - Section-title-style
** - Top Header-style
** - Navbar-style
** - Banner-style
** - Categories-style
** - Job-style
** - Employer-style
** - Reviews-style
** - Pricing-style
** - Company-style
** - Counter-style
** - CV-style
** - Paginations-style
** - Partner-style
** - Job Location-style
** - Post A Job-style
** - Job Listing-style
** - Freelancer-style
** - Candidates-style
** - Sidebar-style
** - Team-style
** - Download-style
** - Faq-style
** - Works-style
** - Blog-style
** - Contact-style
** - Error-style
** - User-style
** - Privacy Policy-style
** - Terms & Condition-style
** - Coming Soon-style
*******************************************
*/
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&amp;display=swap");
/*Default-style
======================================================*/
body {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

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

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

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

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

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

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

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

.mlr-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mlrt-5 {
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 5px;
}

h1, h2, h3, h4, h5, h6 {
  color: #202124;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

body {
  font-weight: 500;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
  color: #666666;
  font-weight: 500;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.owl-nav {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 0 !important;
}

.form-control {
  height: 50px;
  border: 1px solid #e2e2e2;
  padding-left: 15px;
  font-weight: 500;
  color: #666666;
}
.form-control::-moz-placeholder {
  color: #666666;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-weight: 500;
}
.form-control::placeholder {
  color: #666666;
  transition: all ease 0.5s;
  font-weight: 500;
}
.form-control:focus {
  border: 1px solid #1f86ef;
  box-shadow: none;
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

textarea {
  height: auto !important;
}

.bg-f0f4fc {
  background-color: #f0f4fc;
}

.bg-f0f5f7 {
  background-color: #f0f5f7;
}

.bg-main-color {
  background-color: #1f86ef;
}

/*Default-btn
======================================================*/
.default-btn {
  background-color: #1f86ef;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  transition: all ease 0.5s;
  display: inline-block;
  border: unset;
  z-index: 1;
  overflow: hidden;
}
.default-btn i {
  position: relative;
  top: 1px;
  padding-left: 6px;
}
.default-btn::before {
  position: absolute;
  content: "";
  background-color: #202124;
  height: 100%;
  width: 0%;
  border-radius: 0 5px 5px 0;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.default-btn::after {
  position: absolute;
  content: "";
  background-color: #1f86ef;
  height: 100%;
  width: 0%;
  border-radius: 5px 0 0 5px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  top: 0;
  left: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.default-btn:hover {
  color: #ffffff;
  border-color: #1f86ef;
}
.default-btn:hover::before {
  width: 60%;
  height: 100%;
}
.default-btn:hover::after {
  width: 60%;
  height: 100%;
}
.default-btn.style-2 {
  background-color: transparent;
  color: #1f86ef;
}
.default-btn.style-2 i {
  padding-right: 5px;
  top: -1px;
}
.default-btn.style-2:hover {
  color: #ffffff;
}
.default-btn:focus {
  box-shadow: none;
}
.default-btn.for-card {
  padding: 10px 20px;
}

/*Section Title Style
======================================================*/
.section-title {
  max-width: 680px;
  margin: auto auto 40px auto;
  text-align: center;
}
.section-title span {
  color: #1f86ef;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 10px;
  margin-top: -10px;
}
.section-title h2 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: #1f86ef;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}
.section-title.white-title span {
  color: #1f86ef;
}
.section-title.white-title h2 {
  color: #ffffff;
}
.section-title.style2 {
  text-align: start;
  margin-left: 0;
  margin-right: auto;
}

/*Pre Loader Style
======================================================*/
.no-scroll-y {
  overflow-y: hidden;
}

.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #1f86ef;
  height: 8em;
  margin: 0 auto 3.5em auto;
  width: 8em;
}
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: #1f86ef;
  position: relative;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #202124;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 1.6s;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before {
  animation-delay: 1.8s;
}

.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.ctn-preloader .loader-section.section-left {
  left: 0;
}
.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 3.5s 0.1s all cubic-bezier(0.1, 0.1, 0.1, 2);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 3.5s 0.1s all cubic-bezier(0.1, 0.1, 0.1, 2);
}

/* Preloader Animation */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  /* Spinner Loading */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Montserrat", sans-serif;
  }
}
/*
Top Header Style
======================================================*/
.top-header-area {
  background-color: #1a1a1a;
  padding-bottom: 8px;
  padding-top: 8px;
}
.top-header-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
.top-header-area .top-header-left-content span {
  color: #ffffff;
}
.top-header-area .top-header-right-content {
  text-align: end;
}
.top-header-area .top-header-right-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.top-header-area .top-header-right-content ul li {
  display: inline-block;
  margin-right: 20px;
}
.top-header-area .top-header-right-content ul li:last-child {
  margin-right: 0;
}
.top-header-area .top-header-right-content ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.top-header-area .top-header-right-content ul li a:hover {
  color: #1f86ef;
}
.top-header-area .top-header-right-content ul li .select-content {
  position: relative;
}
.top-header-area .top-header-right-content ul li .select-content .form-select {
  background-color: #1a1a1a;
  color: #ffffff;
  border: unset;
  box-shadow: unset;
  background-image: unset;
  cursor: pointer;
}
.top-header-area .top-header-right-content ul li .select-content i {
  color: #ffffff;
  position: absolute;
  font-size: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
  position: relative;
  background-color: #ffffff;
  z-index: 999;
  padding-top: 18px;
  padding-bottom: 18px;
}
.navbar-area.bg-f0f4fc {
  background-color: #ffffff;
}
.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  position: sticky !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
.navbar-area.style-2 .container-fluid {
  max-width: 1920px;
  padding-left: 60px;
  padding-right: 60px;
}
.navbar-area.style-2 .desktop-nav .navbar-nav {
  padding-left: 140px;
}
.navbar-area .navbar-brand .white-logo {
  display: none;
}
.navbar-area .mobile-responsive-menu .logo .white-logo {
  display: none;
}

.navbar-brand {
  margin-right: 40px;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-brand {
  margin-right: 60px;
}
.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  color: #1b2336;
  line-height: 1;
  position: relative;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 16px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\f107";
  position: absolute;
  top: 3px;
  right: 0;
  font-family: "Font Awesome 6 Free";
  line-height: 1;
  font-size: 14px;
  opacity: 0.5;
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #1b2336;
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
  position: relative;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 14px;
  right: 13px;
  line-height: 1;
  font-size: 16px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b2336;
  border-bottom: 1px dashed #ededed;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::before {
  content: "\ea12";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: remixicon !important;
  line-height: 1;
  font-size: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #000000;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #1b2336;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1b2336;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -1px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -1px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 16px;
  transform: translateY(1);
  visibility: visible;
}
.desktop-nav .navbar .others-options {
  padding-left: 40px;
}
.desktop-nav .navbar .others-options .option-item {
  display: inline-block;
  margin-left: 15px;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: #666666;
  font-weight: 400;
  position: relative;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle span {
  position: relative;
  top: 1px;
  color: #202124;
  font-weight: 600;
  transition: all ease 0.5s;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle span::before {
  display: none;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle:hover::before {
  color: #1f86ef;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle:hover span {
  color: #1f86ef;
}
.desktop-nav .navbar .others-options .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 8px;
}
.desktop-nav .navbar .others-options .profile-nav-item .menu-profile .name i {
  font-size: 14px;
  color: #666666;
  padding-left: 7px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  right: 0;
  left: auto;
  border-radius: 5px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-left: -15px;
  margin-right: -15px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure {
  position: relative;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure img {
  width: 80px;
  height: 80px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .name {
  display: block;
  color: #202124;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .email {
  color: #666666;
  font-size: 15px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item {
  margin-left: 0;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link {
  color: #666666;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link span {
  color: #666666;
  display: block;
  font-weight: 400;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link .icon {
  color: #666666;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 2px;
  font-size: 16px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover span {
  color: #1f86ef;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link {
  color: red;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link span {
  color: red;
  display: block;
  font-weight: 400;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link img {
  color: red;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 8px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none !important;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -38px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: #1f86ef;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #1f86ef;
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  padding: 10px;
  background-color: #ffffff;
  text-align: center;
}
.others-option-for-responsive .others-options .option-item .default-btn.style-2 {
  margin-bottom: 10px;
}
.others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: #666666;
  font-weight: 400;
  position: relative;
}
.others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle span {
  position: relative;
  top: 1px;
  color: #202124;
  font-weight: 600;
  transition: all ease 0.5s;
}
.others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle span::before {
  display: none;
}
.others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle:hover::before {
  color: #1f86ef;
}
.others-option-for-responsive .others-options .profile-nav-item .dropdown-bs-toggle:hover span {
  color: #1f86ef;
}
.others-option-for-responsive .others-options .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 8px;
}
.others-option-for-responsive .others-options .profile-nav-item .menu-profile .name i {
  font-size: 14px;
  color: #666666;
  padding-left: 7px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  right: 0;
  left: auto;
  border-radius: 5px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-left: -15px;
  margin-right: -15px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure {
  position: relative;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .figure img {
  width: 80px;
  height: 80px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .name {
  display: block;
  color: #202124;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-header .email {
  color: #666666;
  font-size: 15px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item {
  margin-left: 0;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link {
  color: #666666;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link span {
  color: #666666;
  display: block;
  font-weight: 400;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link .icon {
  color: #666666;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 2px;
  font-size: 16px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover span {
  color: #1f86ef;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-body ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link {
  color: red;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link span {
  color: red;
  display: block;
  font-weight: 400;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link img {
  color: red;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 8px;
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu .dropdown-footer ul .nav-item .nav-link:hover i {
  transform: rotateY(-180deg);
}
.others-option-for-responsive .others-options .profile-nav-item.dropdown .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.mobile-responsive-nav {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*
Banner Style
======================================================*/
.banner-area {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
}
.banner-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area.style2 {
  background-image: linear-gradient(to right, #1657cb, #1460d2, #1469d9, #1571e0, #187ae7, #0087ed, #0093f1, #009ff4, #00aff0, #00bbdd, #00c4bd, #00ca99);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.banner-area-style3 {
  background-color: #f0f0fa;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.banner-area-style3 .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area-style3::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  left: 0;
  bottom: -1px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(99% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(99% 0, 100% 0%, 100% 100%, 0% 100%);
}

.banner-content {
  position: relative;
}
.banner-content .banner-title span {
  color: #1f86ef;
  background-color: #dee8f7;
  display: inline-block;
  padding: 8px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.banner-content .banner-title h1 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 20px;
}
.banner-content .serech-over {
  font-size: 18px;
  margin-bottom: 30px;
}
.banner-content .trending-keywords ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content .trending-keywords ul li {
  display: inline-block;
  margin-right: 5px;
}
.banner-content .trending-keywords ul li span {
  color: #202124;
  font-weight: 500;
  display: inline-block;
}
.banner-content .trending-keywords ul li a {
  color: #666666;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px solid #666666;
  transition: all ease 0.5s;
}
.banner-content .trending-keywords ul li a::before {
  position: absolute;
  content: ",";
  right: -5px;
  bottom: 0;
}
.banner-content .trending-keywords ul li a:hover {
  color: #1f86ef;
  border-color: #1f86ef;
}
.banner-content .trending-keywords ul li:last-child a::before {
  display: none;
}
.banner-content .shape-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  animation: spinner 10s linear infinite;
}
.banner-content.style2 {
  padding-right: 50px;
  top: 0;
}
.banner-content.style2 .banner-title h1 {
  color: #ffffff;
}
.banner-content.style2 .serech-over {
  color: #ffffff;
}
.banner-content.style2 .trending-keywords {
  margin-bottom: 60px;
}
.banner-content.style2 .trending-keywords ul li span {
  color: #ffffff;
}
.banner-content.style2 .trending-keywords ul li a {
  color: #ffffff;
  border: unset;
}
.banner-content .funfacts ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content .funfacts ul li {
  display: inline-block;
  margin-right: 80px;
  position: relative;
}
.banner-content .funfacts ul li::before {
  position: absolute;
  content: "";
  height: 35px;
  width: 1px;
  background-color: #ffffff;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}
.banner-content .funfacts ul li h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.banner-content .funfacts ul li span {
  color: #ffffff;
}
.banner-content .funfacts ul li:last-child::before {
  display: none;
}

.banner-search-form {
  background-color: #ffffff;
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.banner-search-form .form-group {
  position: relative;
}
.banner-search-form .form-group .form-control {
  border: unset;
  height: 60px;
  padding-left: 45px;
}
.banner-search-form .form-group .form-select {
  cursor: pointer;
}
.banner-search-form .form-group i {
  position: absolute;
  top: 20px;
  left: 20px;
}
.banner-search-form .form-group::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  background-color: rgba(102, 102, 102, 0.2);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-search-form .form-group.style::before {
  display: none;
}
.banner-search-form .search-btn {
  text-align: end;
}
.banner-search-form .search-btn .default-btn {
  border-radius: 0 5px 5px 0;
  padding: 20px;
}
.banner-search-form .default-btn i {
  position: relative;
  padding-right: 5px;
  top: 2px;
}
.banner-search-form.style-2 {
  padding: 10px;
  position: relative;
  margin-right: -60px;
}
.banner-search-form.style-2 .search-btn .default-btn {
  padding: 18px;
  margin-right: 0px;
  border-radius: 5px;
}

.banner-image-content {
  text-align: center;
  margin-left: 100px;
  position: relative;
  margin-bottom: -25px;
}
.banner-image-content .banner-img-1 {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.banner-image-content .banner-img-1 .shape-2 {
  position: absolute;
  left: -20px;
  bottom: -20px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}
.banner-image-content .banner-img-2 {
  top: -50px;
  position: relative;
  z-index: 1;
}
.banner-image-content .banner-img-2 .shape-3 {
  position: absolute;
  right: -100px;
  bottom: -20px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}
.banner-image-content .banner-img-3 {
  bottom: -50px;
  position: relative;
}
.banner-image-content .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.banner-image-content .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.banner-image-content .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-image-content .join-now {
  padding: 20px;
  padding-left: 80px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  text-align: start;
  position: absolute;
  top: 38%;
  left: 30%;
  z-index: 1;
  transform: translateY(-38%) translateX(-30%);
}
.banner-image-content .join-now h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content .join-now span {
  display: inline-block;
  margin-bottom: 12px;
}
.banner-image-content .join-now .default-btn {
  display: table;
  padding: 3px 18px;
  padding-bottom: 4px;
  font-size: 13px;
  border-radius: 2px;
}
.banner-image-content .join-now .sm-img {
  position: absolute;
  left: 20px;
  top: 30px;
}
.banner-image-content .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  right: 100px;
  bottom: -100px;
  text-align: start;
  z-index: 1;
}
.banner-image-content .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.banner-image-content .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content .col-lg-6:nth-child(1) .banner-img-1 img {
  border-radius: 100px 0 0 0;
}
.banner-image-content .col-lg-6:nth-child(2) .banner-img-1 img {
  border-radius: 0 100px 0 0;
}
.banner-image-content .col-lg-6:nth-child(3) .banner-img-1 img {
  border-radius: 0 0 0 100px;
}
.banner-image-content .col-lg-6:nth-child(4) .banner-img-1 img {
  border-radius: 0 0 100px 0;
}

.banner-image-content-style2 {
  text-align: center;
  position: relative;
  padding-left: 100px;
}
.banner-image-content-style2 .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  bottom: 200px;
  right: -70px;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.banner-image-content-style2 .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content-style2 .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-image-content-style2 .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  left: 120px;
  bottom: 30px;
  text-align: start;
  z-index: 1;
}
.banner-image-content-style2 .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.banner-image-content-style2 .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content-style2 .icon1 {
  position: absolute;
  bottom: 10px;
  left: 64%;
}
.banner-image-content-style2 .icon2 {
  position: absolute;
  top: 180px;
  left: 240px;
}
.banner-image-content-style2 .icon3 {
  position: absolute;
  top: 60px;
  right: 140px;
}

.banner-content-style3 {
  padding-right: 100px;
}
.banner-content-style3 h1 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 20px;
}
.banner-content-style3 p {
  margin-bottom: 27px;
}

.banner-image-content-style3 {
  text-align: end;
  position: relative;
  z-index: 1;
}
.banner-image-content-style3 .sm-img {
  position: absolute;
  bottom: -50px;
  left: -30px;
}
.banner-image-content-style3 .shape-1 {
  position: absolute;
  left: 30px;
  bottom: 120px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}

/*
Page Banner Style
======================================================*/
.page-banner-area {
  padding-top: 30px;
  padding-bottom: 50px;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.page-banner-content ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.page-banner-content ul li:last-child {
  margin-right: 0;
}
.page-banner-content ul li:last-child::before {
  display: none;
}
.page-banner-content ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.page-banner-content ul li a:hover {
  color: #1f86ef;
}
.page-banner-content ul li::before {
  position: absolute;
  content: "/";
  right: -15px;
  color: #666666;
}

.job-details-banner-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.job-details-banner-content .job-details-banner-left-content .img {
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content span {
  display: inline-block;
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content .info {
  margin-bottom: 30px;
}
.job-details-banner-content .job-details-banner-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-banner-content .job-details-banner-left-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.job-details-banner-content .job-details-banner-left-content .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.job-details-banner-content .job-details-banner-left-content .info ul li:last-child {
  margin-right: 0;
}
.job-details-banner-content .job-details-banner-right-content {
  text-align: end;
}
.job-details-banner-content .job-details-banner-right-content .default-btn {
  margin-bottom: 25px;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li {
  display: inline-block;
  margin-right: 7px;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li:last-child {
  margin-right: 0;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li span {
  font-weight: 500;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li span i {
  padding-right: 7px;
  display: inline-block;
  font-size: 14px;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #1f86ef;
  transition: all ease 0.5s;
}
.job-details-banner-content .job-details-banner-right-content .share-content ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

/*
Categories Style
======================================================*/
.single-category-card {
  background-color: #f0f5f7;
  padding: 40px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.single-category-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  background-color: #1f86ef;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.single-category-card .icon {
  height: 70px;
  width: 70px;
  line-height: 78px;
  font-size: 40px;
  color: #1f86ef;
  text-align: center;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid rgba(32, 33, 36, 0.1);
  margin-bottom: 20px;
  transition: all ease 0.5s;
}
.single-category-card h3 {
  font-size: 22px;
  margin-bottom: 0;
  transition: all ease 0.5s;
}
.single-category-card:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.single-category-card:hover h3 {
  color: #ffffff;
}

.single-categories-box {
  position: relative;
  padding: 25px 20px;
  padding-left: 105px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin-bottom: 30px;
  z-index: 1;
}
.single-categories-box .icon {
  height: 60px;
  width: 60px;
  line-height: 65px;
  background-color: #f0f5f7;
  font-size: 30px;
  border-radius: 100%;
  color: #1f86ef;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
  transition: all ease 0.5s;
}
.single-categories-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
  transition: all ease 0.5s;
}
.single-categories-box span {
  transition: all ease 0.5s;
}
.single-categories-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  left: 0;
  top: 0;
  background-color: #1f86ef;
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: 5px;
}
.single-categories-box:hover .icon {
  background-color: #ffffff;
}
.single-categories-box:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.single-categories-box:hover h3 {
  color: #ffffff;
}
.single-categories-box:hover span {
  color: #ffffff;
}
.single-categories-box.style2 {
  text-align: center;
  padding: 30px;
  margin-bottom: 0;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin: 10px;
}
.single-categories-box.style2 .icon {
  position: unset;
  transform: translateY(0);
  margin: auto auto 20px auto;
  background-color: #1f86ef;
  color: #ffffff;
  height: 70px;
  width: 70px;
  line-height: 78px;
}
.single-categories-box.style2:hover .icon {
  background-color: #ffffff;
  color: #1f86ef;
}

.categories-area.style2 {
  position: relative;
}
.categories-area.style2::before {
  position: absolute;
  content: "";
  height: 120px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
}

.category-slider.owl-theme .owl-nav .owl-prev, .category-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: #f0f5f7;
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
}
.category-slider.owl-theme .owl-nav .owl-prev i, .category-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: -1px;
  left: -15px;
}
.category-slider.owl-theme .owl-nav .owl-prev.owl-next, .category-slider.owl-theme .owl-nav .owl-next.owl-next {
  top: 60px;
  right: 0;
  left: auto;
}
.category-slider.owl-theme .owl-nav .owl-prev.owl-next i, .category-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.category-slider.owl-theme .owl-nav .owl-prev:hover, .category-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
}

.categories-slider2.owl-theme .owl-nav .owl-prev, .categories-slider2.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 47%;
  transform: translateY(-50%);
}
.categories-slider2.owl-theme .owl-nav .owl-prev i, .categories-slider2.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: 0;
}
.categories-slider2.owl-theme .owl-nav .owl-prev.owl-next, .categories-slider2.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.categories-slider2.owl-theme .owl-nav .owl-prev.owl-next i, .categories-slider2.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: -1px;
}
.categories-slider2.owl-theme .owl-nav .owl-prev:hover, .categories-slider2.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}

.title .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}

/*
Job Style
======================================================*/
.single-job-card {
  margin-bottom: 30px;
}
.single-job-card .job-image {
  position: relative;
  margin-bottom: 30px;
}
.single-job-card .job-image img {
  border-radius: 5px;
}
.single-job-card .job-image .bookmark {
  height: 35px;
  width: 35px;
  line-height: 38px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #666666;
  transition: all ease 0.5s;
}
.single-job-card .job-image .bookmark:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-job-card .job-image .urgent {
  background-color: #1f86ef;
  padding: 5px 10px;
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 5px;
}
.single-job-card .job-content .time {
  background-color: #f0f5f7;
  color: #1f86ef;
  padding: 5px 15px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-job-card .job-content .time:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-job-card .job-content h2 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 18px;
}
.single-job-card .job-content h2 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-job-card .job-content h2 a:hover {
  color: #1f86ef;
}
.single-job-card .job-content .info {
  margin-bottom: 30px;
}
.single-job-card .job-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-job-card .job-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.single-job-card .job-content .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.single-job-card .job-content .info ul li:last-child {
  margin-right: 0;
}
.single-job-card .job-content .bottom-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-job-card .job-content .bottom-content ul li {
  list-style-type: none;
}
.single-job-card .job-content .bottom-content ul li .left-content {
  padding-left: 60px;
  position: relative;
}
.single-job-card .job-content .bottom-content ul li .left-content .icon {
  height: 45px;
  width: 45px;
  line-height: 42px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-job-card .job-content .bottom-content ul li h3 {
  font-size: 20px;
  color: #1f86ef;
}
.single-job-card .job-content .bottom-content ul li h3 span {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.single-job-card.style-2 {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.single-job-card.style-2 .job-content {
  padding: 15px;
  position: relative;
}
.single-job-card.style-2 .job-content .time {
  margin-bottom: 0;
  position: absolute;
  top: -45px;
  left: 20px;
}
.single-job-card.style-2 .job-content .bottom-content ul li .left-content .icon img {
  width: auto;
  padding-top: 9px;
  padding-left: 9px;
}
.single-job-card.style-3 {
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  background-color: #ffffff;
  border-radius: 5px;
}
.single-job-card.style-3 .job-image {
  margin-bottom: 0;
}
.single-job-card.style-3 .job-image img {
  border-radius: 5px 5px 0 0;
}
.single-job-card.style-3 .job-image .time {
  background-color: #ffffff;
  padding: 4px 12px;
  color: #1f86ef;
  position: absolute;
  left: 20px;
  top: 20px;
  font-weight: 500;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-job-card.style-3 .job-image .time:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-job-card.style-3 .job-content {
  padding: 25px 30px 35px 30px;
}
.single-job-card.style-3 .job-content h3 {
  font-size: 20px;
  color: #1f86ef;
}
.single-job-card.style-3 .job-content h3 span {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.single-job-card.style-3 .job-content .bottom-content {
  padding-left: 60px;
  position: relative;
}
.single-job-card.style-3 .job-content .bottom-content .icon {
  height: 45px;
  width: 45px;
  line-height: 42px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.recent-job-box {
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  padding-left: 120px;
  position: relative;
  margin: 7px;
  margin-bottom: 30px;
}
.recent-job-box .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.recent-job-box .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.recent-job-box .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.recent-job-box .info ul li:last-child {
  margin-right: 0;
}
.recent-job-box .logo {
  height: 70px;
  width: 70px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 30px;
  top: 30px;
}
.recent-job-box .logo img {
  width: auto;
  padding-left: 13px;
  padding-top: 13px;
}
.recent-job-box .bookmark {
  height: 35px;
  width: 35px;
  line-height: 38px;
  text-align: center;
  background-color: #e5e5e5;
  border-radius: 100%;
  position: absolute;
  right: 30px;
  top: 30px;
  color: #666666;
  transition: all ease 0.5s;
}
.recent-job-box .bookmark:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.recent-job-box .time {
  background-color: rgba(25, 103, 210, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 17px;
  display: inline-block;
  color: #1f86ef;
  font-weight: 500;
  transition: all ease 0.5s;
}
.recent-job-box .time:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.recent-job-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.recent-job-box h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.recent-job-box h3 a:hover {
  color: #1f86ef;
}

.shoting-btn {
  text-align: center;
  margin-bottom: 40px;
}
.shoting-btn ul {
  padding-left: 0;
  margin-bottom: 0;
}
.shoting-btn ul li {
  display: inline-block;
  margin-right: 5px;
}
.shoting-btn ul li:last-child {
  margin-right: 0;
}
.shoting-btn ul li button {
  background-color: transparent;
  border: unset;
  padding: 5px 10px;
  transition: all ease 0.5s;
  font-weight: 500;
  border-radius: 5px;
  color: #666666;
}
.shoting-btn ul li button:hover, .shoting-btn ul li button:focus, .shoting-btn ul li button.active {
  background-color: #f0f5f7;
  color: #1f86ef;
}

.job-slider.owl-theme .owl-nav .owl-prev, .job-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: transparent;
  border: 1px solid #1f86ef;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 45%;
  transform: translateY(-50%);
}
.job-slider.owl-theme .owl-nav .owl-prev i, .job-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: 0;
}
.job-slider.owl-theme .owl-nav .owl-prev.owl-next, .job-slider.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.job-slider.owl-theme .owl-nav .owl-prev.owl-next i, .job-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: -1px;
}
.job-slider.owl-theme .owl-nav .owl-prev:hover, .job-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}
.job-slider.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

.job-slider2.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-slider2.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

/*
Job Details Style
======================================================*/
.job-details-content .job-description {
  margin-bottom: 25px;
}
.job-details-content .job-description h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .our-company {
  margin-bottom: 25px;
}
.job-details-content .our-company h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .previous-interview {
  margin-bottom: 25px;
}
.job-details-content .previous-interview h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.job-details-content .previous-interview .video-content {
  position: relative;
}
.job-details-content .previous-interview .video-content .video-btn {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.job-details-content .previous-interview .video-content .video-btn a {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 70px;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all ease 0.5s;
  position: relative;
}
.job-details-content .previous-interview .video-content .video-btn a i {
  font-size: 30px;
  position: relative;
  left: 2px;
  top: 2px;
  transition: all ease 0.5s;
}
.job-details-content .previous-interview .video-content .video-btn a::before {
  position: absolute;
  content: "";
  height: 72px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.4);
  top: -3px;
  left: -3px;
  border-radius: 100%;
  animation: ripple 2s infinite linear;
}
.job-details-content .previous-interview .video-content .video-btn a:hover {
  background-color: #1f86ef;
}
.job-details-content .previous-interview .video-content .video-btn a:hover i {
  color: #ffffff;
}
.job-details-content .job-responsibilities {
  margin-bottom: 25px;
}
.job-details-content .job-responsibilities h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .job-responsibilities ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-content .job-responsibilities ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.job-details-content .job-responsibilities ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.job-details-content .job-responsibilities ul li:last-child {
  margin-bottom: 0;
}
.job-details-content .our-mission {
  margin-bottom: 25px;
}
.job-details-content .our-mission h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .our-vision {
  margin-bottom: 23px;
}
.job-details-content .our-vision h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.related-job-area h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/*
Employer Style
======================================================*/
.single-employer-card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  transition: all ease 0.5s;
  position: relative;
  margin-bottom: 30px;
}
.single-employer-card .employer-content {
  padding-left: 90px;
  position: relative;
}
.single-employer-card .employer-content .icon {
  height: 70px;
  width: 70px;
  line-height: 67px;
  border-radius: 100%;
  text-align: center;
  background-color: #f0f5f7;
  position: absolute;
  left: 0;
  top: 7px;
}
.single-employer-card .employer-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  transition: all ease 0.5s;
}
.single-employer-card .employer-content h3:hover {
  color: #1f86ef;
}
.single-employer-card .employer-content .info {
  margin-bottom: 15px;
}
.single-employer-card .employer-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-employer-card .employer-content .info ul li {
  display: inline-block;
  margin-right: 20px;
}
.single-employer-card .employer-content .info ul li span i {
  color: #1f86ef;
  font-size: 14px;
  position: relative;
  top: 2px;
  padding-right: 5px;
}
.single-employer-card .employer-content .info ul li i {
  color: #ffc107;
}
.single-employer-card .employer-content .info ul li:last-child {
  margin-right: 0;
}
.single-employer-card .employer-content p {
  margin-bottom: 20px;
}
.single-employer-card .employer-content .bottom-btn a {
  padding: 4px 12px;
  background-color: #f0f5f7;
  display: table;
  color: #1f86ef;
  font-weight: 500;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-employer-card .employer-content .bottom-btn a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-employer-card .employer-content .categorie-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.single-employer-card .employer-content .categorie-btn a {
  padding: 6px 12px;
  background-color: #1f86ef;
  color: #ffffff;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-employer-card .employer-content .categorie-btn a:hover {
  background-color: #202124;
  color: #ffffff;
}
.single-employer-card:hover {
  transform: translateY(-10px);
}

.employers-details-top-content {
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin-bottom: 40px;
}
.employers-details-top-content .details-left-content {
  padding-left: 110px;
  position: relative;
}
.employers-details-top-content .details-left-content .icon {
  height: 90px;
  width: 90px;
  line-height: 87px;
  text-align: center;
  background-color: #f0f5f7;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 53%;
  transform: translateY(-50%);
}
.employers-details-top-content .details-left-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.employers-details-top-content .details-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.employers-details-top-content .details-left-content .info ul li {
  display: inline-block;
  margin-right: 20px;
  padding-left: 20px;
  position: relative;
}
.employers-details-top-content .details-left-content .info ul li:last-child {
  margin-right: 0;
}
.employers-details-top-content .details-left-content .info ul li:last-child i {
  top: 5px;
}
.employers-details-top-content .details-left-content .info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-left-content .info ul li a:hover {
  color: #1f86ef;
}
.employers-details-top-content .details-left-content .info ul li i {
  color: #1f86ef;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 3px;
}
.employers-details-top-content .details-right-content {
  text-align: end;
}
.employers-details-top-content .details-right-content .bookmark {
  margin-bottom: 20px;
}
.employers-details-top-content .details-right-content .bookmark a {
  height: 30px;
  width: 30px;
  line-height: 32px;
  border-radius: 100%;
  text-align: center;
  background-color: #f0f5f7;
  display: inline-block;
  font-size: 13px;
  color: #666666;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-right-content .bookmark a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.employers-details-top-content .details-right-content .position-btn a {
  background-color: rgba(25, 103, 210, 0.1);
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 30px;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-right-content .position-btn a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

.employers-details-content .about-content {
  margin-bottom: 25px;
}
.employers-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .job-responsibilities {
  margin-bottom: 25px;
}
.employers-details-content .job-responsibilities h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .gallery {
  margin-bottom: 25px;
}
.employers-details-content .gallery h3 {
  font-size: 22px;
  margin-bottom: 25px;
}
.employers-details-content .jurney h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .jurney p {
  margin-bottom: 20px;
}
.employers-details-content .review h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.employers-details-content .review .single-review {
  padding: 30px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 5px;
  margin-bottom: 30px;
}
.employers-details-content .review .single-review .review-content {
  position: relative;
  padding-left: 90px;
}
.employers-details-content .review .single-review .review-content .img {
  position: absolute;
  left: 0;
  top: 5px;
}
.employers-details-content .review .single-review .review-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.employers-details-content .review .single-review .review-content span {
  margin-bottom: 15px;
  display: inline-block;
}
.employers-details-content .review .single-review .review-content .rating {
  position: absolute;
  top: 20px;
  right: 0;
}
.employers-details-content .review .single-review .review-content .rating i {
  color: #ffc107;
}
.employers-details-content .review .single-review .review-content p {
  margin-bottom: 0;
}
.employers-details-content .add-review {
  margin-bottom: 40px;
}
.employers-details-content .features-job .section-title {
  margin-bottom: 20px;
}

.add-review {
  background-color: #f0f5f7;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.add-review h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.add-review span {
  margin-bottom: 10px;
  display: inline-block;
}
.add-review .rating {
  margin-bottom: 20px;
}
.add-review .rating i {
  color: #ffc107;
}
.add-review .review-form .form-group {
  margin-bottom: 25px;
}
.add-review .review-form .form-group .form-control {
  border: unset;
}

/*
Dream Job Style
======================================================*/
.dream-job-content .dream-job-title {
  margin-bottom: 25px;
}
.dream-job-content .dream-job-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.dream-job-content .job-features-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.dream-job-content .job-features-list ul li {
  padding-left: 55px;
  position: relative;
  list-style-type: none;
  margin-bottom: 20px;
  padding-right: 100px;
}
.dream-job-content .job-features-list ul li .icon {
  font-size: 35px;
  color: #1f86ef;
  position: absolute;
  left: 0;
  top: 3px;
}
.dream-job-content .job-features-list ul li h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.dream-job-content .job-features-list ul li:last-child {
  margin-bottom: 0;
}

.dream-job-image {
  padding-left: 200px;
  padding-bottom: 130px;
  position: relative;
}
.dream-job-image .sm-img1 {
  height: 300px;
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 70px;
}
.dream-job-image .sm-img1 img {
  border-radius: 100%;
  border: 5px solid #ffffff;
}
.dream-job-image .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.dream-job-image .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.dream-job-image .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.dream-job-image .join-now {
  padding: 20px;
  padding-left: 80px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  text-align: start;
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 1;
}
.dream-job-image .join-now h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.dream-job-image .join-now span {
  display: inline-block;
  margin-bottom: 12px;
}
.dream-job-image .join-now .default-btn {
  display: table;
  padding: 4px 15px;
  padding-bottom: 6px;
}
.dream-job-image .join-now .sm-img {
  position: absolute;
  left: 20px;
  top: 30px;
}
.dream-job-image .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  left: -70px;
  bottom: 140px;
  text-align: start;
  z-index: 1;
}
.dream-job-image .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.dream-job-image .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/*
Reviews Style
======================================================*/
.single-reviews-card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 35px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.single-reviews-card .ratings {
  margin-bottom: 20px;
}
.single-reviews-card .ratings i {
  color: #ffc107;
  margin-right: 5px;
  font-size: 14px;
}
.single-reviews-card .ratings i:last-child {
  margin-right: 0;
}
.single-reviews-card p {
  margin-bottom: 20px;
}
.single-reviews-card .clien-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.single-reviews-card .quote {
  font-size: 55px;
  line-height: 1;
  position: absolute;
  color: rgba(25, 103, 210, 0.1);
  right: 30px;
  bottom: 20px;
  transition: all ease 0.5s;
}
.single-reviews-card.bu {
  box-shadow: unset;
}
.single-reviews-card:hover .quote {
  color: rgba(25, 103, 210, 0.3);
}
.single-reviews-card.style2 {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin: 10px;
  margin-bottom: 30px;
}
.single-reviews-card.style2 .quote {
  right: 40px;
  bottom: 35px;
}

.single-review-box {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 5px;
}
.single-review-box .top-content {
  padding-left: 100px;
  position: relative;
  margin-bottom: 25px;
}
.single-review-box .top-content .review-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-review-box .top-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.single-review-box .top-content span {
  display: inline-block;
  margin-bottom: 8px;
}
.single-review-box .top-content .ratings i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 5px;
}
.single-review-box .top-content .ratings i:last-child {
  margin-right: 0;
}
.single-review-box.style-2 {
  margin-bottom: 30px;
}

.reviews-slider.owl-theme .owl-nav .owl-prev, .reviews-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: rgba(25, 103, 210, 0.1);
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
}
.reviews-slider.owl-theme .owl-nav .owl-prev i, .reviews-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: -15px;
}
.reviews-slider.owl-theme .owl-nav .owl-prev.owl-next, .reviews-slider.owl-theme .owl-nav .owl-next.owl-next {
  top: 60px;
  right: 0;
  left: auto;
}
.reviews-slider.owl-theme .owl-nav .owl-prev.owl-next i, .reviews-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.reviews-slider.owl-theme .owl-nav .owl-prev:hover, .reviews-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
}

.reviews-slider2.owl-theme .owl-nav .owl-prev, .reviews-slider2.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: transparent;
  border: 1px solid #1f86ef;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}
.reviews-slider2.owl-theme .owl-nav .owl-prev i, .reviews-slider2.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1px;
  left: 0;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev.owl-next, .reviews-slider2.owl-theme .owl-nav .owl-next.owl-next {
  right: -70px;
  left: auto;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev.owl-next i, .reviews-slider2.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: 1px;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev:hover, .reviews-slider2.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}

.reviews-slider3.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.reviews-slider3.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

/*
Pricing Style
======================================================*/
.single-pricing-card {
  padding: 40px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-pricing-card .pricing-top-content {
  margin-bottom: 40px;
  position: relative;
}
.single-pricing-card .pricing-top-content::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 240px;
  background-color: #eeeeee;
  bottom: -15px;
}
.single-pricing-card .pricing-top-content h3 {
  font-size: 30px;
  margin-bottom: 8px;
  position: relative;
  margin-top: -5px;
}
.single-pricing-card .pricing-top-content h1 {
  font-size: 50px;
  color: #1f86ef;
  font-weight: 600;
}
.single-pricing-card .pricing-top-content h1 span {
  font-size: 16px;
  font-weight: 400;
}
.single-pricing-card .features-list {
  margin-bottom: 30px;
}
.single-pricing-card .features-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-pricing-card .features-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.single-pricing-card .features-list ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #1f86ef;
}
.single-pricing-card .features-list ul li:last-child {
  margin-bottom: 0;
}

/*
Company Style
======================================================*/
.single-company-card {
  padding: 25px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.single-company-card .company-content {
  padding-left: 85px;
  position: relative;
}
.single-company-card .company-content .icon {
  height: 70px;
  width: 70px;
  line-height: 66px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
.single-company-card .company-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.single-company-card .company-content h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-company-card .company-content h3 a:hover {
  color: #1f86ef;
}
.single-company-card .company-content span {
  display: inline-block;
  margin-bottom: 12px;
}
.single-company-card .company-content span i {
  color: #1f86ef;
  font-size: 14px;
  position: relative;
  top: 1px;
}
.single-company-card .company-content h4 {
  font-size: 18px;
}
.single-company-card:hover {
  transform: translateY(-10px);
}

.company-details .details-top-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .details-top-content p {
  margin-bottom: 20px;
}
.company-details .details-top-content .top-img {
  margin-bottom: 30px;
}
.company-details .about-company {
  margin-bottom: 20px;
}
.company-details .about-company h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .gallery h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.company-details .gallery .gallery-img {
  margin-bottom: 30px;
}
.company-details .overview {
  margin-bottom: 30px;
}
.company-details .overview h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .overview ul {
  padding-left: 0;
  margin-bottom: 0;
}
.company-details .overview ul li {
  list-style-type: none;
  margin-bottom: 13px;
  position: relative;
  padding-left: 15px;
}
.company-details .overview ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.company-details .overview ul li:last-child {
  margin-bottom: 0;
}
.company-details .intro-video {
  margin-bottom: 30px;
}
.company-details .intro-video h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.company-details .intro-video .video-content {
  position: relative;
}
.company-details .intro-video .video-content .video-btn {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.company-details .intro-video .video-content .video-btn a {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 70px;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all ease 0.5s;
  position: relative;
}
.company-details .intro-video .video-content .video-btn a i {
  font-size: 30px;
  position: relative;
  left: 2px;
  top: 2px;
  transition: all ease 0.5s;
}
.company-details .intro-video .video-content .video-btn a::before {
  position: absolute;
  content: "";
  height: 72px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.4);
  top: -3px;
  left: -3px;
  border-radius: 100%;
  animation: ripple 2s infinite linear;
}
.company-details .intro-video .video-content .video-btn a:hover {
  background-color: #1f86ef;
}
.company-details .intro-video .video-content .video-btn a:hover i {
  color: #ffffff;
}
.company-details .related-jobs h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/*
Counter Style
======================================================*/
.counter-area {
  position: relative;
  z-index: 1;
}
.counter-area::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  background-color: #f0f4fc;
  z-index: -1;
}

.counter-overly {
  background-color: #1f86ef;
  border-radius: 5px;
  padding: 60px 40px 30px 40px;
}

.single-counter-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}
.single-counter-item h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 4px;
}
.single-counter-item h1 span {
  font-family: "Quicksand", sans-serif;
  font-style: normal;
}
.single-counter-item h1 .target {
  position: relative;
  top: 2px;
}
.single-counter-item p {
  color: #ffffff;
}
.single-counter-item .icon {
  font-size: 60px;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.single-counter-item .icon i {
  position: relative;
  top: 5px;
}
.single-counter-item .icon::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #ffffff;
  opacity: 0.1;
  bottom: -10px;
  right: -10px;
}
.single-counter-item.style-2 h1 {
  color: #202124;
}
.single-counter-item.style-2 p {
  color: #666666;
}
.single-counter-item.style-2 .icon {
  color: #1f86ef;
}
.single-counter-item.style-2 .icon::before {
  background-color: #1f86ef;
}

.col-lg-3 .single-counter-item {
  margin-left: 55px;
}
.col-lg-3:first-child .single-counter-item {
  margin-left: 20px;
}

/*
CV Style
======================================================*/
.cv-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cv-content p {
  margin-bottom: 30px;
}
.cv-content .cv-btn .video-btn {
  color: #666666;
}
.cv-content .cv-btn .video-btn i {
  color: #202124;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 100%;
  background-color: #f0f5f7;
  text-align: center;
  font-size: 20px;
  position: relative;
  top: 3px;
  margin-right: 10px;
  padding-left: 2px;
  transition: all ease 0.5s;
}
.cv-content .cv-btn .video-btn i:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.cv-content.style2 .cv-btn .video-btn i {
  background-color: #ffffff;
}
.cv-content.style2 .cv-btn .video-btn i:hover {
  color: #ffffff;
  background-color: #1f86ef;
}

.cv-img-area {
  position: relative;
}
.cv-img-area .cv-img-1 {
  margin-top: 30px;
}
.cv-img-area .cv-img-2 {
  padding-left: 30px;
}
.cv-img-area .inbox {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  padding: 15px;
  padding-left: 70px;
  bottom: 25px;
  right: 180px;
}
.cv-img-area .inbox h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.cv-img-area .inbox .icon {
  height: 40px;
  width: 40px;
  color: #f81815;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  font-size: 20px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.cv-img-area-style2 {
  padding-right: 120px;
  position: relative;
  padding-bottom: 20px;
}
.cv-img-area-style2 .candidate-content {
  width: 330px;
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  background-color: #ffffff;
  position: absolute;
  right: 20px;
  bottom: 0;
}
.cv-img-area-style2 .candidate-content .candidate a {
  background-color: rgba(25, 103, 210, 0.1);
  color: #1f86ef;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: all ease 0.5s;
}
.cv-img-area-style2 .candidate-content .candidate a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.cv-img-area-style2 .candidate-content p {
  color: #202124;
  font-weight: 600;
  font-size: 18px;
}
.cv-img-area-style2 .candidate-content .info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

/*
Paginations Style
======================================================*/
.paginations {
  text-align: center;
}
.paginations ul {
  padding-left: 0;
  margin-bottom: 0;
}
.paginations ul li {
  display: inline-block;
  padding-right: 7px;
}
.paginations ul li a {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  border: 1px solid transparent;
  display: inline-block;
  transition: all ease 0.5s;
  color: #202124;
  font-size: 18px;
  box-shadow: 0px 4px 20px rgba(32, 33, 36, 0.1);
}
.paginations ul li a i {
  position: relative;
  top: -1px;
  font-size: 16px;
}
.paginations ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations ul li a.active {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations.style2 ul li a {
  background-color: #ffffff;
}
.paginations.style2 ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations.style2 ul li a.active {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}

/*
Partner Style
======================================================*/
.partner-slider.owl-carousel .owl-item img {
  margin: auto;
  width: auto;
}

.partner-title {
  text-align: center;
  margin-bottom: 50px;
}
.partner-title h3 {
  font-size: 18px;
}

.parner-logo img {
  opacity: 0.3;
  transition: all ease 0.5s;
}
.parner-logo img:hover {
  opacity: 1;
}

/*
Job Location Style
======================================================*/
.job-location-card {
  position: relative;
  border-radius: 5;
}
.job-location-card img {
  border-radius: 5px;
}
.job-location-card::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(32, 33, 36, 0) 79.17%, #202124 91.15%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  opacity: 0.7;
}
.job-location-card span {
  position: absolute;
  color: #ffffff;
  background-color: #1f86ef;
  padding: 5px 10px;
  right: 10px;
  top: 10px;
  border-radius: 5px;
}
.job-location-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin-bottom: 0;
  font-size: 18px;
}
.job-location-card h3 a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.job-location-card h3 a:hover {
  color: #1f86ef;
}

.job-location-box {
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
}
.job-location-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #202124;
  opacity: 0.6;
  border-radius: 5px;
}
.job-location-box .job-img img {
  border-radius: 5px;
}
.job-location-box .content {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.job-location-box .content h3 {
  font-size: 22px;
}
.job-location-box .content h3 a {
  color: #ffffff;
}
.job-location-box .content .open-job {
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  position: relative;
  bottom: -30px;
}
.job-location-box .content .open-job a {
  color: #ffffff;
  background-color: #1f86ef;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.job-location-box .content .open-job a:hover {
  background-color: #202124;
}
.job-location-box:hover .content {
  top: 50%;
}
.job-location-box:hover .content .open-job {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.job-location-slider.owl-theme .owl-nav .owl-prev, .job-location-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: rgba(25, 103, 210, 0.1);
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.job-location-slider.owl-theme .owl-nav .owl-prev i, .job-location-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: -1px;
  left: -15px;
}
.job-location-slider.owl-theme .owl-nav .owl-prev.owl-next, .job-location-slider.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.job-location-slider.owl-theme .owl-nav .owl-prev.owl-next i, .job-location-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.job-location-slider.owl-theme .owl-nav .owl-prev:hover, .job-location-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #202124;
}

.job-location-slider2.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-location-slider2.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

.search-job-top-content {
  margin-bottom: 35px;
}
.search-job-top-content .shoing-content {
  font-weight: 600;
  color: #202124;
}
.search-job-top-content .shorting-content {
  position: relative;
  margin-left: -50px;
}
.search-job-top-content .shorting-content .form-control {
  background-color: #f0f5f7;
  border: unset;
}

/*
Post A Job Style
======================================================*/
.post-job-content {
  background-color: #f0f5f7;
  padding: 40px;
  border-radius: 5px;
}
.post-job-content .information-form {
  margin-bottom: 10px;
}
.post-job-content .information-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.post-job-content .information-form .form-group {
  margin-bottom: 25px;
}
.post-job-content .information-form .form-group .form-control {
  border: unset;
}
.post-job-content .some-info {
  margin-bottom: 25px;
}
.post-job-content .some-info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.post-job-content .some-info ul li {
  list-style-type: none;
  margin-bottom: 12px;
}
.post-job-content .some-info ul li .choose-file {
  position: relative;
  padding-left: 120px;
}
.post-job-content .some-info ul li .choose-file label {
  display: inline-block;
  background-color: #ffffff;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
}
.post-job-content .some-info ul li .choose-file span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post-job-content .some-info ul li:last-child {
  margin-bottom: 0;
}
.post-job-content .requre-information h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.post-job-content .requre-information .form-group {
  margin-bottom: 25px;
}
.post-job-content .requre-information .form-group .form-check {
  padding-left: 24px;
}
.post-job-content .requre-information .form-group .form-control {
  border: unset;
}

/*
Job Listing Style
======================================================*/
.job-listing-search-form {
  background-color: #f0f5f7;
  border-radius: 5px;
  margin-bottom: 30px;
}
.job-listing-search-form .form-group {
  position: relative;
}
.job-listing-search-form .form-group .form-control {
  border: unset;
  height: 65px;
  padding-left: 55px;
  background-color: #f0f5f7;
}
.job-listing-search-form .form-group .form-select {
  cursor: pointer;
}
.job-listing-search-form .form-group i {
  position: absolute;
  top: 23px;
  left: 30px;
}
.job-listing-search-form .form-group::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  background-color: rgba(102, 102, 102, 0.2);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.job-listing-search-form .form-group.style::before {
  display: none;
}
.job-listing-search-form .search-btn {
  text-align: end;
}
.job-listing-search-form .search-btn .default-btn {
  padding: 20px 55px;
}

/*
Freelancer Style
======================================================*/
.freelancer-top-content .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}
.freelancer-top-content .browse-btn a {
  color: #1f86ef;
  padding-bottom: 3px;
  font-weight: 600;
  border-bottom: 1px solid #1f86ef;
}

.single-freelancer-card {
  padding: 25px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-freelancer-card .freelancer-img {
  position: relative;
  margin-right: -15px;
}
.single-freelancer-card img {
  border-radius: 5px;
}
.single-freelancer-card .freelancer-content {
  padding-left: 15px;
}
.single-freelancer-card .freelancer-content h3 {
  font-size: 18px;
  transition: all ease 0.5s;
}
.single-freelancer-card .freelancer-content h3:hover {
  color: #1f86ef;
}
.single-freelancer-card .freelancer-content span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
}
.single-freelancer-card .freelancer-content .ratings {
  margin-bottom: 8px;
}
.single-freelancer-card .freelancer-content .ratings i {
  color: #ffc107;
  font-size: 13px;
}
.single-freelancer-card .freelancer-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-freelancer-card .freelancer-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-right: 15px;
  font-size: 14px;
  color: #666666;
}
.single-freelancer-card .freelancer-content .info ul li:last-child {
  margin-right: 0;
}
.single-freelancer-card .freelancer-content .info ul li i {
  color: #1f86ef;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
}

.single-freelancer-box {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
}
.single-freelancer-box .freelancer-img {
  overflow: hidden;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancer-img img {
  overflow: hidden;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancers-content {
  padding: 25px 20px 20px 20px;
}
.single-freelancer-box .freelancers-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.single-freelancer-box .freelancers-content h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancers-content h3 a:hover {
  color: #1f86ef;
}
.single-freelancer-box .freelancers-content span {
  display: inline-block;
  margin-bottom: 12px;
}
.single-freelancer-box .freelancers-content .info-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-freelancer-box .freelancers-content .info-list ul li {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}
.single-freelancer-box .freelancers-content .info-list ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
  font-size: 13px;
}
.single-freelancer-box .freelancers-content .info-list ul li i.color {
  color: #ffc107;
}
.single-freelancer-box .freelancers-content .info-list ul li:last-child {
  margin-right: 0;
}
.single-freelancer-box:hover .freelancer-img img {
  transform: scale(1.03);
}

.freelancer-details-content .freelancer-top-content {
  margin-bottom: 30px;
}
.freelancer-details-content .freelancer-top-content .single-freelancer-card {
  padding: 0;
  box-shadow: unset;
  margin-bottom: 0;
}
.freelancer-details-content .freelancer-top-content .download-btn {
  text-align: end;
}
.freelancer-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .about-content p {
  margin-bottom: 15px;
}
.freelancer-details-content .works-experience h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .works-experience ul {
  padding-left: 0;
  margin-bottom: 0;
}
.freelancer-details-content .works-experience ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.freelancer-details-content .works-experience ul li p span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.freelancer-details-content .works-experience ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.freelancer-details-content .education {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.freelancer-details-content .education h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .education ul {
  padding-left: 0;
  margin-bottom: 0;
}
.freelancer-details-content .education ul li {
  list-style-type: none;
  margin-bottom: 25px;
}
.freelancer-details-content .education ul li span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.freelancer-details-content .education ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.freelancer-details-content .education ul li:last-child {
  margin-bottom: 0;
}

.skill-content {
  margin-bottom: 30px;
}
.skill-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.skill-content .skills {
  position: relative;
}
.skill-content .skills .skill-item {
  position: relative;
  margin-bottom: 20px;
}
.skill-content .skills .skill-item .skill-header {
  position: relative;
  margin-bottom: 10px;
}
.skill-content .skills .skill-item .skill-header .skill-title {
  font-size: 16px;
  margin-bottom: 0;
}
.skill-content .skills .skill-item .skill-header .skill-percentage {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 16px;
  font-weight: 500;
  font-color: #202124;
}
.skill-content .skills .skill-item:last-child {
  margin-bottom: 0;
}
.skill-content .skills .skill-item .skill-bar {
  position: relative;
  width: 100%;
}
.skill-content .skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  border-bottom: 3px solid rgba(25, 103, 210, 0.1);
  border-radius: 30px;
}
.skill-content .skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 3px;
  background: #1f86ef;
  transition: all 2000ms ease;
  border-radius: 10px;
}
.skill-content .skills .skill-item .skill-bar .bar-inner .bar::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  top: -3px;
  right: -1px;
  background-color: #1f86ef;
}

/*
Candidates Style
======================================================*/
.candidates-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .about-content p {
  margin-bottom: 15px;
}
.candidates-details-content .works-experience h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .works-experience ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-content .works-experience ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.candidates-details-content .works-experience ul li p span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.candidates-details-content .works-experience ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.candidates-details-content .education {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.candidates-details-content .education h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .education ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-content .education ul li {
  list-style-type: none;
  margin-bottom: 25px;
}
.candidates-details-content .education ul li span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.candidates-details-content .education ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.candidates-details-content .education ul li:last-child {
  margin-bottom: 0;
}
.candidates-details-content .portfolio h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.candidates-details-content .portfolio .gallery-img {
  margin-bottom: 30px;
}

.candidates-details-banner-area {
  padding-top: 100px;
  padding-bottom: 100px;
}

.candidates-details-left-content {
  padding-left: 190px;
  position: relative;
}
.candidates-details-left-content .candidates-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.candidates-details-left-content .candidates-img img {
  border-radius: 100%;
  border: 5px solid #ffffff;
  height: 170px;
  width: 170px;
}
.candidates-details-left-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.candidates-details-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-left-content .info ul li {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 15px;
}
.candidates-details-left-content .info ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  color: #1f86ef;
}
.candidates-details-left-content .info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.candidates-details-left-content .info ul li a:hover {
  color: #1f86ef;
}

.candidates-share-content {
  text-align: end;
}
.candidates-share-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-share-content ul li {
  display: inline-block;
  margin-right: 7px;
}
.candidates-share-content ul li:last-child {
  margin-right: 0;
}
.candidates-share-content ul li span {
  font-weight: 500;
}
.candidates-share-content ul li span i {
  padding-right: 7px;
  display: inline-block;
  font-size: 14px;
}
.candidates-share-content ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #1f86ef;
  transition: all ease 0.5s;
}
.candidates-share-content ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

/*
Sidebar Style
======================================================*/
.single-sidebar-widget {
  padding: 30px;
  background-color: #f0f5f7;
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-sidebar-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.single-sidebar-widget.job-overview ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.job-overview ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.job-overview ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.job-overview ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.owner-info ul {
  padding-left: 0;
  margin-bottom: 22px;
}
.single-sidebar-widget.owner-info ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.owner-info ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.owner-info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.owner-info ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.owner-info ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.owner-info .default-btn {
  width: 100%;
}
.single-sidebar-widget.company-overview ul {
  padding-left: 0;
  margin-bottom: 25px;
}
.single-sidebar-widget.company-overview ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.company-overview ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.company-overview ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.company-overview ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.company-overview ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.company-overview ul li .social-content a {
  height: 30px;
  width: 30px;
  line-height: 35px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(25, 103, 210, 0.1);
  display: inline-block;
  color: #1f86ef;
  font-size: 14px;
  transition: all ease 0.5s;
  margin-right: 4px;
}
.single-sidebar-widget.company-overview ul li .social-content a:last-child {
  margin-right: 0;
}
.single-sidebar-widget.company-overview ul li .social-content a:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-sidebar-widget.company-overview .default-btn {
  width: 100%;
}
.single-sidebar-widget.location .map-content iframe {
  height: 230px;
  width: 100%;
}
.single-sidebar-widget.location.style2 .map-content {
  margin-bottom: 25px;
}
.single-sidebar-widget.location.style2 ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.location.style2 ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.location.style2 ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.location.style2 ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.location.style2 ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.location.style2 ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.search-bar .form-group {
  position: relative;
}
.single-sidebar-widget.search-bar .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.search-bar .form-group .default-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px;
  border-radius: 0 5px 5px 0;
}
.single-sidebar-widget.search-bar .form-group .default-btn i {
  font-size: 20px;
  position: relative;
  top: 2px;
  right: 2px;
}
.single-sidebar-widget.widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}
.single-sidebar-widget.widget-peru-posts-thumb h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.single-sidebar-widget.widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 75px;
  overflow: hidden;
  position: relative;
  width: 75px;
  margin-right: 15px;
  border-radius: 7px;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage {
  width: 75px;
  height: 75px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #202124;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../images/blog/blog-img-7.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../images/blog/blog-img-2.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../images/blog/blog-img-12.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info {
  overflow: hidden;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #202124;
  transition: all ease 0.5s;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.categories h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.categories ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.categories ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.single-sidebar-widget.categories ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.single-sidebar-widget.categories ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.categories ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.tags {
  padding-bottom: 20px;
}
.single-sidebar-widget.tags h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.tags a {
  background-color: #ffffff;
  padding: 8px 18px;
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #666666;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-sidebar-widget.tags a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-sidebar-widget.job-alert h3 {
  margin-bottom: 18px;
}
.single-sidebar-widget.job-alert p {
  margin-bottom: 20px;
  font-weight: 500;
  padding-right: 20px;
}
.single-sidebar-widget.job-alert .form-group {
  margin-bottom: 25px;
}
.single-sidebar-widget.job-alert .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.job-alert.style2 .default-btn {
  width: 100%;
}
.single-sidebar-widget.range ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.range ul li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 9px;
}
.single-sidebar-widget.range ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.range ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li span {
  position: absolute;
  right: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  text-align: center;
  color: #1f86ef;
  background-color: rgba(25, 103, 210, 0.1);
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li:hover a {
  color: #1f86ef;
}
.single-sidebar-widget.range ul li:hover span {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-sidebar-widget.keyword .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.location-style2 .form-control {
  border: unset;
  margin-bottom: 18px;
}
.single-sidebar-widget.location-style2 p {
  margin-bottom: 18px;
}
.single-sidebar-widget.location-style2 .range-slider-area {
  position: relative;
  min-height: 75px;
  padding-top: 10px;
}
.single-sidebar-widget.location-style2 .range-slider-area .ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  margin-bottom: 20px;
  border-radius: 30px;
  background: rgba(25, 103, 210, 0.2);
}
.single-sidebar-widget.location-style2 .range-slider-area .ui-slider .ui-slider-range {
  top: 0px;
  height: 5px;
  background: #1f86ef;
}
.single-sidebar-widget.location-style2 .range-slider-area .ui-state-default .ui-state-default, .single-sidebar-widget.location-style2 .range-slider-area .ui-widget-content .ui-state-default {
  position: absolute;
  top: 4px;
  width: 17px;
  height: 17px;
  background: #ffffff;
  border: 1px solid #1f86ef;
  box-sizing: border-box;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.single-sidebar-widget.location-style2 .range-slider-area .input-outer {
  display: flex;
  justify-content: center;
}
.single-sidebar-widget.location-style2 .range-slider-area .amount-outer {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 70px;
  padding: 0 18px;
  height: 30px;
  top: 8px;
  text-align: center;
  background: rgba(25, 103, 210, 0.2);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #1f86ef;
}
.single-sidebar-widget.location-style2 .range-slider-area .amount-outer .area-amount {
  margin-right: 7px;
}
.single-sidebar-widget.location-style2 .range-slider-area .amount {
  margin-right: 5px;
}
.single-sidebar-widget.location-style2 .range-slider-area .ui-state-default:last-child .ui-state-default, .single-sidebar-widget.location-style2 .range-slider-area .ui-state-default .salary-range .ui-state-default {
  display: block !important;
}
.single-sidebar-widget.location-style2 .range-slider-area .okm {
  background-color: rgba(25, 103, 210, 0.2);
  padding: 5px 10px;
  position: absolute;
  left: 0;
  bottom: 0px;
  color: #1f86ef;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}
.single-sidebar-widget.candidate-side-widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.candidate-side-widget ul li {
  list-style-type: none;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}
.single-sidebar-widget.candidate-side-widget ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: rgba(25, 103, 210, 0.3);
  left: 0;
  top: 7px;
  transition: all ease 0.5s;
}
.single-sidebar-widget.candidate-side-widget ul li:hover::before {
  background-color: #1f86ef;
}
.single-sidebar-widget.candidate-side-widget ul li a {
  color: #666666;
}
.single-sidebar-widget.candidate-side-widget ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.download .default-btn {
  margin-bottom: 25px;
  width: 100%;
}
.single-sidebar-widget.download .default-btn.btn2 {
  margin-bottom: 0;
  background-color: #ffffff;
  color: #202124;
}
.single-sidebar-widget.download .default-btn.btn2:hover {
  color: #ffffff;
}

/*
Team Style
======================================================*/
.single-team-card {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-team-card .team-img {
  transition: all ease 0.5s;
  overflow: hidden;
}
.single-team-card .team-img img {
  border-radius: 5px;
  transition: all ease 0.5s;
  overflow: hidden;
}
.single-team-card .team-content {
  padding: 15px 10px 10px 10px;
}
.single-team-card .team-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.single-team-card .team-content .social-content .social-control {
  position: relative;
  transition: all ease 0.5s;
  text-align: end;
  top: 4px;
  right: 10px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  background-color: rgba(25, 103, 210, 0.1);
  transition: all ease 0.5s;
}
.single-team-card .team-content .social-content .social-control:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-team-card .team-content .social-content .social-control .icon {
  text-align: center;
}
.single-team-card .team-content .social-content .social-control .social-icon {
  position: absolute;
  right: 0;
  bottom: 40px;
}
.single-team-card .team-content .social-content .social-control .social-icon ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li {
  margin-bottom: 8px;
  list-style-type: none;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li:nth-child(1) {
  transition-delay: 0.2s;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li:nth-child(2) {
  transition-delay: 0.3s;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li:nth-child(3) {
  transition-delay: 0.4s;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li:nth-child(4) {
  transition-delay: 0.5s;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li a {
  color: #1f86ef;
  height: 40px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  width: 40px;
  line-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}
.single-team-card .team-content .social-content .social-control .social-icon ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}
.single-team-card .team-content .social-content .social-control:hover .social-icon ul li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.single-team-card:hover .team-img img {
  transform: scale(1.03);
}

/*
Download Style
======================================================*/
.download-image {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-left: 60px;
}
.download-image .shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: -1;
}

.download-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.download-content p {
  margin-bottom: 20px;
}
.download-content h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.download-content .download-btn ul {
  padding-left: 0;
  margin-bottom: 0;
}
.download-content .download-btn ul li {
  display: inline-block;
  margin-right: 20px;
}
.download-content .download-btn ul li:last-child {
  margin-right: 0;
}

/*
Faq Area Style
======================================================*/
.faq-img {
  padding-right: 40px;
}

.faq-accordion .faq-title span {
  color: #1f86ef;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
}
.faq-accordion .faq-title h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 30px;
  border: none;
  border-radius: 7px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
  padding-left: 60px;
  transition: all ease 0.5s;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  font-size: 16px;
  transition: all ease 0.5s;
}
.faq-accordion .accordion .accordion-title.active i {
  background-color: #1f86ef;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
  color: #ffffff;
  font-family: "Font Awesome 6 Free";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  background-color: #ffffff;
}
.faq-accordion .accordion .accordion-content p {
  font-weight: 400;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Works Style
======================================================*/
.single-works-card {
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}
.single-works-card .icon {
  height: 70px;
  width: 70px;
  line-height: 78px;
  border-radius: 100%;
  background-color: #f0f5f7;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}
.single-works-card .icon .number {
  height: 22px;
  width: 22px;
  line-height: 22px;
  border-radius: 100%;
  background-color: #1f86ef;
  color: #ffffff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
}
.single-works-card .icon i {
  font-size: 35px;
  color: #1f86ef;
}
.single-works-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-works-card.style-2 {
  background-color: #ffffff;
}
.single-works-card:hover {
  transform: translateY(-10px);
}

/*
Blog Style
======================================================*/
.blog-top-content .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}
.blog-top-content .browse-btn a {
  color: #1f86ef;
  padding-bottom: 3px;
  font-weight: 600;
  border-bottom: 1px solid #1f86ef;
}

.single-blog-card {
  margin-bottom: 30px;
}
.single-blog-card .blog-img img {
  border-radius: 5px;
}
.single-blog-card .blog-content {
  padding-top: 30px;
}
.single-blog-card .blog-content .info-list {
  margin-bottom: 15px;
}
.single-blog-card .blog-content .info-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-blog-card .blog-content .info-list ul li {
  display: inline-block;
  margin-right: 15px;
  padding-left: 20px;
  position: relative;
}
.single-blog-card .blog-content .info-list ul li:last-child {
  margin-right: 0;
}
.single-blog-card .blog-content .info-list ul li a {
  color: #666666;
}
.single-blog-card .blog-content .info-list ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
  color: #1f86ef;
}
.single-blog-card .blog-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 32px;
}
.single-blog-card .blog-content h2 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-blog-card .blog-content h2 a:hover {
  color: #1f86ef;
}
.single-blog-card .blog-content p {
  margin-bottom: 20px;
}
.single-blog-card .blog-content .read-more {
  color: #202124;
  font-weight: 600;
  transition: all ease 0.5s;
}
.single-blog-card .blog-content .read-more:hover {
  color: #1f86ef;
}
.single-blog-card.style2 .blog-content {
  padding-top: 0;
}
.single-blog-card.style2 .blog-content .info-list ul li {
  font-size: 14px;
}
.single-blog-card.style2 .blog-content .info-list ul li i {
  top: 3px;
}
.single-blog-card.style2 .blog-content h2 {
  font-size: 20px;
  line-height: 30px;
}
.single-blog-card.style3 {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
}
.single-blog-card.style3 .blog-content {
  padding: 25px 20px 20px 20px;
}

.subscribe-area {
  padding-top: 60px;
  padding-bottom: 30px;
}

.subsceibe-left-content {
  margin-bottom: 30px;
}
.subsceibe-left-content h2 {
  font-size: 36px;
}

.subscribe-form {
  position: relative;
  margin-bottom: 30px;
}
.subscribe-form .form-control {
  border-color: transparent;
  height: 74px;
}
.subscribe-form .validation-danger {
  color: #f81815;
  padding-top: 5px;
}
.subscribe-form .default-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 15px 30px;
}

.blog-details .blog-details-top-content {
  margin-bottom: 30px;
}
.blog-details .blog-details-top-content .top-image {
  margin-bottom: 30px;
}
.blog-details .blog-details-top-content .info {
  margin-bottom: 15px;
}
.blog-details .blog-details-top-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .blog-details-top-content .info ul li {
  display: inline-block;
  margin-right: 15px;
  padding-left: 20px;
  position: relative;
}
.blog-details .blog-details-top-content .info ul li:last-child {
  margin-right: 0;
}
.blog-details .blog-details-top-content .info ul li a {
  color: #666666;
}
.blog-details .blog-details-top-content .info ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
  color: #1f86ef;
}
.blog-details .blog-details-top-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-details .blog-details-top-content p {
  margin-bottom: 20px;
}
.blog-details .quote {
  padding: 30px 40px 30px 110px;
  background-color: #f0f5f7;
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
}
.blog-details .quote p {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
}
.blog-details .quote .icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-details .blog-deails-content p {
  margin-bottom: 17px;
}
.blog-details .tag-and-share {
  background-color: #f0f5f7;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.blog-details .tag-and-share .tags ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .tag-and-share .tags ul li {
  display: inline-block;
  margin-right: 5px;
}
.blog-details .tag-and-share .tags ul li a {
  color: #666666;
  position: relative;
  transition: all ease 0.5s;
}
.blog-details .tag-and-share .tags ul li a:hover {
  color: #1f86ef;
}
.blog-details .tag-and-share .tags ul li a::before {
  position: absolute;
  content: ",";
  right: -3px;
}
.blog-details .tag-and-share .tags ul li i {
  color: #1f86ef;
  padding-right: 5px;
}
.blog-details .tag-and-share .share {
  text-align: end;
}
.blog-details .tag-and-share .share ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .tag-and-share .share ul li {
  display: inline-block;
  margin-right: 8px;
}
.blog-details .tag-and-share .share ul li:last-child {
  margin-right: 0;
}
.blog-details .tag-and-share .share ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.blog-details .tag-and-share .share ul li a:hover {
  color: #1f86ef;
}
.blog-details .reply-content {
  background-color: #f0f5f7;
  border-radius: 5px;
  padding: 30px;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.blog-details .reply-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-details .reply-content p {
  margin-bottom: 20px;
}
.blog-details .reply-content .form-group {
  margin-bottom: 25px;
}
.blog-details .reply-content .form-group .form-control {
  border: unset;
}

/*
Contact Style
======================================================*/
.contact-area {
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-area.style2 .contact-left-content h2 {
  color: #ffffff;
}
.contact-area.style2 .contact-btn .default-btn {
  background-color: #ffffff;
  color: #1f86ef;
  font-weight: 600;
}
.contact-area.style2 .contact-btn .default-btn::before {
  display: none;
}
.contact-area.style2 .contact-btn .default-btn::after {
  display: none;
}
.contact-area.style2 .contact-btn .default-btn:hover {
  background-color: #202124;
  color: #ffffff;
}

.contact-left-content h2 {
  font-size: 36px;
}

.contact-btn {
  text-align: end;
}

.single-contact-info-box {
  background-color: #f0f5f7;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content {
  padding-left: 70px;
  position: relative;
}
.single-contact-info-box .info-content .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  font-size: 24px;
  color: #ffffff;
  background-color: #1f86ef;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content span {
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content a {
  display: block;
  color: #666666;
  margin-bottom: 3px;
  transition: all ease 0.5s;
}
.single-contact-info-box:hover {
  background-color: #1f86ef;
}
.single-contact-info-box:hover .icon {
  background-color: #ffffff;
  color: #1f86ef;
}
.single-contact-info-box:hover h3 {
  color: #ffffff;
}
.single-contact-info-box:hover span {
  color: #ffffff;
}
.single-contact-info-box:hover a {
  color: #ffffff;
}

.contact-map {
  margin-bottom: 30px;
}
.contact-map iframe {
  width: 100%;
  height: 510px;
}

.contact-form {
  background-color: #f0f5f7;
  padding: 50px;
  padding-bottom: 40px;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group .form-control {
  border: unset;
}
.contact-form .form-group .list-unstyled {
  color: #f81815;
  padding-top: 7px;
}
.contact-form .text-danger {
  color: #f81815;
  font-size: 20px;
  padding-top: 10px;
}

/*
Login Area Style
======================================================*/
.login {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.login h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}
.login h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #1f86ef;
  top: 48px;
}
.login .form-group {
  margin-bottom: 20px;
}
.login .form-check {
  margin-bottom: 30px;
}
.login .form-check .form-check-input:checked {
  background-color: #1f86ef;
}
.login .form-check .form-check-input:focus {
  box-shadow: none;
}
.login .default-btn {
  padding: 15px 40px;
  margin-bottom: 20px;
}
.login a {
  display: inherit;
  color: #666666;
  font-weight: 500;
}

/*
Register Area Style
======================================================*/
.register {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.register h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}
.register h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #1f86ef;
  top: 48px;
}
.register .form-group {
  margin-bottom: 20px;
}
.register .default-btn {
  padding: 15px 40px;
  margin-top: 20px;
}

/*
Password Area Style
======================================================*/
.password {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.password h3 {
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  position: relative;
}
.password h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #1f86ef;
  top: 48px;
}
.password .form-group {
  margin-bottom: 20px;
}
.password .default-btn {
  width: 100%;
}

/*
Privacy Policy Style
======================================================*/
.privacy-content {
  margin-bottom: 10px;
}
.privacy-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.privacy-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.privacy-content p {
  margin-bottom: 25px;
}
.privacy-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.privacy-content .list ul li {
  font-weight: 600;
  color: #202124;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}
.privacy-content .list ul li i {
  position: absolute;
  left: 0;
  color: #1f86ef;
  top: 6px;
  font-size: 14px;
}

/*
Terms & Condition Style
======================================================*/
.condition-content {
  margin-bottom: 10px;
}
.condition-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.condition-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.condition-content p {
  margin-bottom: 25px;
}
.condition-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.condition-content .list ul li {
  font-weight: 600;
  color: #202124;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}
.condition-content .list ul li i {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 14px;
  color: #1f86ef;
}

/*
Error Area Style
======================================================*/
.error-area {
  text-align: center;
}
.error-area .top-content {
  margin-bottom: 20px;
}
.error-area .top-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.error-area .top-content ul li {
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  line-height: 1;
  margin-right: 30px;
  color: #1f86ef;
}
.error-area .top-content ul li:first-child {
  color: #202124;
  transform: rotate(30deg);
  top: 15px;
}
.error-area .top-content ul li:last-child {
  color: #666666;
  transform: rotate(30deg);
  position: relative;
  top: 15px;
}
.error-area h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.error-area p {
  margin-bottom: 30px;
}

/*Coming Soon Style
======================================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
}
.coming-soon-area::before {
  position: absolute;
  content: "";
  height: 300px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #f8f8f8;
  z-index: -1;
}

.coming-soon-counter {
  max-width: 880px;
  margin: auto;
  border: 30px solid #ffffff;
  background-color: #f7f7f7;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  padding-top: 100px;
  padding-bottom: 80px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}
.coming-soon-counter::before {
  position: absolute;
  content: "";
  height: 100%;
  width: auto;
  left: -60px !important;
  right: 0;
  bottom: -60px;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  z-index: -1;
}
.coming-soon-counter .list ul {
  margin-bottom: 0;
  padding-left: 0;
}
.coming-soon-counter .list ul li {
  margin: 0 30px;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  color: #1f86ef;
}
.coming-soon-counter .list ul li span {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}
.coming-soon-counter .list ul li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 42px;
}
.coming-soon-counter .list ul li::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 55px;
}
.coming-soon-counter .list ul li:last-child::before {
  display: none;
}
.coming-soon-counter .list ul li:last-child::after {
  display: none;
}

.coming-soon-content {
  padding-top: 50px;
  max-width: 880px;
  margin: auto;
  text-align: center;
}
.coming-soon-content .top-content {
  max-width: 620px;
  margin: auto;
}
.coming-soon-content .top-content .coming-soon-logo {
  margin-bottom: 20px;
}
.coming-soon-content .top-content .coming-soon-logo .logo-2 {
  display: none;
}
.coming-soon-content .top-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}
.coming-soon-content .newsletter-form {
  position: relative;
  margin-bottom: 30px;
  z-index: 4;
}
.coming-soon-content .newsletter-form .form-control {
  height: 58px;
}
.coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  right: 5px;
  top: 5px;
}
.coming-soon-content .newsletter-form .default-btn:hover {
  background-color: #202124;
  color: #ffffff;
}
.coming-soon-content .newsletter-form .default-btn i {
  position: relative;
  top: 2px;
  padding-left: 7px;
}
.coming-soon-content .social-links ul {
  margin-bottom: 0;
  padding-left: 0;
}
.coming-soon-content .social-links ul li {
  display: inline-block;
  margin-right: 10px;
}
.coming-soon-content .social-links ul li:last-child {
  margin-right: 0;
}
.coming-soon-content .social-links ul li a {
  height: 45px;
  width: 45px;
  line-height: 48px;
  background-color: #ffffff;
  border-radius: 100%;
  color: #666666;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border: 1px solid #eeeeee;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  transition: all ease 0.5s;
}
.coming-soon-content .social-links ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  transform: translateY(-5px);
}

/*
Footer Style
======================================================*/
.bg-color {
  background-color: #1a1a1a;
}

.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget h3 {
  font-size: 22px;
  color: #ffffff;
  position: relative;
  margin-bottom: 45px;
}
.single-footer-widget h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 90px;
  background: #ffffff;
  opacity: 0.2;
  bottom: -15px;
  left: 0;
}
.single-footer-widget h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 40px;
  background: #1f86ef;
  bottom: -15px;
  left: 0;
}
.single-footer-widget.logo-content {
  padding-right: 100px;
}
.single-footer-widget.logo-content .footer-logo {
  margin-bottom: 30px;
}
.single-footer-widget.logo-content p {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 500;
}
.single-footer-widget.logo-content .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget.logo-content .social-content ul li {
  display: inline-block;
  margin-right: 7px;
}
.single-footer-widget.logo-content .social-content ul li:last-child {
  margin-right: 0;
}
.single-footer-widget.logo-content .social-content ul li span {
  color: #ffffff;
}
.single-footer-widget.logo-content .social-content ul li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #1f86ef;
  text-align: center;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  transition: all ease 0.5s;
}
.single-footer-widget.logo-content .social-content ul li a:hover {
  background: #1f86ef;
  color: #ffffff;
}
.single-footer-widget.quick-link ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget.quick-link ul li {
  margin-bottom: 13px;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.single-footer-widget.quick-link ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.single-footer-widget.quick-link ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.quick-link ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
  font-weight: 500;
}
.single-footer-widget.quick-link ul li a:hover {
  color: #1f86ef;
}
.single-footer-widget.info {
  padding-left: 70px;
}
.single-footer-widget.info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget.info ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}
.single-footer-widget.info ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.info ul li i {
  position: absolute;
  left: 0;
  color: #1f86ef;
  top: 2px;
}
.single-footer-widget.info ul li h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}
.single-footer-widget.info ul li span {
  color: #ffffff;
}
.single-footer-widget.info ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.single-footer-widget.info ul li a:hover {
  color: #1f86ef;
}

.copy-right {
  background-color: #1a1a1a;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.copy-right p {
  color: #ffffff;
}
.copy-right p span {
  color: #ffffff;
}
.copy-right p a {
  color: #ffffff;
  font-weight: 600;
  transition: all ease 0.5s;
}
.copy-right p a:hover {
  color: #1f86ef;
}

/*
Go To Top Style
======================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background-color: #1f86ef;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 50px;
  line-height: 45px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  background-color: #1f86ef;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.go-top:hover {
  color: #ffffff;
  background: #202124;
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i {
  color: #ffffff;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
}/*# sourceMappingURL=style.css.map */