body {
  line-height: 1.7;
  color: gray;
  font-weight: 300;
  font-size: 1rem;
  background-color: rgb(249, 249, 249);
  font-family: "Poppins", Sans-serif;
}
body.inner-page {
  color: #212529;
}
@media (max-width: 575px) {
  body {
    font-size: 0.9rem;
  }
}
:root {
  --main-color: #043199;
  --second-color: #0e0d3a;
  --third-color: #03e4ea;
}
input:focus {
  outline: none;
  border: none;
}
.required::after {
  content: " *";
  color: rgb(204, 0, 0);
}
.color-main {
  color: var(--main-color);
}
.color-second {
  color: var(--second-color);
}
.color-third {
  color: var(--third-color);
}
.bg-none {
  background: none;
}
.bg-main {
  background-color: var(--main-color);
}
.bg-second {
  background-color: var(--second-color);
}
.bg-third {
  background-color: var(--third-color);
}
.color--facebook {
  color: rgb(59, 89, 152) !important;
}
.color--twitter {
  color: rgb(0, 172, 237) !important;
}
.color--googleplus {
  color: rgb(221, 75, 57) !important;
}
.color--instagram {
  color: rgb(18, 86, 136) !important;
}
.color--pinterest {
  color: rgb(203, 32, 39) !important;
}
.color--dribbble {
  color: rgb(234, 76, 137) !important;
}
.color--behance {
  color: rgb(5, 62, 255) !important;
}
.color--linkedin {
  color: rgb(22, 133, 185) !important;
}
.bg--facebook {
  background: rgb(59, 89, 152) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--twitter {
  /* background: rgb(0, 172, 237) !important; */
  background: rgb(0, 0, 0) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--googleplus {
  background: rgb(221, 75, 57) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--instagram {
  background: linear-gradient(
    to right,
    rgb(255, 48, 25) 0%,
    rgb(201, 4, 119) 100%
  );
  color: rgb(255, 255, 255) !important;
}
.bg--pinterest {
  background: rgb(203, 32, 39) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--dribbble {
  background: rgb(234, 76, 137) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--behance {
  background: rgb(5, 62, 255) !important;
  color: rgb(255, 255, 255) !important;
}
.bg--linkedin {
  background: rgb(22, 133, 185) !important;
  color: rgb(255, 255, 255) !important;
}
::selection {
  color: rgb(255, 255, 255);
  background-color: var(--second-color) !important;
}
.hv-color-main:hover {
  color: var(--main-color);
}
.hv-color-second:hover {
  color: var(--second-color);
}
.hv-color-third:hover {
  color: var(--third-color);
}
.hv-bg-main:hover {
  background-color: var(--main-color);
}
.hv-bg-second:hover {
  background-color: var(--second-color);
}
.hv-bg-third:hover {
  background-color: var(--third-color);
}
.cursor-pointer {
  cursor: pointer;
}
::selection {
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
a {
  transition: all 0.3s ease 0s;
}
a:hover {
  text-decoration: none;
}
button:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: inherit;
}
ul {
  list-style: none;
}
.bg-light {
  background: rgb(246, 246, 246) !important;
}
.border-2 {
  border-width: 2px;
}
.text-black {
  color: rgb(0, 0, 0) !important;
}
.bg-black {
  background: rgb(0, 0, 0) !important;
}
.color-black-opacity-5 {
  color: rgba(0, 0, 0, 0.5);
}
.color-white-opacity-5 {
  color: rgba(255, 255, 255, 0.5);
}
.logo {
  position: relative;
  z-index: 1;
  width: 90px;
  height: auto;
}
.inner-page .logo {
  width: 70px;
}
.text-20 {
  font-size: 20px;
}
.site-wrap::before {
  transition: all 0.3s ease-in-out 0s;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  inset: 0px;
  opacity: 0;
  visibility: hidden;
}
.offcanvas-menu .site-wrap {
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.offcanvas-menu .site-wrap::before {
  opacity: 1;
  visibility: visible;
}
.offcanvas-menu {
  position: relative;
}
.offcanvas-menu::after {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 21;
  background: rgba(0, 0, 0, 0.2);
}
.btn {
  font-size: 16px;
  border-radius: 5px;
  padding: 5px 20px;
}
@media (max-width: 575px) {
  .btn {
    font-size: 12px;
  }
}
.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  box-shadow: none !important;
}
.btn.btn-primary {
  background: #043199;
  border-color: #043199;
  color: rgb(255, 255, 255);
  position: relative;
  top: 0px;
  transition: all 0.3s ease 0s;
  box-shadow: rgba(66, 133, 244, 0.2) 0px 4px 20px -5px;
}
.btn.btn-primary:hover {
  top: -2px;
  background: #0881d7;
  border-color: #0881d7;
  color: rgb(255, 255, 255);
  box-shadow: rgba(66, 133, 244, 0.3) 0px 5px 30px -5px !important;
}
.line-height-1 {
  line-height: 1 !important;
}
.bg-black {
  background: rgb(0, 0, 0);
}
.form-control {
  height: 43px;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}
.form-control:active,
.form-control:focus {
  border-color: rgb(46, 177, 84);
}
.form-control:hover,
.form-control:active,
.form-control:focus {
  box-shadow: none !important;
}
.site-section.site-section-sm {
  padding: 4em 0px;
}
.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .site-section-heading {
    font-size: 3rem;
  }
}
.site-section.bg-image2 {
  background-image: url(../images/Home-bg-1-scaled.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.border-top {
  border-top: 1px solid rgb(237, 240, 245) !important;
}
.bg-text-line {
  display: inline;
  background: rgb(0, 0, 0);
  box-shadow: rgb(0, 0, 0) 20px 0px 0px, rgb(0, 0, 0) -20px 0px 0px;
}
.text-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5);
}
.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5);
}
.hover-bg-enlarge {
  overflow: hidden;
  position: relative;
}
@media (max-width: 991.98px) {
  .hover-bg-enlarge {
    height: auto !important;
  }
}
.hover-bg-enlarge > div {
  transform: scale(1);
  transition: all 0.8s ease-in-out 0s;
}
.hover-bg-enlarge:hover > div,
.hover-bg-enlarge:focus > div,
.hover-bg-enlarge:active > div {
  transform: scale(1.2);
}
@media (max-width: 991.98px) {
  .hover-bg-enlarge .bg-image-md-height {
    height: 300px !important;
  }
}
.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg-image.overlay {
  position: relative;
}
.bg-image.overlay::after {
  position: absolute;
  content: "";
  inset: 0px;
  z-index: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.bg-image > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .img-md-fluid {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .display-1,
  .display-3 {
    font-size: 3rem;
  }
}
.play-single-big {
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  color: rgb(255, 255, 255) !important;
}
.play-single-big > span {
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
}
.play-single-big:hover {
  width: 120px;
  height: 120px;
}
.overlap-to-top {
  margin-top: -150px;
}
.ul-check {
  margin-bottom: 50px;
}
.ul-check li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.ul-check li::before {
  left: 0px;
  font-size: 20px;
  top: -0.3rem;
  font-family: icomoon;
  content: "î—Š";
  position: absolute;
}
.ul-check.white li::before {
  color: rgb(255, 255, 255);
}
.ul-check.success li::before {
  color: rgb(139, 195, 74);
}
.ul-check.primary li::before {
  color: rgb(66, 133, 244);
}
.select-wrap,
.wrap-icon {
  position: relative;
}
.select-wrap .icon,
.wrap-icon .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}
.select-wrap select,
.wrap-icon select {
  appearance: none;
  width: 100%;
}
.login-drop a {
  font-size: 14px;
  display: block !important;
  padding: 9px 13px !important;
  color: #000;
}
.login-drop a:hover {
  background-color: rgb(248, 249, 250);
  color: var(--main-color);
}
.login-drop {
  width: 160px !important;
  padding: 5px 0px !important;
}
.lang-drop {
  width: 120px !important;
  padding: 5px 0px !important;
}
.lang-drop a {
  text-align: start;
}
.lang-drop a img {
  margin: 0px 3px;
}
.emp-drop a {
}
em {
  font-family: Besley, serif;
  color: inherit;
}
.ibhire-word em {
  font-family: Besley, serif;
  color: inherit;
}
header .saudi-vision {
  border-left: 1px solid #afabaf;
  padding: 0 10px;
}
.site-menu .dropdown img,
.site-mobile-menu-body img {
  height: 20px;
  width: 20px;
}
.site-mobile-menu {
  width: 250px;
  position: fixed;
  right: 0px;
  z-index: 2000;
  padding-top: 20px;
  background: rgb(255, 255, 255);
  height: calc(100vh);
  transform: translateX(110%);
  box-shadow: rgba(0, 0, 0, 0.1) -10px 0px 20px -10px;
  transition: all 0.3s ease-in-out 0s;
}
.offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}
.site-mobile-menu .col-6 {
  margin-top: 0px !important;
}
@media (max-width: 575px) {
  .site-menu-toggle span {
    font-size: 18px;
  }
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1000;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  color: var(--third-color);
  font-size: 20px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  font-size: 23px;
  color: var(--main-color) !important;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
  position: relative;
  padding: 0px 20px 150px;
  height: calc(100vh - 52px);
  overflow: auto !important;
}
.site-mobile-menu .site-nav-wrap {
  padding: 0px;
  margin: 0px;
  list-style: none;
  position: relative;
}
.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: rgb(33, 37, 41);
}
.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--main-color) !important;
}
.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}
.site-mobile-menu .site-nav-wrap li .active {
  color: var(--main-color) !important;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: rgb(248, 249, 250);
}
.site-mobile-menu .site-nav-wrap .arrow-collapse::before {
  font-size: 12px;
  z-index: 20;
  font-family: icomoon;
  content: "ï¸";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: all 0.3s ease 0s;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed::before {
  transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > * {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .site-mobile-menu .site-nav-wrap > li > a {
    font-size: 13px;
  }
}
.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0px;
  margin: 0px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}
.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}
.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
  box-shadow: rgb(224, 224, 224) 0px 7px 9px;
  display: flex;
  align-items: center;
  height: 75px;
}
@media (max-width: 991.98px) {
  .sticky-wrapper {
    box-shadow: none;
  }
}
.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.sticky-wrapper .col-6 {
  margin-top: 0px !important;
}
.layout-switcher-left {
  text-align: start;
}
.site-blocks-cover {
  background-size: 120% 200%;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
}
.site-blocks-cover::after {
  position: absolute;
  background-image: url("../images/svg_1.svg");
  content: "";
  right: 0px;
}
.site-blocks-cover.overlay {
  position: relative;
}
.site-blocks-cover.overlay::before {
  position: absolute;
  content: "";
  inset: 0px;
  background: rgba(0, 0, 0, 0.2);
}
.site-blocks-cover .player {
  position: absolute;
  bottom: -250px;
  width: 100%;
}
.site-blocks-cover,
.site-blocks-cover > .container > .row {
  min-height: 600px;
  height: calc(100vh);
}
.site-blocks-cover.inner-page-cover,
.site-blocks-cover.inner-page-cover > .container > .row {
  min-height: 400px;
  height: calc(20vh);
}
.site-blocks-cover h1 {
  font-size: 3.5rem;
  color: rgb(0, 0, 0);
  font-weight: 900;
}
.top-section {
  min-height: 40px;
  padding: 0px;
  height: 53px;
}
@media (max-width: 415px) {
  .top-section {
    height: 90px;
  }
}
.top-section ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.top-section ul li a {
  color: rgb(79, 79, 79);
}
.top-section ul li:nth-of-type(4) a {
  background-color: rgb(255, 255, 255);
  color: rgb(10, 78, 92);
  border: 1px solid rgb(10, 78, 92);
  border-radius: 4px;
  padding: 5px 10px;
}
.top-section ul li:hover a {
  color: var(--main-color);
}
.top-section ul li:nth-of-type(4) a:hover {
  color: rgb(255, 255, 255);
  background-color: var(--second-color);
}
@media (max-width: 991.98px) {
  .site-blocks-cover h1 {
    font-size: 2rem;
  }
}
.site-blocks-cover p {
  color: rgb(108, 117, 125);
  font-size: 1rem;
  font-weight: 300;
}
.site-blocks-cover .intro-text {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .display-1 {
    font-size: 3rem;
  }
}
.img-absolute {
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: 60%;
  transform: translateY(-50%) translateX(30%);
}
.img-absolute img {
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .img-absolute {
    position: relative;
    top: auto;
    transform: translateY(0%) translateX(0%);
    margin-bottom: 30px;
  }
}
.site-block-subscribe .btn {
  padding-left: 20px;
  padding-right: 20px;
}
.site-block-subscribe .form-control {
  font-weight: 300;
  height: 80px;
  font-size: 22px;
  color: rgb(255, 255, 255);
  padding-left: 30px;
  padding-right: 30px;
  border-color: rgb(255, 255, 255) !important;
}
.site-block-subscribe .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 200;
  font-style: italic;
}
.bg-light {
  background: rgb(204, 204, 204);
}
.team-member {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
}
.team-member img {
  transition: all 0.3s ease 0s;
  transform: scale(1);
}
.team-member::before {
  position: absolute;
  content: "";
  inset: 0px;
  background: rgba(66, 133, 244, 0.8);
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.team-member .text {
  top: 50%;
  text-align: center;
  position: absolute;
  padding: 20px;
  transform: translateY(-30%);
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  color: rgb(255, 255, 255);
}
.team-member:hover::before,
.team-member:focus::before,
.team-member:active::before {
  opacity: 1;
  visibility: visible;
}
.team-member:hover img,
.team-member:focus img,
.team-member:active img {
  transform: scale(1.1);
}
.team-member:hover .text,
.team-member:focus .text,
.team-member:active .text {
  transform: translateY(-50%);
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
  z-index: 4;
}
.feature-blocks-1 {
  position: relative;
  margin-top: -70px;
  z-index: 2;
  color: rgb(153, 153, 153);
}
.feature-blocks-1.no-margin-top {
  margin-top: 0px;
}
.feature-blocks-1 .feature-block-1 {
  position: relative;
  top: 0px;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  z-index: 1;
}
.feature-blocks-1 .feature-block-1.bg {
  position: relative;
  background-size: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
}
.feature-blocks-1 .feature-block-1 .text {
  z-index: 10;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.feature-blocks-1 .feature-block-1::before {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 1;
  background: transparent;
  transition: all 0.3s ease-in-out 0s;
}
.feature-blocks-1 .feature-block-1 p {
  color: rgb(204, 204, 204);
}
.feature-blocks-1 .feature-block-1:hover,
.feature-blocks-1 .feature-block-1:focus,
.feature-blocks-1 .feature-block-1:active {
  top: -10px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 40px -5px;
}
.feature-blocks-1 .feature-block-1:hover .text,
.feature-blocks-1 .feature-block-1:focus .text,
.feature-blocks-1 .feature-block-1:active .text {
  opacity: 1;
  visibility: visible;
}
.feature-blocks-1 .feature-block-1:hover.bg,
.feature-blocks-1 .feature-block-1:focus.bg,
.feature-blocks-1 .feature-block-1:active.bg {
  position: relative;
  background-size: cover;
  transform: scale(1.1);
  z-index: 2;
}
.feature-blocks-1 .feature-block-1:hover::before,
.feature-blocks-1 .feature-block-1:focus::before,
.feature-blocks-1 .feature-block-1:active::before {
  background: rgba(0, 0, 0, 0.9);
}
.site-blocks-vs .bg-image {
  padding-top: 3em;
  padding-bottom: 3em;
}
@media (min-width: 992px) {
  .site-blocks-vs .bg-image {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
.site-blocks-vs .image {
  width: 80px;
  -webkit-box-flex: 0;
  flex: 0 0 80px;
}
@media (max-width: 991.98px) {
  .site-blocks-vs .image {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.site-blocks-vs .image img {
  border-radius: 50%;
}
.site-blocks-vs .image.image-small {
  width: 50px;
  -webkit-box-flex: 0;
  flex: 0 0 50px;
}
.site-blocks-vs .country {
  color: rgba(255, 255, 255, 0.7);
}
.match-entry {
  position: relative;
  transition: all 0.2s ease-in-out 0s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.match-entry .small {
  color: rgb(204, 204, 204);
  font-weight: normal;
  letter-spacing: 0.15em;
}
.match-entry:hover {
  transform: scale(1.05);
  z-index: 90;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 40px -5px;
}
.post-entry {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(230, 230, 230);
}
.post-entry,
.post-entry .text {
  border-radius: 4px;
  border-top: none !important;
}
.post-entry .date {
  color: rgb(204, 204, 204);
  font-weight: normal;
  letter-spacing: 0.1em;
}
.post-entry .image {
  overflow: hidden;
  position: relative;
}
.post-entry .image img {
  transition: all 0.3s ease 0s;
  transform: scale(1);
}
.post-entry:hover .image img,
.post-entry:active .image img,
.post-entry:focus .image img {
  transform: scale(1.2);
}
.site-block-tab .nav-item {
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0px 20px;
}
.site-block-tab .nav-item:first-child {
  margin-left: 0px !important;
}
.site-block-tab .nav-item > a {
  border-bottom: 2px solid transparent;
  font-weight: bold;
  color: rgb(204, 204, 204);
  padding-left: 0px !important;
  background: none !important;
  padding-right: 0px !important;
  border-radius: 0px !important;
}
.site-block-tab .nav-item > a:hover,
.site-block-tab .nav-item > a.active {
  border-bottom: 2px solid rgb(66, 133, 244);
  color: rgb(0, 0, 0);
}
.block-13,
.slide-one-item {
  position: relative;
  z-index: 1;
}
.block-13 .owl-nav,
.slide-one-item .owl-nav {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
}
.block-13 .owl-nav .owl-prev,
.block-13 .owl-nav .owl-next,
.slide-one-item .owl-nav .owl-prev,
.slide-one-item .owl-nav .owl-next {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 30px;
  color: rgb(0, 0, 0);
}
.block-13 .owl-nav .owl-prev.disabled,
.block-13 .owl-nav .owl-next.disabled,
.slide-one-item .owl-nav .owl-prev.disabled,
.slide-one-item .owl-nav .owl-next.disabled {
  opacity: 0.2;
}
.slide-one-item .owl-dots {
  text-align: center;
}
.slide-one-item .owl-dots .owl-dot {
  display: inline-block;
  margin: 4px;
}
.slide-one-item .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(222, 226, 230);
}
.slide-one-item .owl-dots .owl-dot.active span {
  background: rgb(66, 133, 244);
}
.block-12 {
  position: relative;
}
.block-12 figure {
  position: relative;
}
.block-12 figure::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.block-12 .text-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
}
.block-12 .text-overlay h2 {
  color: rgb(255, 255, 255);
}
.block-12 .text {
  position: relative;
  top: -100px;
}
.block-12 .text .meta {
  text-transform: uppercase;
  padding-left: 40px;
  color: rgb(255, 255, 255);
  display: block;
  margin-bottom: 20px;
}
.block-12 .text .text-inner {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px -5px;
  background: rgb(255, 255, 255);
  padding: 10px;
  margin-right: 30px;
  position: relative;
}
@media (min-width: 576px) {
  .block-12 .text .text-inner {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .block-12 .text .text-inner {
    padding: 30px 40px;
  }
}
.block-12 .text .text-inner::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 4px;
  margin-top: -4px;
  background: rgb(66, 133, 244);
  top: 0px;
}
.block-12 .text .text-inner .heading {
  font-size: 20px;
  margin: 0px;
  padding: 0px;
}
.block-16 figure {
  position: relative;
}
.block-16 figure .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  width: 70px;
  height: 70px;
  background: rgb(255, 255, 255);
  display: block;
  border-radius: 50%;
  opacity: 1;
  color: rgb(66, 133, 244) !important;
}
.block-16 figure .play-button:hover {
  opacity: 1;
}
.block-16 figure .play-button > span {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-60%, -50%);
}
.block-25 ul,
.block-25 ul li {
  padding: 0px;
  margin: 0px;
}
.block-25 ul li a .image {
  -webkit-box-flex: 0;
  flex: 0 0 90px;
}
.block-25 ul li a .image img {
  border-radius: 4px;
  max-width: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
.block-25 ul li a .text .heading {
  font-size: 18px;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  transition: all 0.3s ease 0s;
  color: rgb(153, 153, 153);
}
.block-25 ul li a .meta {
  color: rgb(66, 133, 244);
}
.block-25 ul li a:hover img {
  opacity: 0.5;
}
.block-25 ul li a:hover .text .heading {
  color: rgb(255, 255, 255);
}
#date-countdown .countdown-block {
  color: rgb(179, 179, 179);
}
#date-countdown .label {
  font-size: 40px;
  color: rgb(0, 0, 0);
}
.next-match .image {
  width: 50px;
  border-radius: 50%;
}
.player {
  position: relative;
}
.player img {
  max-width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.player .team-number {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgb(66, 133, 244);
  border-radius: 50%;
  color: rgb(255, 255, 255);
}
.player .team-number > span {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.player h2 {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.player .position {
  font-size: 14px;
  color: rgb(179, 179, 179);
  text-transform: uppercase;
}
.site-block-27 ul,
.site-block-27 ul li {
  padding: 0px;
  margin: 0px;
}
.site-block-27 ul li {
  display: inline-block;
  margin-bottom: 4px;
}
.site-block-27 ul li a,
.site-block-27 ul li span {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(204, 204, 204);
}
.site-block-27 ul li.active a,
.site-block-27 ul li.active span {
  background: rgb(66, 133, 244);
  color: rgb(255, 255, 255);
  border: 1px solid transparent;
}
.site-block-feature-7 .icon {
  transition: all 0.2s ease-in-out 0s;
  position: relative;
  transform: scale(1);
}
.site-block-feature-7:hover .icon,
.site-block-feature-7:focus .icon,
.site-block-feature-7:active .icon {
  transform: scale(1.2);
}
.unit-1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}
.unit-1::after {
  content: "";
  z-index: 1;
  position: absolute;
  inset: 0px;
  background: linear-gradient(
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.unit-1 img {
  object-fit: cover;
  transform: scale(1);
}
.unit-1 img,
.unit-1 .unit-1-text {
  transition: all 0.3s ease-in-out 0s;
}
.unit-1 .unit-1-text {
  z-index: 2;
  position: absolute;
  bottom: -90px;
  color: rgb(255, 255, 255);
  display: block;
  width: 100%;
}
.unit-1 .unit-1-text .unit-1-heading {
  font-size: 1.5rem;
  position: relative;
}
.unit-1 p {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  color: rgba(255, 255, 255, 0.5);
}
.unit-1:hover p {
  opacity: 1;
  visibility: visible;
}
.unit-1:hover .unit-1-text {
  bottom: 30px;
}
.unit-1:hover img {
  transform: scale(1.05);
}
.overlap-section {
  margin-top: -150px;
  position: relative;
  z-index: 9;
}
.text-box {
  box-shadow: rgba(130, 136, 184, 0.2) 0px 5px 10px 0px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 0px;
  padding: 23px;
  text-align: center;
  cursor: pointer;
  margin: 0px 7px;
  height: 235px;
}
.text-box:hover {
  top: -7px;
  box-shadow: rgba(130, 136, 184, 0.4) 0px 5px 10px 0px;
}
.owl-item {
  height: 100% !important;
}
.unit-4 {
  padding: 50px 30px 40px;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
  background: rgb(255, 255, 255);
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 0px;
  text-align: center;
  height: 100%;
}
.unit-4 {
  color: #0c1832;
}
.user-experience-home .unit-4 {
  box-shadow: rgb(173, 171, 171) 0px 3px 15px 0px;
}
.unit-5 {
  padding: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(107, 107, 107, 0.4) 0px 0px 6px 0px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 0px;
  margin-bottom: 2em;
  text-align: left;
  overflow: hidden;
}
.jsDashboard-boxesContainer {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  border: 1px solid rgb(222, 226, 230);
}
.jsDashboard-boxesContainer .profile {
  border: 1px solid rgb(222, 226, 230);
}
.jsDashboard-boxesContainer .profile .avatar a {
  height: 40px;
  width: 40px;
  background-color: var(--second-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(255, 255, 255);
}
.jsDashboard-boxesContainer .profile .avatar a span {
  margin-top: -3px;
}
.jsDashboard-boxesContainer h3 {
  font-size: 17px;
  color: rgb(79, 79, 79);
  margin-top: 20px;
}
.j-ov-latest-jobs .j-ov-latest-job {
  margin-bottom: 5px;
  padding: 9px;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 5px;
}
.j-ov-latest-jobs .j-ov-latest-job:hover {
  background-color: rgb(249, 249, 249);
}
.j-ov-latest-jobs .j-ov-latest-job img {
  height: 40px;
  width: 40px;
}
.j-ov-latest-jobs .j-ov-latest-job h6 {
  font-size: 14px;
}
.j-ov-latest-jobs.dash .j-ov-latest-job a {
  color: rgb(79, 79, 79);
}
.j-ov-latest-jobs.dash .j-ov-latest-job span,
.j-ov-latest-jobs.dash .j-ov-latest-job p,
.j-ov-latest-jobs.dash .j-ov-latest-job i {
  font-size: 13px;
  opacity: 0.8;
}
.j-ov-latest-jobs.dash .j-ov-latest-job .date {
  color: var(--main-color);
  opacity: 1;
}
.dashboard-content .jobSbox {
  border: 1px solid rgb(222, 226, 230);
  box-shadow: none;
}
.rect-auto,
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}
.pie,
.c100 .bar,
.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
  position: absolute;
  border: 0.09em solid rgb(0, 0, 0);
  width: 0.82em;
  height: 0.82em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  transform: rotate(0deg);
}
.pie-fill,
.c100.p51 .bar::after,
.c100.p51 .fill,
.c100.p52 .bar::after,
.c100.p52 .fill,
.c100.p53 .bar::after,
.c100.p53 .fill,
.c100.p54 .bar::after,
.c100.p54 .fill,
.c100.p55 .bar::after,
.c100.p55 .fill,
.c100.p56 .bar::after,
.c100.p56 .fill,
.c100.p57 .bar::after,
.c100.p57 .fill,
.c100.p58 .bar::after,
.c100.p58 .fill,
.c100.p59 .bar::after,
.c100.p59 .fill,
.c100.p60 .bar::after,
.c100.p60 .fill,
.c100.p61 .bar::after,
.c100.p61 .fill,
.c100.p62 .bar::after,
.c100.p62 .fill,
.c100.p63 .bar::after,
.c100.p63 .fill,
.c100.p64 .bar::after,
.c100.p64 .fill,
.c100.p65 .bar::after,
.c100.p65 .fill,
.c100.p66 .bar::after,
.c100.p66 .fill,
.c100.p67 .bar::after,
.c100.p67 .fill,
.c100.p68 .bar::after,
.c100.p68 .fill,
.c100.p69 .bar::after,
.c100.p69 .fill,
.c100.p70 .bar::after,
.c100.p70 .fill,
.c100.p71 .bar::after,
.c100.p71 .fill,
.c100.p72 .bar::after,
.c100.p72 .fill,
.c100.p73 .bar::after,
.c100.p73 .fill,
.c100.p74 .bar::after,
.c100.p74 .fill,
.c100.p75 .bar::after,
.c100.p75 .fill,
.c100.p76 .bar::after,
.c100.p76 .fill,
.c100.p77 .bar::after,
.c100.p77 .fill,
.c100.p78 .bar::after,
.c100.p78 .fill,
.c100.p79 .bar::after,
.c100.p79 .fill,
.c100.p80 .bar::after,
.c100.p80 .fill,
.c100.p81 .bar::after,
.c100.p81 .fill,
.c100.p82 .bar::after,
.c100.p82 .fill,
.c100.p83 .bar::after,
.c100.p83 .fill,
.c100.p84 .bar::after,
.c100.p84 .fill,
.c100.p85 .bar::after,
.c100.p85 .fill,
.c100.p86 .bar::after,
.c100.p86 .fill,
.c100.p87 .bar::after,
.c100.p87 .fill,
.c100.p88 .bar::after,
.c100.p88 .fill,
.c100.p89 .bar::after,
.c100.p89 .fill,
.c100.p90 .bar::after,
.c100.p90 .fill,
.c100.p91 .bar::after,
.c100.p91 .fill,
.c100.p92 .bar::after,
.c100.p92 .fill,
.c100.p93 .bar::after,
.c100.p93 .fill,
.c100.p94 .bar::after,
.c100.p94 .fill,
.c100.p95 .bar::after,
.c100.p95 .fill,
.c100.p96 .bar::after,
.c100.p96 .fill,
.c100.p97 .bar::after,
.c100.p97 .fill,
.c100.p98 .bar::after,
.c100.p98 .fill,
.c100.p99 .bar::after,
.c100.p99 .fill,
.c100.p100 .bar::after,
.c100.p100 .fill {
  transform: rotate(180deg);
}
.wrapper {
  width: 1200px;
  margin: 0px auto;
}
p.profile-strength {
  font-size: 12px;
  text-align: center;
  padding: 5px 0px;
}
.c100 {
  position: relative;
  font-size: 70px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: auto;
  background-color: rgb(223, 232, 237);
}
.c100 *,
.c100 ::before,
.c100 ::after {
  box-sizing: content-box;
}
.c100 > span {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 5em;
  line-height: 5em;
  font-size: 0.2em;
  color: rgb(60, 71, 97);
  display: block;
  text-align: center;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.c100::after {
  position: absolute;
  top: 0.09em;
  left: 0.09em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 0.82em;
  height: 0.82em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}
.c100 .slice {
  position: absolute;
  width: 1em;
  height: 1em;
  clip: rect(0em, 1em, 1em, 0.5em);
}
.c100[data-strenth="1"] .bar {
  transform: rotate(3.6deg);
}
.c100[data-strenth="2"] .bar {
  transform: rotate(7.2deg);
}
.c100[data-strenth="3"] .bar {
  transform: rotate(10.8deg);
}
.c100[data-strenth="4"] .bar {
  transform: rotate(14.4deg);
}
.c100[data-strength="5"] .bar {
  transform: rotate(18deg);
}
.c100[data-strength="6"] .bar {
  transform: rotate(21.6deg);
}
.c100[data-strength="7"] .bar {
  transform: rotate(25.2deg);
}
.c100[data-strength="8"] .bar {
  transform: rotate(28.8deg);
}
.c100[data-strength="9"] .bar {
  transform: rotate(32.4deg);
}
.c100[data-strength="10"] .bar {
  transform: rotate(36deg);
}
.c100[data-strength="11"] .bar {
  transform: rotate(39.6deg);
}
.c100[data-strength="12"] .bar {
  transform: rotate(43.2deg);
}
.c100[data-strength="13"] .bar {
  transform: rotate(46.8deg);
}
.c100[data-strength="14"] .bar {
  transform: rotate(50.4deg);
}
.c100[data-strength="15"] .bar {
  transform: rotate(54deg);
}
.c100[data-strength="16"] .bar {
  transform: rotate(57.6deg);
}
.c100[data-strength="17"] .bar {
  transform: rotate(61.2deg);
}
.c100[data-strength="18"] .bar {
  transform: rotate(64.8deg);
}
.c100[data-strength="19"] .bar {
  transform: rotate(68.4deg);
}
.c100[data-strength="20"] .bar {
  transform: rotate(72deg);
}
.c100[data-strength="21"] .bar {
  transform: rotate(75.6deg);
}
.c100[data-strength="22"] .bar {
  transform: rotate(79.2deg);
}
.c100[data-strength="23"] .bar {
  transform: rotate(82.8deg);
}
.c100[data-strength="24"] .bar {
  transform: rotate(86.4deg);
}
.c100[data-strength="25"] .bar {
  transform: rotate(90deg);
}
.c100[data-strength="26"] .bar {
  transform: rotate(93.6deg);
}
.c100[data-strength="27"] .bar {
  transform: rotate(97.2deg);
}
.c100[data-strength="28"] .bar {
  transform: rotate(100.8deg);
}
.c100[data-strength="29"] .bar {
  transform: rotate(104.4deg);
}
.c100[data-strength="30"] .bar {
  transform: rotate(108deg);
}
.c100[data-strength="31"] .bar {
  transform: rotate(111.6deg);
}
.c100[data-strength="32"] .bar {
  transform: rotate(115.2deg);
}
.c100[data-strength="33"] .bar {
  transform: rotate(118.8deg);
}
.c100.p34 .bar {
  transform: rotate(122.4deg);
}
.c100[data-strength="35"] .bar {
  transform: rotate(126deg);
}
.c100[data-strength="36"] .bar {
  transform: rotate(129.6deg);
}
.c100[data-strength="37"] .bar {
  transform: rotate(133.2deg);
}
.c100[data-strength="38"] .bar {
  transform: rotate(136.8deg);
}
.c100[data-strength="39"] .bar {
  transform: rotate(140.4deg);
}
.c100[data-strength="40"] .bar {
  transform: rotate(144deg);
}
.c100[data-strength="41"] .bar {
  transform: rotate(147.6deg);
}
.c100[data-strength="42"] .bar {
  transform: rotate(151.2deg);
}
.c100[data-strength="43"] .bar {
  transform: rotate(154.8deg);
}
.c100[data-strength="44"] .bar {
  transform: rotate(158.4deg);
}
.c100[data-strength="45"] .bar {
  transform: rotate(162deg);
}
.c100[data-strength="46"] .bar {
  transform: rotate(165.6deg);
}
.c100[data-strength="47"] .bar {
  transform: rotate(169.2deg);
}
.c100[data-strength="48"] .bar {
  transform: rotate(172.8deg);
}
.c100[data-strength="49"] .bar {
  transform: rotate(176.4deg);
}
.c100[data-strength="50"] .bar {
  transform: rotate(180deg);
}
.c100[data-strength="51"] .bar {
  transform: rotate(183.6deg);
}
.c100[data-strength="52"] .bar {
  transform: rotate(187.2deg);
}
.c100[data-strength="53"] .bar {
  transform: rotate(190.8deg);
}
.c100[data-strength="54"] .bar {
  transform: rotate(194.4deg);
}
.c100[data-strength="55"] .bar {
  transform: rotate(198deg);
}
.c100[data-strength="56"] .bar {
  transform: rotate(201.6deg);
}
.c100[data-strength="57"] .bar {
  transform: rotate(205.2deg);
}
.c100[data-strength="58"] .bar {
  transform: rotate(208.8deg);
}
.c100[data-strength="59"] .bar {
  transform: rotate(212.4deg);
}
.c100[data-strength="60"] .bar {
  transform: rotate(216deg);
}
.c100[data-strength="61"] .bar {
  transform: rotate(219.6deg);
}
.c100[data-strength="62"] .bar {
  transform: rotate(223.2deg);
}
.c100[data-strength="63"] .bar {
  transform: rotate(226.8deg);
}
.c100[data-strength="64"] .bar {
  transform: rotate(230.4deg);
}
.c100[data-strength="65"] .bar {
  transform: rotate(234deg);
}
.c100[data-strength="66"] .bar {
  transform: rotate(237.6deg);
}
.c100[data-strength="67"] .bar {
  transform: rotate(241.2deg);
}
.c100[data-strength="68"] .bar {
  transform: rotate(244.8deg);
}
.c100[data-strength="69"] .bar {
  transform: rotate(248.4deg);
}
.c100[data-strength="70"] .bar {
  transform: rotate(252deg);
}
.c100[data-strength="71"] .bar {
  transform: rotate(255.6deg);
}
.c100[data-strength="72"] .bar {
  transform: rotate(259.2deg);
}
.c100[data-strength="73"] .bar {
  transform: rotate(262.8deg);
}
.c100[data-strength="74"] .bar {
  transform: rotate(266.4deg);
}
.c100[data-strength="75"] .bar {
  transform: rotate(270deg);
}
.c100[data-strength="76"] .bar {
  transform: rotate(273.6deg);
}
.c100[data-strength="77"] .bar {
  transform: rotate(277.2deg);
}
.c100[data-strength="78"] .bar {
  transform: rotate(280.8deg);
}
.c100[data-strength="79"] .bar {
  transform: rotate(284.4deg);
}
.c100[data-strength="80"] .bar {
  transform: rotate(288deg);
}
.c100[data-strength="81"] .bar {
  transform: rotate(291.6deg);
}
.c100[data-strength="82"] .bar {
  transform: rotate(295.2deg);
}
.c100[data-strength="83"] .bar {
  transform: rotate(298.8deg);
}
.c100[data-strength="84"] .bar {
  transform: rotate(302.4deg);
}
.c100[data-strength="85"] .bar {
  transform: rotate(306deg);
}
.c100[data-strength="86"] .bar {
  transform: rotate(309.6deg);
}
.c100[data-strength="87"] .bar {
  transform: rotate(313.2deg);
}
.c100[data-strength="88"] .bar {
  transform: rotate(316.8deg);
}
.c100[data-strength="89"] .bar {
  transform: rotate(320.4deg);
}
.c100[data-strength="90"] .bar {
  transform: rotate(324deg);
}
.c100[data-strength="91"] .bar {
  transform: rotate(327.6deg);
}
.c100[data-strength="92"] .bar {
  transform: rotate(331.2deg);
}
.c100[data-strength="93"] .bar {
  transform: rotate(334.8deg);
}
.c100[data-strength="94"] .bar {
  transform: rotate(338.4deg);
}
.c100[data-strength="95"] .bar {
  transform: rotate(342deg);
}
.c100[data-strength="96"] .bar {
  transform: rotate(345.6deg);
}
.c100[data-strength="97"] .bar {
  transform: rotate(349.2deg);
}
.c100[data-strength="98"] .bar {
  transform: rotate(352.8deg);
}
.c100[data-strength="99"] .bar {
  transform: rotate(356.4deg);
}
.c100[data-strength="100"] .bar {
  transform: rotate(360deg);
}
.c100:hover {
  cursor: default;
}
.c100:hover > span {
  width: 3.33em;
  line-height: 3.33em;
  font-size: 0.3em;
  color: rgb(60, 71, 97);
}
.c100:hover::after {
  top: 0.07em;
  left: 0.07em;
  width: 0.86em;
  height: 0.86em;
}
.c100.strong .bar,
.c100.strong .fill {
  border-color: rgb(39, 183, 55) !important;
}
.c100.medium .bar,
.c100.medium .fill {
  border-color: rgb(255, 155, 32) !important;
}
.c100.weak .bar,
.c100.weak .fill {
  border-color: rgb(243, 48, 102) !important;
}
.profile_strenth {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 3px solid rgb(238, 238, 238);
  overflow: hidden;
  position: relative;
  margin: auto;
}
.percentage {
  height: 51%;
  bottom: 0px;
  left: 0px;
  width: 100%;
  position: absolute;
}
@media (max-width: 767px) {
  .dashboard-content .jobSbox.search {
    flex-direction: column-reverse;
    text-align: center;
  }
  .dashboard-content .jobSbox.search img {
    margin-bottom: 10px;
  }
}
.unit-4 .unit-4-icon {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -55px;
}
.unit-4 .unit-4-icon .icon-wrap {
  width: 155px;
  height: 115px;
  position: relative;
  display: inline-block;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(66, 133, 244, 0.4) 0px 4px 20px -5px;
  border-radius: 5%;
}
.unit-4 .unit-4-icon .icon-wrap span {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255) !important;
}
.unit-4 h3 {
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .unit-4 h3 {
    font-size: 18px;
  }
}
.unit-4 p {
  font-weight: 300;
  transition: all 0.3s ease 0s;
}
.unit-4 :last-child {
  margin-bottom: 0px;
}
.unit-4:hover {
  background: #03e4ea;
  background: #043199;
  box-shadow: rgba(66, 133, 244, 0.4) 0px 4px 20px -5px;
  top: -7px;
}
.icon-wrap .relative-top {
  position: relative;
  top: 18px;
  border-radius: 8px;
  width: 64px;
  height: auto;
}
.unit-4:hover .icon-wrap span {
  color: rgb(66, 133, 244) !important;
}
.unit-4:hover h3 {
  color: rgb(255, 255, 255);
}
.unit-4:hover p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.unit-4:hover p a {
  color: rgb(255, 255, 255);
}
.h-entry img {
  margin-bottom: 30px;
}
.h-entry .meta {
  color: rgb(179, 179, 179);
  font-size: 14px;
}
.h-entry h2 {
  font-size: 20px;
}
.overlap-left {
  margin-left: -100px;
}
@media (max-width: 991.98px) {
  .overlap-left {
    margin-left: 0px;
  }
}
.overlap-section {
  margin-top: -100px;
}
.feature-1,
.free-quote,
.feature-3 {
  background: rgb(66, 133, 244);
  padding: 30px 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}
.feature-1 .heading,
.free-quote .heading,
.feature-3 .heading {
  font-size: 22px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.feature-1 .icon,
.free-quote .icon,
.feature-3 .icon {
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: relative;
  border-radius: 50%;
  margin: 0px auto !important;
}
.feature-1 .icon > span,
.free-quote .icon > span,
.feature-3 .icon > span {
  font-size: 35px;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.free-quote {
  background: rgb(42, 117, 243);
}
.free-quote .form-control {
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: rgb(255, 255, 255);
}
.free-quote .form-control:active,
.free-quote .form-control:focus {
  border: 2px solid rgb(255, 255, 255);
}
.free-quote .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-style: italic;
}
.feature-3 {
  background: rgb(32, 111, 242);
}
.border-primary {
  position: relative;
}
.border-primary h2 {
  font-weight: 700 !important;
}
.border-primary::after {
  position: absolute;
  content: "";
  bottom: 0px;
  width: 80px;
  height: 3px;
  background: rgb(66, 133, 244);
}
.border-primary.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.border-primary.text-left::after {
  transform: translateX(0%);
}
.testimonial {
  max-width: 800px;
  text-align: center;
  margin: 0px auto !important;
}
.testimonial blockquote {
  font-size: 1.5rem;
  font-style: italic;
}
.testimonial figure img {
  max-width: 100px;
  margin: 0px auto;
  border-radius: 50%;
}
.breadcrumb-custom {
  font-size: 1rem !important;
}
.text-muted {
  font-size: 12px;
  text-transform: uppercase;
  color: rgb(204, 204, 204) !important;
}
.how-it-work-item .number {
  width: 50px;
  height: 50px;
  background: rgb(66, 133, 244);
  color: rgb(255, 255, 255);
  line-height: 55px;
  font-weight: 300;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 40px;
}
.how-it-work-item h2 {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
}
.how-it-work-item p {
  color: white;
}
.person h3 {
  font-size: 18px;
}
.ul-social-circle {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.ul-social-circle li {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px;
}
.ul-social-circle li:first-child {
  margin-left: 0px;
}
.ul-social-circle li span {
  width: 30px;
  height: 30px;
  background: rgb(119, 119, 119);
  font-size: 13px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  display: inline-block;
}
.ul-social-circle li a span {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease 0s;
}
.ul-social-circle li a:hover span {
  background: rgb(43, 43, 43);
  color: rgb(255, 255, 255);
}
.custom-pagination a,
.custom-pagination span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgb(66, 133, 244);
  color: rgb(255, 255, 255);
}
.custom-pagination span {
  background: rgb(230, 230, 230);
  color: rgb(0, 0, 0);
}
.custom-pagination .more-page {
  background: none;
  letter-spacing: 0.1em;
}
.form-search-wrap {
  background: rgb(255, 255, 255);
  border-radius: 30px;
}
.form-search-wrap .form-control {
  border: none;
}
@media (max-width: 1199.98px) {
  .form-search-wrap .form-control {
    height: 55px;
  }
}
.form-search-wrap .btn {
  border-radius: 30px;
  padding: 10px 30px;
}
@media (max-width: 1199.98px) {
  .form-search-wrap .btn {
    display: block;
    width: 100% !important;
  }
}
.popular-category {
  display: block;
  text-align: center;
  padding: 30px 10px;
  border-radius: 7px;
  background: rgb(248, 249, 250);
  position: relative;
}
.popular-category .icon {
  display: block;
  transition: all 0.1s ease 0s;
}
.popular-category .icon > span {
  line-height: 0;
  font-size: 40px;
}
.popular-category .caption {
  color: rgb(102, 102, 102);
  transition: all 0.1s ease 0s;
}
.popular-category .number {
  padding: 2px 20px;
  border-radius: 30px;
  display: inline-block;
  background: rgb(233, 236, 239);
  color: rgb(0, 0, 0);
  font-size: 14px;
  transition: all 0.1s ease 0s;
}
.popular-category:hover {
  background: rgb(66, 133, 244);
  box-shadow: rgba(66, 133, 244, 0.5) 0px 5px 30px -5px;
}
.popular-category:hover .caption {
  color: rgb(255, 255, 255);
}
.popular-category:hover .icon {
  color: rgb(255, 255, 255);
}
.popular-category:hover .number {
  background: rgb(42, 117, 243);
  color: rgb(255, 255, 255);
}
@media (max-width: 1199.98px) {
  .no-sm-border {
    border: none !important;
  }
}
.listing-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.listing-item::after {
  position: absolute;
  content: "";
  inset: 0px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.listing-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease 0s;
}
.listing-item:hover img {
  transform: scale(1.2);
}
.listing-item .listing-item-content {
  position: absolute;
  bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2;
  width: 100%;
}
.listing-item .listing-item-content .category {
  font-size: 12px;
  display: inline-block;
  padding: 5px 30px;
  background: rgb(66, 133, 244);
  border-radius: 30px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.listing-item .listing-item-content h2 {
  font-size: 22px;
}
.listing-item .listing-item-content h2,
.listing-item .listing-item-content h2 a {
  color: rgb(255, 255, 255);
}
.listing-item .listing-item-content span {
  color: rgb(255, 255, 255);
}
.listing-item .listing-item-content .address {
  color: rgba(255, 255, 255, 0.8);
}
.listing-item .bookmark {
  position: absolute;
  right: 20px;
  bottom: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease 0s;
}
.listing-item .bookmark span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.listing-item .bookmark:hover {
  background: rgb(242, 58, 46);
}
.listing-item .bookmark:hover span {
  color: rgb(255, 255, 255);
}
.accordion-item[aria-expanded="true"] {
  color: rgb(66, 133, 244);
}
.pt-4,
.py-4 {
  padding-top: 0rem !important;
}
.social-media {
  display: inline-block;
  float: left;
  margin-bottom: 0px;
  padding: 0px;
}
.social-media li {
  display: inline-block;
}
.ft-feature-1 {
  margin-bottom: 80px;
}
.ft-feature-1 .ft-feature-1-content {
  padding: 30px;
  position: relative;
  z-index: 10;
}
.ft-feature-1 h2,
.ft-feature-1 h3 {
  font-size: 20px;
  color: rgb(255, 255, 255);
}
.ft-feature-1 h3 {
  font-size: 18px;
}
.ft-feature-1 h3 .icon {
  font-size: 30px;
}
.ft-feature-1 a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.ft-feature-1 a:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.ft-feature-1 .play {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgb(66, 133, 244);
  margin-right: 1.5rem;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  text-decoration: none !important;
}
.ft-feature-1 .play span {
  color: rgb(255, 255, 255);
  display: inline;
}
.ft-feature-1 .img-feature {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .ft-feature-1 .img-feature {
    margin-bottom: -80px;
  }
}
.ft-feature-1 p {
  color: rgb(115, 115, 115);
}
.box-with-humber {
  position: relative;
}
.box-with-humber .number-behind {
  font-size: 6rem;
  position: absolute;
  z-index: -1;
  top: -3rem;
  left: -3rem;
  font-weight: 900;
  color: rgb(242, 244, 245);
}
.box-with-humber h2 {
  font-size: 20px;
}
.media-1 {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.media-1::after {
  position: absolute;
  inset: 0px;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.media-1 img {
  object-fit: cover;
  transition: all 0.3s ease 0s;
}
.media-1 .media-1-content {
  z-index: 4;
  top: 50%;
  position: absolute;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.media-1 .media-1-content h2 {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  bottom: -10px;
  margin-bottom: 0px;
}
.media-1 .media-1-content .category {
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  bottom: -10px;
  visibility: hidden;
  color: rgb(153, 153, 153);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.media-1:hover::after {
  opacity: 1;
  visibility: visible;
}
.media-1:hover h2 {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}
.media-1:hover .category {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
  transition-delay: 0.09s;
}
.media-1:hover img {
  transform: scale(1.05);
}
.testimonial-wrap .owl-nav {
  display: none;
}
.section-sub-title {
  font-size: 13px;
  color: rgb(66, 133, 244);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-title.home {
  position: relative;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  width: fit-content;
  margin: auto;
  margin-bottom: 2em;
}
.section-title.home.dark {
  color: var(--main-color);
}
.section-title.home::before {
  content: "";
  position: absolute;
  width: 37px;
  height: 33px;
  background-image: url(../../pview/assets/img/favicon.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 4px;
  left: -42px;
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 20px;
  }
}
.lead {
  width: 60%;
  margin: auto;
  color: #fff;
  font-weight: 100;
}
.position-relative {
  position: relative;
}
.experience {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: rgb(0, 123, 255);
  padding: 20px;
}
@media (max-width: 991.98px) {
  .experience {
    bottom: 0px;
    right: 0px;
  }
}
.experience span {
  display: block;
}
.experience .year {
  font-weight: 900;
  color: rgb(255, 255, 255);
  font-size: 3rem;
  letter-spacing: normal;
  line-height: 1.2;
}
.experience span {
  letter-spacing: 0.2em;
}
.experience .caption {
  color: rgb(255, 255, 255);
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.feature-big h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 30px;
}
.author-box {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px -2px;
  border-radius: 4px;
  padding: 20px;
  border-width: 1px 1px 1px 10px;
  border-style: solid;
  border-color: rgb(238, 238, 238) rgb(238, 238, 238) rgb(238, 238, 238)
    rgb(66, 133, 244);
  border-image: initial;
}
.author-box :last-child {
  margin-bottom: 0px;
}
.author-box img {
  max-width: 50px;
}
.author-box blockquote {
  font-style: italic;
}
.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px -2px;
}
.h-entry h2 a {
  color: rgb(0, 0, 0);
  font-size: 30px;
}
.bg-image2 .bg-grey {
  margin-top: -55px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.bg-image2 .bg-grey label {
  color: rgb(79, 79, 79) !important;
}
.bg-image2 .bg-grey input,
.bg-image2 .bg-grey textarea,
.bg-image2 .bg-grey select {
  background: none !important;
  border-radius: 10px !important;
}
@media (max-width: 991.98px) {
  .site-logo {
    top: 0px;
  }
}
@media (max-width: 991.99px) {
  .main-menu,
  .top-section {
    display: none !important;
  }
}
.overlap-image-wrap {
  position: relative;
}
.overlap-image-wrap .image-1 {
  position: relative;
}
.overlap-image-wrap .image-2 {
  max-width: 250px;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 99;
}
.bg-image2 {
  background-size: cover;
  position: relative;
  height: 650px;
  margin-top: 200px;
  margin-bottom: 200px;
}
.bg-image2.overlay::before {
  content: "";
  position: absolute;
  inset: 0px;
  opacity: 0.7;
}
.person {
  position: relative;
}
.person figure {
  position: relative;
  margin-bottom: 0px;
}
.person figure::before {
  display: none;
  position: absolute;
  content: "";
  z-index: 1;
  inset: 10px;
  border: 2px solid rgb(66, 133, 244);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease 0s;
}
.person h2 {
  font-size: 18px;
}
.person .bio-img {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 30px;
}
.person .bio-img img {
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  transform: scale(1);
}
.person .bio-img .social {
  z-index: 2;
  padding: 10px 0px;
  width: 100%;
  position: absolute;
  bottom: 0%;
  transform: translateY(100%);
  left: 0px;
  transition: all 0.3s ease 0s;
  background: rgb(66, 133, 244);
}
.person .bio-img .social a {
  display: inline-block;
  padding: 5px;
  color: rgb(255, 255, 255);
}
.person:hover img {
  transform: scale(1.05);
}
.person:hover .social {
  bottom: 0px;
  transform: translateY(0%);
}
.person:hover figure::before {
  opacity: 0;
  visibility: hidden;
}
.sub-title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: rgb(66, 133, 244);
  margin-bottom: 10px;
}
.form-subscribe .btn:hover,
.form-subscribe .btn:active,
.form-subscribe .btn:focus {
  color: rgb(255, 255, 255);
  background-color: rgb(66, 133, 244) !important;
  border-color: rgb(66, 133, 244) !important;
}
.pb-4,
.py-4 {
  padding-bottom: 0rem !important;
}
.mt-35 {
  margin-top: 35px;
}
.c-h5 h5 {
  color: var(--second-color);
  font-weight: 600;
  font-size: 1rem;
  height: 34px;
  overflow: hidden;
}
.c-h5 a {
  color: var(--second-color);
}
#jobs-carousel .owl-stage-outer {
  padding: 8px;
}
.text-box-view {
  color: var(--main-color);
  padding: 5px;
  float: right;
  font-size: 14px;
  border-radius: 10px !important;
}
.bg-grey {
  box-shadow: rgb(173, 171, 171) 0px 3px 15px 0px;
  border-radius: 15px;
  background-color: rgb(249, 249, 249) !important;
}
.contact-h2 h2 {
  font-size: 65px;
  color: rgb(245, 245, 245);
}
.contact-h2 p {
  color: rgb(246, 246, 246);
}
.contact-main-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.f-bg {
  background-color: rgb(25, 89, 80);
}
.bd-top {
  border-top: 1px solid rgb(96, 137, 135);
  border-bottom: 1px solid rgb(96, 137, 135);
  padding-top: 50px;
  padding-bottom: 100px;
}
.pt-30 {
  padding-top: 30px;
  padding-bottom: 75px;
}
.p-3 {
  background: rgb(246, 246, 246);
  border-radius: 27px;
  padding: 16px 19px 13px !important;
}
.relative-right {
  position: relative;
  right: -100px;
}
.table-bordered td {
  border: 1px solid rgb(222, 226, 230);
  background: rgb(255, 255, 255);
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
  text-align: center;
  font-size: 29px;
  font-weight: 400;
}
.table-button {
  text-align: center;
  margin-top: 25px;
}
.table-button a {
  background-color: rgb(46, 177, 84);
  padding: 10px 100px;
  text-align: center;
  color: rgb(255, 255, 255);
}
.table td,
.table th {
  padding: 1rem;
  vertical-align: top;
  border-top: 1px solid rgb(222, 226, 230);
}
.mt-70 {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  .table-responsive {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .r-mt-20 {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .table-button a {
    background-color: rgb(46, 177, 84);
    padding: 6px 15px;
    text-align: center;
    color: rgb(255, 255, 255);
    border-radius: 7px;
  }
}
@media (max-width: 991.98px) {
  .dis-non {
    display: none;
  }
}
.section-bg ul > li a {
  color: rgb(79, 79, 79);
}
.pt-5,
.py-5 {
  padding-top: 45px;
}
.home-features h3 {
  font-size: 35px;
}
.home-features .text {
  position: relative;
  z-index: 5;
  color: rgb(255, 255, 255);
}
.home-features .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.home-features .unit-5 {
  position: relative;
  height: 100%;
  background-position: center center;
  background-size: cover;
}
.home-features .unit-5.easy-plugin {
  background-image: url("../images/plugin.jpg");
}
.home-features .unit-5.satistified {
  background-image: url("../images/satisfied.png");
}
.home-features .unit-5.free-update {
  background-image: url("../images/update.jpg");
}
.home-features .unit-5 .overlay {
  z-index: 3;
}
.home-features .unit-5 .overlay.main {
  background-color: rgba(135, 190, 65, 0.75);
}
.home-features .unit-5 .overlay.second {
  background-color: rgba(4, 73, 88, 0.75);
}
.home-features .unit-5 .overlay.third {
  background-color: rgba(66, 166, 190, 0.75);
}
.pb-5,
.py-5 {
  padding-bottom: 0rem !important;
}
.tracking-system-sec {
  padding-top: 70px;
}
.user-experience-home {
  background-color: var(--main-color);
  padding-bottom: 50px;
  position: relative;
  background-image: linear-gradient(
    to top,
    rgb(4, 73, 88),
    rgb(0, 104, 109),
    rgb(0, 136, 111),
    rgba(135, 190, 65, 0.5),
    var(--main-color)
  );
  animation: 15s ease 0s infinite normal none running gradient;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.user-experience-home .section-title {
  color: rgb(255, 255, 255);
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}
.user-experience-home h3 {
  font-size: 1.3rem;
}
.user-experience-home .box {
}
.user-experience-home .lead {
  color: rgb(255, 255, 255);
  opacity: 0.7;
}
.c-h5 div {
  font-size: 13px;
}
.c-h5:hover a {
  text-decoration: underline;
  color: var(--second-color);
}
.location span {
  color: rgb(138, 138, 138);
  margin-left: 5px;
}
.time span {
  margin-left: 5px;
}
.gif-video {
  max-width: 100%;
  height: auto;
  display: inline-block;
  object-fit: cover;
}
.marketplace {
  padding-bottom: 30px;
}
.marketplace-video {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-50 {
  padding-top: 50px;
}
.view-al-jobs {
  color: rgb(46, 177, 84);
  font-size: 30px;
  font-weight: 500;
  padding-top: 50px;
  display: inline-block;
}
.seeker-dashboard.banner {
  height: 160px;
  position: absolute;
  width: 100%;
}
.seeker-dashboard.banner .inner-banner {
  height: 100%;
}
.seeker-dashboard.banner img {
  height: 100%;
}
.inner-banner {
  width: 100%;
  display: block;
}
.inner-banner img {
  width: 100%;
}
.dashboard-content {
  margin-top: 128px;
  margin-bottom: 30px;
}
.profileStats {
  margin-bottom: 30px;
}
.profile {
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(222, 226, 230);
}
.tab-pane .tr-single-body {
  overflow-x: auto;
}
.tab-pane .tr-single-body::-webkit-scrollbar {
  height: 8px;
}
.tab-pane .tr-single-body::-webkit-scrollbar-track {
  background: var(--main-color);
  height: 5px;
}
.tab-pane .tr-single-body::-webkit-scrollbar-thumb {
  background-color: rgb(240, 243, 246);
  border: 1px solid var(--main-color);
  border-radius: 5px;
}
.relocation {
  padding: 15px;
}
.relocation p {
  color: rgb(73, 86, 119);
}
.relocation .relocation-options {
  padding: 10px 30px;
  display: none;
}
.relocation .relocation-options label.radio {
  position: relative;
  margin-bottom: 5px;
  margin-left: -7px;
}
.relocation .relocation-options label.radio::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 1px;
  left: 5px;
  background-color: rgb(221, 221, 221);
}
.relocation .relocation-options input[type="radio"] {
  appearance: none;
}
.relocation .relocation-options input[type="radio"]:checked + label.radio {
  color: var(--main-color);
}
.relocation
  .relocation-options
  input[type="radio"]:checked
  + label.radio::after,
.relocation
  .relocation-options
  input[type="radio"]:not(:checked):hover
  + label.radio::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  color: var(--main-color);
  background-color: var(--main-color);
  border-radius: 50%;
  top: 4px;
  left: 8px;
}
.relocation
  .relocation-options
  input[type="radio"]:not(:checked):hover
  + label.radio::after {
  opacity: 0.2;
}
.relocation .location-cities {
  display: none;
}
.relocation span.selected-city {
  margin: 3px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 3px;
  padding: 2px;
  cursor: pointer;
}
.relocation span.selected-city i {
  margin: 0px 2px;
}
.pb-93 {
  padding-bottom: 93px;
}
.profile-sidebar {
  padding: 15px 0px 10px;
}
.switch-group {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}
.switch-group .switch {
  appearance: none;
  width: 41px;
  height: 19px;
  background-color: var(--main-color);
  border-radius: 40px;
  border: 1px solid var(--main-color);
  outline: none;
  position: relative;
  transition: all 200ms ease 0s;
  cursor: pointer;
}
.switch-group .switch:checked {
  background-color: rgb(1, 58, 71);
  border: 1px solid rgb(1, 58, 71);
}
.switch-group .switch::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
  transition: all 200ms ease 0s;
}
.switch-group .switch:checked::before {
  left: 22px;
}
.profile-userpic {
  text-align: center;
}
.profile-userpic img {
  float: none;
  margin: 0px auto;
  width: 50%;
  height: 50%;
  border-radius: 50% !important;
}
.profile-usertitle {
  text-align: center;
  margin-top: 20px;
}
.profile-usertitle-name {
  color: rgb(90, 115, 145);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}
.profile-usertitle-job span {
  color: rgb(163, 162, 162);
}
.profile-usertitle-job {
  color: rgb(46, 177, 84);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}
.profile-userbuttons {
  text-align: center;
  margin-top: 10px;
}
.profile-userbuttons .btn {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 15px;
  margin-right: 5px;
}
.profile-userbuttons .btn:last-child {
  margin-right: 0px;
}
.profile-usermenu {
  margin-top: 30px;
}
.profile-usermenu ul li {
  border-bottom: 1px solid rgb(240, 244, 247);
}
.profile-usermenu ul li:last-child {
  border-bottom: none;
}
.profile-usermenu ul li a {
  color: rgb(147, 163, 181);
  font-size: 14px;
  font-weight: 400;
}
.profile-usermenu ul li a i {
  margin-right: 8px;
  font-size: 14px;
}
.profile-usermenu ul li a:hover {
  background-color: rgb(250, 252, 253);
  color: rgb(91, 155, 209);
}
.profile-usermenu ul li.active {
  border-bottom: none;
}
.profile-usermenu ul li.active a {
  color: rgb(91, 155, 209);
  background-color: rgb(246, 249, 251);
  border-left: 2px solid rgb(91, 155, 209);
  margin-left: -2px;
}
.profile-content {
  padding: 20px;
  background: rgb(255, 255, 255);
  min-height: 460px;
}
.job-search-left {
  float: left;
  width: 75%;
}
.job-search-left h3 {
  font-size: 18px;
  line-height: 26px;
  color: rgb(9, 76, 91);
  font-weight: 600;
}
.job-search-left p {
  line-height: 28px;
  font-size: 16px;
  margin-bottom: 0px !important;
}
.job-search-right {
  float: right;
  width: 25%;
  text-align: right;
}
.job-search-right img {
  width: 100px;
}
.profile-count {
  padding: 15px;
}
.profile-dec {
  padding: 15px;
}
.profile-dec h3 {
  font-size: 17px;
  line-height: 21px;
  color: rgb(79, 79, 79);
}
.profile-dec p {
  font-size: 13px;
  line-height: 15px;
  color: rgb(163, 162, 162);
}
.profile-dec a {
  font-size: 13px;
  line-height: 15px;
  color: rgb(46, 177, 84);
}
.about-profile {
  padding: 15px;
}
.about-profile h3 {
  font-size: 17px;
  color: rgb(79, 79, 79);
}
.about-profile p {
  font-size: 12px;
  color: rgb(122, 122, 122);
}
.about-profile a {
  font-size: 13px;
  line-height: 15px;
  color: rgb(46, 177, 84);
}
.member-profile {
  padding: 15px;
}
.member-profile p {
  font-size: 13px;
  line-height: 15px;
  color: rgb(163, 162, 162);
}
.improve-profile {
  padding: 15px;
  overflow: hidden;
}
.improve-profile h4 {
  font-size: 17px;
  color: rgb(79, 79, 79);
}
.improve-profile p {
  color: rgb(122, 122, 122);
  font-size: 13px;
}
.improve-profile img {
  width: 100%;
}
#myTab > li {
  background-color: rgb(255, 255, 255);
}
#myTab > li {
  margin-right: 5px;
}
#myTab > li a {
  color: var(--main-color);
  padding: 2px 10px;
  display: inline-block;
  border: 1px solid var(--main-color);
}
.nav-tabs {
  border-bottom: 1px solid transparent;
}
.jobStats {
  margin-bottom: 30px;
}
.profileStats .tab-content .tab-pane,
.jobStats .tab-content .tab-pane {
  padding-top: 10px;
}
#profile.tab-pane {
  padding: 0px !important;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--main-color);
  border-color: transparent;
  color: rgb(255, 255, 255) !important;
}
.profile-detail {
  margin: 15px;
  border-right: 1px solid rgb(217, 217, 217);
}
.br-0 {
  border-right: none;
}
.profile-detail h4 {
  font-size: 18px;
  line-height: 26px;
  color: rgb(79, 79, 79);
}
.profile-detail p span {
  font-size: 23px;
  line-height: 36px;
  color: rgb(24, 81, 83);
}
.profile-detail p i {
  color: var(--main-color);
  font-size: 20px;
  margin-left: 10px;
}
.profile-graph {
  padding: 15px;
}
.no-records {
  text-align: center;
}
.no-records img {
  width: 300px;
  height: auto;
}
.no-records {
  font-weight: 300;
}
.pt-30 {
  padding-top: 30px;
}
.avatar-info h3 {
  font-size: 15px;
  color: rgb(79, 79, 79);
  font-weight: 600;
}
.avatar-info p {
  font-size: 11px;
  color: rgb(163, 162, 162);
}
.right-top-heading {
  background-color: var(--second-color);
  padding: 20px;
  border-radius: 10px;
}
.right-top-heading h1 {
  font-size: 25px;
  line-height: 50px;
  color: rgb(245, 245, 245);
  font-weight: bold;
}
.right-top-heading h1 span {
  font-size: 20px;
  display: block;
  line-height: 1;
  color: rgb(245, 245, 245);
  font-weight: 300;
}
@media (max-width: 991px) {
  .right-top-heading {
    display: none;
  }
}
.search-bar {
  background: rgb(243, 243, 243);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.16) 1px 1px 4px 0px;
}
.search-bar > .form-group {
  margin-bottom: 0px;
}
.CV-com-title {
  margin: 40px 0px 20px;
}
.CV-com-title h3 {
  font-size: 20px;
  line-height: 36px;
  color: rgb(46, 177, 84);
}
h3.upgrade-title {
  margin-top: 20px;
  color: rgb(79, 79, 79);
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}
.CV-com-title a {
  font-size: 12px;
  font-weight: 600;
}
.three-steps {
  padding: 15px;
  box-shadow: rgba(107, 107, 107, 0.4) 0px 0px 6px 0px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 0px;
  text-align: left;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
}
h3.steps-title {
  color: rgb(9, 76, 91);
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
}
.step-heading {
  font-size: 18px;
  line-height: 22px;
  color: rgb(79, 79, 79);
}
.step-des {
  font-size: 15px;
  line-height: 28px;
  color: rgb(122, 122, 122);
}

.check-email ul {
  list-style: disc;
}
.check-email a {
  color: rgb(0, 123, 255);
}
.check-email img {
  height: 100px;
  padding: 5px;
}
.ft-itext {
  font-weight: 500;
  font-size: 16px;
  margin: 10px;
  text-align: center !important;
}
.ft-itext i {
  margin-right: 5px;
}
ul.social {
  margin: 0px;
  padding: 0px;
}
ul.social li {
  display: inline-block;
  list-style: none;
  margin: 5px;
}
ul.social li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: rgba(71, 119, 244, 0.2) 0px 0px 12px 0px;
  line-height: 40px;
  text-align: center;
}
.fw {
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 28px;
  width: 100%;
}
.fw:last-child {
  margin: 0px;
}
.fw::before {
  font-family: themify;
  vertical-align: initial;
  font-size: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.fw.fw-location::before {
  content: "îš“";
}
.fw.fw-mail::before {
  content: "îš";
}
.fw.fw-call::before {
  content: "î˜¡";
}
.fw.fw-skype::before {
  content: "îœ­";
}
.fw.fw-web::before {
  content: "î™¥";
}
.other-store-link {
  width: auto;
  margin-bottom: 20px;
  display: inline-block;
}
.other-store-link:last-child {
  margin-bottom: 0px;
}
.other-store-app {
  width: 190px;
  height: 70px;
  border: 1px solid rgb(135, 189, 64);
  border-radius: 4px;
  padding: 0px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: rgb(255, 255, 255);
}
.other-store-app:hover {
  background: rgb(135, 189, 64);
  border: 1px solid rgb(135, 189, 64);
  color: rgb(255, 255, 255);
}
.other-store-app:hover i {
  color: rgb(255, 255, 255);
}
.os-app-caps span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
.os-app-icon {
  margin-right: 13px;
}
.os-app-icon i {
  font-size: 32px;
}
.os-app-caps {
  font-size: 18px;
  font-weight: 600;
}
.theme-cl,
.input-with-icon .theme-cl {
  color: rgb(135, 189, 64);
}
.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
  background: transparent;
}
.inner-page .site-navbar {
  background: rgb(255, 255, 255);
  position: unset;
  padding: 10px;
}
.site-navbar .site-logo {
  position: relative;
  left: 0px;
}
.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid rgb(243, 243, 244) !important;
}
.site-navbar .site-navigation .site-menu {
  margin-bottom: 0px;
}
.site-navbar .site-navigation .site-menu .active {
  color: rgb(46, 177, 84);
  display: inline-block;
  padding: 3px 15px !important;
}
.site-navbar .site-navigation .site-menu a {
  display: inline-block;
  text-decoration: none !important;
}
.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}
.site-navbar .site-navigation .site-menu > li.employer a:hover {
  color: var(--main-color) !important;
}
.login-drop a {
  font-size: 14px;
  display: block !important;
  padding: 9px 13px !important;
  color: #000;
}
.login-drop a:hover {
  background-color: rgb(248, 249, 250);
  color: var(--main-color);
}
.login-drop {
  width: 160px !important;
  padding: 5px 0px !important;
}
.lang-drop {
  width: 120px !important;
  padding: 5px 0px !important;
}
.lang-drop a {
  text-align: start;
}
.lang-drop a img {
  margin: 0px 3px;
}
.emp-drop a {
}
em {
  font-family: Besley, serif;
  color: inherit;
}
.ibhire-word em {
  font-family: Besley, serif;
  color: inherit;
}
header .saudi-vision {
  border-left: 1px solid #afabaf;
  padding: 0 10px;
}
.site-navbar .site-navigation .site-menu,
.site-navbar .center-nav {
  font-size: 14px;
}
.site-navbar .site-navigation .site-menu > li > a {
  color: rgb(79, 79, 79);
  display: inline-block;
  padding: 15px 10px !important;
  text-decoration: none !important;
}
.site-menu .dropdown img,
.site-mobile-menu-body img {
  height: 20px;
  width: 20px;
}
.site-navbar .site-navigation .site-menu > li > .active {
  padding: 15px 20px;
  color: rgb(79, 79, 79);
  display: inline-block;
  background-color: #04319936;
  text-decoration: none;
  border-top: 2px solid var(--main-color);
}
.site-navbar .site-navigation .site-menu > li > a:not(#chatMsgs):hover {
  color: var(--main-color);
  background-color: #0431995e;
  display: inline-block;
  border-top: 2px solid var(--main-color);
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children > a::before {
  position: absolute;
  content: "Ã®Å’â€œ";
  font-size: 16px;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  font-family: icomoon;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-width: 2px 1px 1px;
  border-style: solid;
  border-color: rgb(66, 133, 244) rgb(237, 240, 245) rgb(237, 240, 245);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px -2px;
  padding: 0px;
  margin-top: 20px;
  margin-left: 0px;
  background: rgb(255, 255, 255);
  transition: all 0.2s ease 0s;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top::before {
  bottom: 100%;
  display: none;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0px;
  width: 0px;
  position: absolute;
  pointer-events: none;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown.arrow-top::before {
  border-color: rgba(136, 183, 213, 0) rgba(136, 183, 213, 0) rgb(255, 255, 255);
  border-width: 10px;
  margin-left: -10px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  transition: all 0s ease 0s;
  color: rgb(52, 58, 64);
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: rgb(66, 133, 244) !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  min-width: 200px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li
  > a:hover {
  background: rgb(244, 245, 249);
  color: rgb(37, 38, 42);
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > a::before {
  content: "Ã®Å’â€¢";
  right: 20px;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > .dropdown,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > ul {
  left: 100%;
  top: 0px;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:hover
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:active
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:focus
  > a {
  background: rgb(244, 245, 249);
  color: rgb(37, 38, 42);
}
@media (max-width: 991.99px) {
  .site-navbar #siteNavToggler {
    background-color: #fff;
    color: #000;
  }
}
.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
  color: rgb(66, 133, 244);
}
.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}
.site-navbar .sign-up a {
  background-color: rgb(255, 255, 255);
  padding: 4px 22px;
  border-radius: 5px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.site-navbar .sign-up a:hover {
  color: rgb(255, 255, 255);
  background-color: var(--main-color);
}
.site-navbar.bw-navbar {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 75px;
  align-items: center;
  display: flex;
  z-index: 100;
  align-items: start;
}
@media (min-width: 992px) {
  .site-navbar.bw-navbar .container {
    max-width: 1140px;
  }
}

.site-navbar.bw-navbar.inner-header {
  background-color: #212121;
}
.site-navbar.bw-navbar nav {
  width: 100%;
  padding: 0;
}
.site-navbar.bw-navbar .navbar-brand img {
  width: 150px;
}
.site-navbar.bw-navbar .navbar-nav a.nav-link,
.site-navbar.bw-navbar {
  color: #fff;
  font-size: 12px;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
@media (max-width: 991.99px) {
  .site-navbar.bw-navbar .navbar-nav a.nav-link {
    color: #000;
  }
}
.site-navbar.bw-navbar .dropdown-toggle::after {
  display: none;
}
.site-navbar.bw-navbar .dropdown > .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  height: 0;
  padding: 5px;
  margin: 0;
  top: 0;
  transition: all 1s ease-in-out;
}
.site-navbar.bw-navbar .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
  height: auto;
  top: 100%;
}
.site-navbar.bw-navbar .navbar-nav a.nav-link:hover {
  color: var(--third-color);
}
.site-navbar.bw-navbar .dropdown-item {
  font-size: 15px;
  color: #313131;
}
.site-navbar.bw-navbar .navbar-nav > .dropdown .dropdown-menu {
  padding: 5px;
  border-radius: 3px;
  overflow: hidden;
  width: max-content;
}
.site-navbar.bw-navbar .navbar-nav .dropdown-menu .nav-link {
  color: #000;
}
.site-navbar.bw-navbar .dropdown-item:focus,
.dropdown-item:hover {
  color: var(--third-color);
}
.site-navbar.bw-navbar .c-profile {
  background-color: #043099;
  font-size: 12px;
  padding: 20px 30px;
  color: #fff;
  margin: 0.75rem;
}
@media (max-width: 991.99px) {
  .site-navbar.bw-navbar .c-profile {
    display: inline-block;
  }
  .site-navbar.bw-navbar .explore {
    display: none;
  }
}

#addAlert .chboxes input[type="checkbox"] {
  height: 0px;
  width: 0px;
  display: none;
}
#addAlert .chboxes input[type="checkbox"] + label {
  align-items: center;
}
#addAlert .chboxes input[type="checkbox"] + label > span {
  height: 16px;
  width: 16px;
  display: inline-block;
  background-color: rgb(238, 238, 238);
  border: 1px solid rgb(241, 239, 239);
}
#addAlert .chboxes input[type="checkbox"] + label > div {
  margin: 0px 4px;
}
#addAlert .chboxes input[type="checkbox"] + label > span:hover,
#addAlert .chboxes input[type="checkbox"] + label > span {
  cursor: default;
}
#addAlert .chboxes input[type="checkbox"] + label:hover > span,
input[type="checkbox"]:focus + label > span {
  background: rgba(255, 255, 255, 0.1);
}
#addAlert .chboxes input[type="checkbox"]:checked + label > span {
  background: url("../images/checkbox-tickg.png") center center no-repeat;
}
#addAlert .chboxes input[type="checkbox"]:checked + label > span {
  background-color: rgb(221, 221, 221);
}

@media (max-width: 767px) {
  @keyframes ballMove {
    0% {
      right: 25px;
      width: 150px;
      height: 100px;
    }
    25% {
      right: calc(50% - 30px);
      width: 100px;
      height: 100px;
    }
    50% {
      right: calc(100% - 100px);
      width: 100px;
      height: 100px;
    }
    75% {
      right: calc(50% - 30px);
      width: 100px;
      height: 100px;
    }
    100% {
      right: 25px;
      width: 100px;
      height: 100px;
    }
  }
}
#stats {
  border-radius: 3px 3px 0px 0px;
  overflow: hidden;
}
#demoModal {
  direction: ltr;
}
@media (max-width: 575px) {
  #demoModal .modal-dialog {
    width: 100% !important;
  }
  #demoModal .modal-title {
    font-size: 18px;
    white-space: nowrap;
  }
}
.demoModal .modal-dialog {
  max-width: 1000px;
}
.demoModal .calendar-sidebar {
  width: 150px;
  overflow: hidden scroll;
}
.demoModal .calendar-sidebar::-webkit-scrollbar {
  width: 8px;
}
.demoModal .calendar-sidebar::-webkit-scrollbar-track {
  background: var(--main-color);
}
.demoModal .calendar-sidebar::-webkit-scrollbar-thumb {
  background-color: rgb(240, 243, 246);
  border: 1px solid var(--main-color);
  border-radius: 5px;
}
.demoModal .calendar-inner {
  margin-left: 150px;
}
.evo-calendar .sidebar-hide .calendar-inner {
  margin-left: 0px;
  max-width: 100%;
}
.demoModal tr.calendar-header .calendar-header-day,
.demoModal tr.calendar-body .calendar-day {
  padding: 0px;
}
.demoModal tr.calendar-body .calendar-day .day {
  display: flex;
  align-items: center;
  justify-content: center;
}
.demoModal .calendar-sidebar > .calendar-year > button.icon-button {
  width: 9px;
  height: 9px;
}
.demoModal .calendar-sidebar > .calendar-year > p {
  font-size: 20px;
}
.demoModal th[colspan="7"] {
  font-size: 20px;
}
.demoModal th[colspan="7"]::after {
  bottom: 0px;
  height: 2px;
}
.demoModal button.icon-button > span.bars::before,
button.icon-button > span.bars::after {
  height: 2px;
}
.demoModal button.icon-button > span.bars {
  height: 2px;
}
.demoModal .calendar-sidebar > span#sidebarToggler {
  top: -15px;
}
.demoModal.calendar-sidebar > .month-list > .calendar-months > li {
  padding: 1px 30px;
}
.demoModal .calendar-events > .event-header > p {
  font-size: 20px;
  display: none;
}
.demoModal .event-list {
  display: none;
}
.demoModal .calendar-inner .calendar-table {
  font-size: 16px;
}
.slot-details {
  margin-top: 10px;
}
.slot-time {
  padding: 4px;
  border: 1px solid rgb(238, 238, 238);
  border-radius: 4px;
  margin-bottom: 5px;
  background-color: rgb(255, 255, 255);
  text-align: center;
}
.slot-time:hover:not(.not-available),
.slot-time.active {
  background-color: rgba(135, 190, 65, 0.8);
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.slot-time.not-available {
  cursor: no-drop;
  opacity: 0.5;
}
.demoModal .sidebar-toggler {
  position: absolute;
  left: 7px;
  top: 40px;
  cursor: pointer;
  z-index: 5;
  color: rgb(0, 0, 0);
}
.demoModal .demo-form {
  display: none;
}
.demoModal .form {
  max-width: 500px;
  margin: auto;
  padding: 15px;
  box-shadow: rgba(45, 62, 80, 0.12) 0px 1px 5px 0px;
}
.demoModal .form span {
  color: var(--second-color);
}
.demoModal .form label {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0px;
}
.demo-form .back {
  border: 1px solid var(--third-color);
  color: var(--third-color);
}
.demo-form .confirm-schedule {
  color: rgb(255, 255, 255);
  background-color: var(--main-color);
}
.demo-form .btn-group {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .demo-form .btn-group {
    display: block;
  }
  .demo-form .btn-group button {
    width: 100%;
    border-radius: 4px !important;
  }
  .demo-form .btn-group button.back {
    margin-bottom: 5px;
  }
}
.demo-form .form .edit {
  cursor: pointer;
  color: var(--third-color);
}
.demo-logo {
  width: 50px;
  height: 50px;
  display: block;
  margin: auto;
}
#dropdownTimeZone {
  position: relative;
  max-width: 100%;
}
.options-container {
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0px;
}
.select2-container {
  width: 100% !important;
}
body.loading {
  overflow: hidden;
}
.loader-cover {
  height: 100vh;
  width: 100vw;
  top: 0px;
  left: 0px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  z-index: 10000;
}
.loader-cover.dim {
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11000;
}
.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 11px;
}
.bounceball::before {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  transform-origin: 50% center;
  animation: 500ms ease 0.2s infinite alternate none running bounce;
  margin-right: 5px;
  border-radius: 50%;
}
.bounceball:nth-child(2)::before {
  background-color: rgb(4, 73, 88);
  animation-delay: 0.3s;
}
.bounceball:nth-child(3)::before {
  background-color: rgb(66, 166, 190);
  animation-delay: 0.4s;
}
@-webkit-keyframes bounce {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(1.5);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0px;
  }
}
@keyframes bounce {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    transform: scaleX(1.5);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0px;
  }
}
.costomer-support.fixed {
  position: fixed;
  right: 0px;
  top: 30%;
  height: 50px;
  width: 50px;
  z-index: 1000;
  background-color: var(--main-color);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 0px 0px 15px;
}
.costomer-support.fixed img {
  width: 30px;
  height: auto;
}
.bee-support-img {
  display: flex;
  justify-content: center;
}
.bee-support-img img {
  width: 70px;
  height: auto;
}
@media (max-width: 776px) {
  .customer-support .img img {
    display: none;
  }
}
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 0.8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
h5,
h6 {
  color: #2d3954;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
html body .m-l-10 {
  margin-left: 10px;
}
html body .p-10 {
  padding: 10px;
}
.btn-circle {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 10px;
}
html body .m-b-0 {
  margin-bottom: 0px;
}
/* -------------------------------------Chat------------------------------- */

.chat-list-details {
  height: 600px;
  width: 80%;
  margin: auto;
  display: flex;
  background-color: #fff;
  border-radius: 13px;
  border: 1px solid #bdc1c5;
  overflow: hidden;
}
.chat-list-details img {
  cursor: pointer;
}
.chat-list-details .chat-list {
  flex: 2;
  padding: 0;
}
.chat-list-details .chat-list form {
  padding: 20px;
}
.chat-list-details .chat-details {
  flex: 3;
  border-left: 1px solid #eee;
  padding: 0;
}
.chat-list .menu {
  margin: 0;
  list-style: none;
  height: 500px;
  overflow-y: auto;
}
.chat-list .menu li {
  display: flex;
  padding: 10px;
}
.chat-list .menu li.active {
  background-color: #eee;
}
.chat-list .menu li:hover {
  background-color: #eeeeee80;
  cursor: pointer;
}
.chat-list .pic {
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 10px;
}
.chat-list .pic img {
  border-radius: 50%;
}
.chat-list .pic .status {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  position: absolute;
  top: 71%;
  right: 0px;
  border: 1px solid #fff;
}
.chat-list .pic .status.on {
  background-color: #057642;
}
.chat-list .info .user {
  display: flex;
  justify-content: space-between;
}
.chat-list .user .name,
.chat-list .message-info {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}
.chat-list .user .name {
  max-width: 50%;
}
.chat-list .message-info {
  max-width: 70%;
}
.chat-details {
  position: relative;
  background-color: #fff;
}
.chat-details .head {
  display: flex;
  justify-content: space-between;
  background-color: #eee;
  padding: 8px 15px;
  align-items: center;
  cursor: pointer;
}
.chat-details .user-info img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.chat-details .user-info .pic {
  position: relative;
  border-radius: 50%;
  margin-right: 10px;
  height: 40px;
  width: 40px;
}
.chat-details .head .status {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  position: absolute;
  top: 71%;
  right: 0px;
  border: 1px solid #fff;
}
.chat-details .head .status.on {
  background-color: #057642;
}
.chat-details .head .status.off {
  background-color: #fff;
}
.chat-details .head .user-info,
.chat-details .head .actions {
  display: flex;
  align-items: center;
}
.chat-details .head .user-info {
  flex: 2;
}
.chat-details .head .actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  font-size: 10px;
}

.chat-details .head .actions span:hover {
  background-color: #bdc1c5;
}
.chat-details .messages {
  padding: 20px;
  height: 350px;
  overflow-y: auto;
}
.chat-details .message {
  border-radius: 2px;
  padding: 4px;
  color: #000;
  display: flex;
}
.chat-details .message.in {
  justify-content: start;
}
.chat-details .message.out {
  justify-content: end;
}
.chat-details .message.in > div,
.chat-details .message.out > div {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}
.chat-details .message.in > div {
  background-color: #eeeeee99;
}
.chat-details .message.out > div {
  background-color: rgb(5 74 89);
  color: #fff;
  max-width: 60%;
}
.chat-details .type-message {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #87be41;
  padding: 10px;
}
.chat-details textarea {
  width: 100%;
  left: 50%;
  border: none;
  background-color: #eeeeee80;
  resize: none;
  border-radius: 15px;
  height: auto;
}
.chat-details .type-message .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.chat-details .type-message .actions i {
  cursor: pointer;
  margin-right: 2px;
}
.chat-details .type-message button {
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  background-color: var(--main-color);
  padding: 0.375rem 0.75rem;
}
.chat-list .menu::-webkit-scrollbar,
.chat-details .messages::-webkit-scrollbar,
#live-chat .chat-tab .messages::-webkit-scrollbar {
  width: 8px;
}
.chat-list .menu,
.chat-details .messages,
#live-chat .chat-tab .messages {
  scrollbar-width: thin;
  scrollbar-color: #e3e3e3 transparent;
}
.chat-list .menu::-webkit-scrollbar-track,
.chat-details .messages::-webkit-scrollbar-track,
#live-chat .chat-tab .messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-list .menu::-webkit-scrollbar-thumb,
.chat-details .messages::-webkit-scrollbar-thumb,
#live-chat .chat-tab .messages::-webkit-scrollbar-thumb {
  background-color: #f0f3f6;
  border-radius: 5px;

  --webkit-border-radius: 5px;
  --moz-border-radius: 5px;
  --ms-border-radius: 5px;
  --o-border-radius: 5px;
}
.page-wrapper.chat {
  margin-top: 100px;
  margin-bottom: 20px;
}

/* -------------------------------------small chat------------------------------- */
.small-chat,
.small-chat-box {
  position: fixed;

  z-index: 10;
}
.small-chat {
  right: 20px;
  cursor: pointer;
  bottom: 70px;
}
.small-chat .comments {
  width: max-content;
}
#live-chat {
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 1001;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
}
#live-chat .chat-box {
  right: 296px;
  border: 1px solid #868282;
  border-bottom: 0;
  height: 315px;
  width: 315px;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  margin: 0 15px;
  background-color: #fff;
}
#live-chat .chat-tab header {
  color: #fff;
  display: flex;
  align-items: center;
  background-color: var(--second-color);
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}
#live-chat .chat-tab h6 {
  display: inline-block;
  margin: 0 6px;
  color: #fff;
  font-weight: normal;
}
#live-chat .chat-tab {
  border: 1px solid #eee;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
}
#live-chat .chat-tab header img {
  height: 20px;
  width: 20px;
}
#live-chat .chat-tab .messages-search {
  margin: 10px;
  padding: 0 5px;
}
#live-chat .chat-tab .chat-list {
  display: none;
}
#live-chat .chat-tab .messages span img {
  border-radius: 50%;
}
#live-chat .chat-details {
  display: none;
  margin: 0 10px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
#live-chat .chat-details .head a:hover {
  text-decoration: none;
  color: #2d3954;
}
#live-chat .chat-details .messages {
  height: 200px;
  display: block;
}
#live-chat .chat-details .type-message {
  position: unset;
}
#live-chat ul {
  list-style: none;
}

#live-chat .chat-tab .messages {
  max-height: 300px;
  overflow-y: auto;
}
#live-chat .chat-tab .messages h5 {
  font-size: 14px;
  line-height: 14px;
}
/*-------------------------------------------------
  Footer Start   
--------------------------------------------------*/
footer {
  z-index: 99;
  position: relative;
  background-color: #152444;
  color: #fff;
  padding: 10em 0 4em 0;
  font-weight: 300;
  font-size: 15px;
}
footer a {
  color: #fff;
}
footer a:hover,
footer a.active {
  color: #20dcd0;
}
footer .footer-widget {
  padding: 10px;
}
footer .footer-widget > *:not(:last-child) {
  margin-bottom: 16px;
  text-align: justify;
}
footer .footer-logo {
  width: 140px;
  height: auto;
}
footer .widget-title {
  font-family: "Poppins", Sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 35px;
  color: #fff;
}
footer .social {
  display: flex;
  gap: 16px;
}
footer .social a {
  height: 25px;
  width: 25px;
  display: inline-block;
}
footer .social .fa-linkedin-square,
footer .social .fa-twitter {
  color: #12bfb4;
}
footer .social i {
  font-size: 28px;
}
footer .social .facebook {
  border-radius: 50%;
  background-color: #12bfb4;
  height: 25px;
  width: 25px;
  color: #152444;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
footer .social .facebook i {
  position: absolute;
  top: 4px;
}
footer .office-title {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
footer .office-title span {
  color: #05c4e4;
}
footer .office a {
  display: flex;
  gap: 12px;
}
footer .office .icon i {
  font-size: 20px;
}
footer .office .text {
  font-size: 14px;
}
footer .menu li {
  padding: 6px 0;
}
footer .footer-widget .widget-element {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
footer .widget-element div {
  font-size: 15px;
  font-weight: 200;
}
footer .widget-element img {
  width: 32px;
  height: auto;
}
footer .widget-element .num {
  font-size: 25px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
footer .footer_badge {
  width: 174px;
  border-radius: 8px;
}
@media (min-width: 992px) {
  footer .row > div:nth-child(1) {
    width: 21%;
  }
  footer .row > div:nth-child(2) {
    width: 25%;
  }
  footer .row > div:nth-child(3) {
    width: 14%;
  }
  footer .row > div:nth-child(4) {
    width: 21%;
  }
  footer .row > div:nth-child(5) {
    width: 19%;
  }
}
footer .ibee-powered {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .ibee-powered .ibee-logo {
  background-color: #fff;
  border-radius: 5px;
}
footer .ibee-powered img {
  width: 70px;
  height: auto;
}
/* ================ beetleware home ====================== */
.bw-landing {
  position: relative;
  z-index: 10;
  height: 100vh;
  padding: 3em;
  background-image: url(../images/bg-home.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bw-landing .title {
  color: var(--third-color);
  font-size: 60px;
  font-weight: 600;
}
.bw-landing p {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
}
.bw-landing p span {
  color: var(--third-color);
}
/* Search Full Screen */
.overlay#headerSearch {
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 991.99px) {
  .overlay#headerSearch {
    display: none;
  }
  .site-navbar .openBtn {
    display: none;
  }
}
.overlay#headerSearch .overlay-content {
  position: relative;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay#headerSearch .closebtn {
  position: absolute;
  right: 45px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.overlay#headerSearch .closebtn:hover {
  color: #ccc;
}

.overlay#headerSearch input[type="text"] {
  padding: 15px;
  font-size: 17px;
  border: none;
  width: 80%;
  background: transparent;
  text-align: center;
  font-size: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0;
}
section.options {
  margin-top: -6em;
  position: relative;
  z-index: 10;
  margin-bottom: 9em;
}
section.options .box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 4em 0 2em 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 2px;
}
section.options .box .img {
  width: 112px;
  height: 112px;
}
section.options .box img {
  width: 100%;
  height: auto;
}
section.options .box button {
  margin-top: 30px;
  font-size: 24px;
}
section.options .box-1 {
  background-color: var(--main-color);
}
section.options .box-1 .img {
  margin-left: -25px;
}
section.options .box-1 button {
  color: #fff;
  border: 1px solid #fff;
}
section.options .box-2 {
  background-color: #f3f3f3;
}
section.options .box-2 button {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.recent-openings .openings-item {
  height: 100%;
  width: 100%;
  padding: 1em;
  background-color: #f7f5f6;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  --webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
  --moz-box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media (min-width: 1280px) {
  .recent-openings .container {
    max-width: 1000px;
  }
}
.recent-openings .openings-item .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recent-openings .openings-item .logo {
  height: 90px;
  width: 90px;
  border-radius: 9px;
}
@media screen and (max-width: 575px) {
  .recent-openings .openings-item .logo {
    height: 50px;
    width: 50px;
  }
}
.recent-openings .openings-item .logo img {
  width: 100%;
  height: auto;
}
.recent-openings .openings-item .info {
  display: flex;
  flex-direction: column;
}
.recent-openings .openings-item .info span {
  display: inline-block;
  background-color: #043199;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
  padding: 2px 15px;
}
.recent-openings .openings-item .main .item-title {
  margin: 1.5em 0 10px 0;
  color: var(--main-color);
}
.recent-openings .openings-item .main p {
  color: #545454;
}
.recent-openings .openings-item i {
  color: var(--main-color);
}
.recent-openings .swiper-button-prev {
  color: #fff;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #044958;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .recent-openings .swiper-button-prev {
    height: 30px;
    width: 30px;
  }
}
.recent-openings .swiper-button-prev::after {
  content: "prev";
  height: 45px;
  width: 45px;
  font-size: 22px;
  position: absolute;
  left: 15px;
  top: 11px;
}
@media screen and (max-width: 575px) {
  .recent-openings .swiper-button-prev::after {
    font-size: 12px;
    left: 11px;
    top: 9px;
  }
}
.recent-openings .swiper-button-next {
  color: #fff;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #044958;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .recent-openings .swiper-button-next {
    height: 30px;
    width: 30px;
  }
}
.recent-openings .swiper-button-next::after {
  content: "next";
  height: 45px;
  width: 45px;
  font-size: 22px;
  position: absolute;
  left: 15px;
  top: 11px;
}
@media screen and (max-width: 575px) {
  .recent-openings .swiper-button-next::after {
    font-size: 12px;
    left: 13px;
    top: 9px;
  }
}
.recent-openings button,
.interview-tips button,
.benefits button {
  color: #fff;
  padding: 10px;
  font-size: 1.2em;
  margin-top: 30px;
  background-color: var(--main-color);
  align-self: flex-start;
}
.recent-openings button:hover,
.interview-tips button:hover,
.benefits button:hover {
  background-color: var(--third-color);
  color: #fff;
}
.recent-openings .star {
  position: absolute;
  right: 50px;
  top: 30px;
}
.recent-openings .star img {
  transform: rotate(-45deg);
  position: relative;
  z-index: -1;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  color: #fff;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #044958;
  overflow: hidden;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot.owl-nav {
  position: absolute;
  left: -19px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  color: #fff;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot.owl-nav {
  position: absolute;
  right: -81px;
  top: 50%;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3em !important;
  margin: 0;
  cursor: pointer;
  color: #fff;
  transform: translate(-50%, -50%);
}
.benefits {
  margin-top: 70px;
  background-image: url("../../images/Star_2.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 100px 0;
}
@media screen and (max-width: 575.99px) {
  .benefits {
    margin-top: unset;
    padding: unset;
  }
}
.benefits .title {
  font-size: 2.5em;
  text-align: center;
  margin: 70px 0 0 0;
  color: #044958;
  margin-bottom: 70px;
}
.benefits .item {
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 12px 8px -5px rgba(0, 0, 0, 0.13);
  --webkit-box-shadow: 0px 12px 8px -5px rgba(0, 0, 0, 0.13);
  --moz-box-shadow: 0px 12px 8px -5px rgba(0, 0, 0, 0.13);
}
@media screen and (max-width: 575.99px) {
  .benefits .item {
    padding: 10px;
  }
}
.benefits .item img {
  width: 100px;
  height: auto;
}
@media screen and (max-width: 991.99px) {
  .benefits .item img {
    width: 50px;
  }
}
.benefits .item p {
  font-size: 1.2em;
}

.hiring-flow {
  margin-top: 70px;
  padding-bottom: 5em;
}
.hiring-flow .title {
  font-size: 2.5em;
  text-align: center;
  margin: 100px 0 0 0;
  color: #044958;
}
.hiring-flow .flow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiring-flow .flow img {
  max-width: 1000px;
  height: auto;
  width: 100%;
}
.hiring-flow .flow .flow-item {
  color: #044958;
}
.hiring-flow .flow .job-posting {
  align-self: flex-end;
}
.hiring-flow .flow .job-posting img {
  width: 80px;
}
.hiring-flow .flow .email {
  align-self: flex-start;
}
.hiring-flow .flow .email img {
  width: 70px;
}
.hiring-flow .flow .test {
  align-self: flex-end;
}
.hiring-flow .flow .test img {
  width: 110px;
}
.hiring-flow .flow .interview {
  align-self: flex-start;
}
.hiring-flow .flow .interview img {
  width: 60px;
}
.hiring-flow .flow .interview-1 {
  align-self: flex-end;
}
.hiring-flow .flow .interview-1 img {
  width: 130px;
}
.hiring-flow .flow .offer {
  align-self: flex-start;
}
.hiring-flow .flow .offer img {
  width: 70px;
}
.hiring-flow .flow .hiring {
  align-self: flex-end;
}
.hiring-flow .flow .hiring img {
  width: 100px;
}
.core-value,
.interview-tips {
  background-color: #152444;
  padding: 1rem;
  padding-top: 4em;
}
.core-value .core {
  display: flex;
  align-items: center;
  justify-content: center;
}
.core-value img {
  width: 100%;
  height: auto;
}
@media (min-width: 767px) {
  .core-value img {
    width: auto;
    height: 100vh;
  }
}
.interview-tips .row,
.benefits .row,
section.options .row {
  gap: 20px 0;
}
.interview-tips .box {
  border: 1px solid var(--third-color);
  padding: 3em;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.interview-tips .box p {
  margin-bottom: 20px;
}
.interview-tips .box img {
  width: 45px;
  height: auto;
}
.interview-tips .box.dress img {
  width: 23px;
}
