@charset "UTF-8";
/* 
/* 
Author: Ultrabyte
Version: 0.0.1
*/
/* Base- style, variables, mixins, etc */
body {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
body .form-control:focus, body .custom-select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
}
body textarea {
  border-color: #ccc;
}
body textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ccc;
  outline: none;
}
body a {
  color: #111;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
body a:hover {
  text-decoration: none;
  color: #8c90da;
}
body ul {
  margin: 0;
  padding: 0;
}
body ul li {
  list-style-type: none;
}
body button:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}
body button:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
body .btn:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

/* layout- footer, header, nav etc */
.header-top {
  background: #21366D;
  padding: 10px 0;
  color: #ffffff;
}
.header-top .header-top-contact {
  float: right;
}
.header-top ul li {
  display: inline-block;
  position: relative;
}
.header-top a {
  color: #ffffff;
}
.header-top a:hover {
  color: #ffffff;
}
.header-top-contact ul li {
  margin-right: 20px;
}
.header-top-contact ul li:last-child {
  margin-right: 0;
}
.header-top-contact i {
  margin-right: 8px;
}

.nav-logo {
  height: 45px;
}

.dropdown-menu {
  padding: 0;
}

.main-nav-wrapper {
  position: relative;
  z-index: 100;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}
.main-nav-wrapper .bg-light {
  background: transparent !important;
  padding: 0;
}
.main-nav-wrapper .bg-light .navbar-nav .nav-item .nav-link {
  color: #21366D;
  font-size: 16px;
  padding: 20px 18px;
  font-weight: 600;
}
.main-nav-wrapper .bg-light .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0;
}
.main-nav-wrapper .bg-light .navbar-nav .active .nav-link {
  color: #FFC20E;
}

.drop-menu-sub {
  position: absolute;
  left: 0;
  right: 0;
  top: 90%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  width: 240px;
  overflow: hidden;
}
.drop-menu-sub .nav-link {
  padding: 0 20px !important;
  line-height: 40px;
}
.drop-menu-sub .nav-link:hover {
  background-color: #21366D;
  color: #fff !important;
}

.cst-dropdown-list {
  position: relative;
}
.cst-dropdown-list .drop-menu-sub {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.cst-dropdown-list .drop-menu-sub.show {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.menu-header h5 {
  color: #FFC20E;
  font-size: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
}

.mega-menu-cnt a {
  padding: 0;
  margin: 8px 0;
  font-size: 13px;
}
.mega-menu-cnt a:hover {
  background: none;
  color: #FFC20E;
}

.drop-menu-sub {
  border-radius: 0;
}

.search-section .form-group {
  margin-bottom: 0;
}
.search-section .form-group .form-control {
  border-radius: 0;
  border: 1px solid #21366D;
  height: auto;
  line-height: 24px;
}
.search-section .form-group button {
  position: absolute;
  top: 1px;
  right: 0;
  line-height: 36px;
  border: none;
  background-color: #ffc20e;
  color: #fff;
  text-align: center;
  padding: 0 18px;
}
.search-section .form-group button i {
  margin: 0;
}

.navbar-brand {
  padding: 6px 0;
}

.stick .navbar-brand img {
  width: 280px;
}

.cart-icon {
  position: relative;
}

.cart-icon:hover .cart-nav {
  display: block;
}

.cart-nav {
  position: absolute;
  top: 100%;
  right: 0;
  background: #f1f1f1;
  width: 250px;
  border: 1px solid #ddd;
  display: none;
  padding: 15px;
  text-align: left;
  z-index: 999;
}

.cart-nav .mini_cart_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 18px;
  position: relative;
}

.cart-nav .mini_cart_item img {
  width: 75px;
  height: 75px;
}

.cart-nav .mini_cart_item .remove-icon {
  position: absolute;
  right: 0;
  top: -8px;
  font-size: 20px;
}

.cart-nav .mini_cart_item .left-col {
  margin: 0 15px;
}

.cart-nav .mini_cart_item .left-col h5 {
  font-size: 14px;
  color: #3a58ad;
}

.welcome-col img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.welcome-col .cart-nav {
  width: 350px;
}

.welcome-col .cart-nav ul li {
  display: block;
  margin-bottom: 15px;
}

.welcome-col .cart-nav ul li:before {
  display: block;
  content: "";
}

.welcome-col .cart-nav ul li a {
  vertical-align: middle;
  color: #434343;
}

.welcome-col .cart-nav ul li a i {
  font-size: 16px;
}

.nivo-directionNav .nivo-prevNav:after, .nivo-directionNav .nivo-nextNav:after {
  content: "";
  display: block;
  height: 45px;
  width: 45px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  background: #3FB0E2;
  line-height: 45px;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}
.nivo-directionNav .nivo-prevNav:hover:after, .nivo-directionNav .nivo-nextNav:hover:after {
  background: #21366D;
}
.nivo-directionNav .nivo-nextNav:after {
  content: "";
}
.nivo-directionNav .nivo-prevNav {
  left: 30px;
}
.nivo-directionNav .nivo-nextNav {
  right: 30px;
}

.nivo-caption {
  left: auto;
  position: absolute;
  right: -90px;
  z-index: 555;
  padding: 30px;
  background: rgba(187, 15, 9, 0.6);
  top: 0;
  bottom: 0;
  width: 65%;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
  opacity:1;
}

#htmlcaption_0 {
  display: none;
}

#htmlcaption_1 {
  display: none;
}

#htmlcaption_2 {
  display: none;
}

.slide-caption {
  z-index: 900;
  position: absolute;
  left: 10%;
  right: 20%;
  top: 50%;
  -webkit-transform: translateY(-50%) skew(20deg);
  -moz-transform: translateY(-50%) skew(20deg);
  -ms-transform: translateY(-50%) skew(20deg);
  -o-transform: translateY(-50%) skew(20deg);
  transform: translateY(-50%) skew(20deg);
}
.slide-caption .btn-colored {
  background: #21366D;
}
.slide-caption h1 {
  font-size: 45px;
  padding-bottom: 15px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.slide-caption h1:after {
  position: absolute;
  content: "";
  left: 0;
  width: 70%;
  height: 5px;
  background: #ffffff;
  bottom: 0;
}
.slide-caption p {
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

.filters-col .sub-heading {
  background: #21366D;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
.filters-col .sub-heading h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  line-height: 50px;
}
.filters-col .filters-content {
  background-color: #f1f1f1;
  padding: 15px;
}
.filters-col .filters-content .filters-box li {
  color: #434343;
  font-size: 15px;
  padding-top: 10px;
}
.filters-col .filters-content .filters-box li input {
  margin-right: 10px;
}
.filters-col .filters-content .filters-box a {
  font-size: 14px;
  margin-top: 15px;
  display: block;
}
.filters-col .filters-content .filters-box a i {
  font-size: 10px;
  margin-right: 8px;
}

.filters-col-right .top-filters p {
  float: left;
}
.filters-col-right .top-filters .sort-by {
  float: right;
}
.filters-col-right .top-filters .sort-by label {
  margin-right: 8px;
}
.filters-col-right .top-filters .sort-by .custom-select {
  width: 200px;
}
.filters-col-right .top-filters .btn-group {
  float: right;
}

.item.list-group-item {
  float: none;
  width: 100%;
  background-color: #fff;
  margin-bottom: 30px;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
  border: 0;
}

#products .thumbnail {
  margin-top: 30px;
  padding: 20px;
}
#products .thumbnail .img-event {
  display: flex;
}
#products .thumbnail .img-event img {
  width: 76px;
  margin-right: 30px;
}
#products .thumbnail .card-body {
  padding: 0;
  text-align: center;
}
#products .thumbnail .card-body .view-section {
  margin-left: 15px;
  padding: 5px 15px;
  font-size: 13px;
  color: #fff;
}
#products .thumbnail .card-body .view-section:first-child {
  margin-left: 0;
}

.top-filters {
  background-color: #f1f1f1;
  padding: 15px;
}
.top-filters p {
  margin-bottom: 0;
  line-height: 38px;
}

.list-group-item {
  margin-bottom: 0 !important;
}
.list-group-item .thumbnail {
  display: inline-block;
  width: 100%;
}
.list-group-item .thumbnail .img-event {
  width: 80%;
  float: left;
  align-items: center;
}
.list-group-item .thumbnail .card-body {
  width: 20%;
  float: right;
}
.list-group-item .thumbnail .card-body .view-section {
  margin-left: 0 !important;
  display: block;
  width: 82%;
}

.single-product-cat-box {
  overflow: hidden;
  position: relative;
  margin: 15px 0;
}
.single-product-cat-box:hover .product-cat-par {
  margin-bottom: 0;
  visibility: visible;
}
.single-product-cat-box:hover .product-cat-label {
  background: transparent;
}
.single-product-cat-box:hover .overlay-anc {
  opacity: 1;
}
.single-product-cat-box .product-cat-label {
  background: rgba(255, 102, 0, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: #ffffff;
  z-index: 2;
}
.single-product-cat-box .overlay-anc {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 102, 0, 0.8);
  z-index: 1;
  opacity: 0;
}
.single-product-cat-box .product-cat-par {
  margin-bottom: -55px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  height: 50px;
  overflow: hidden;
  padding: 5px;
}
.single-product-cat-box .product-cat-par p {
  margin: 0;
}

.product-cat-box-img img {
  width: 100%;
  min-height: 260px;
  max-height: 260px;
}

.job-box-single {
  border: 1px solid #dddfe2;
  background-color: #fafafa;
  padding: 12px;
  position: relative;
  margin: 25px 0 15px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
}
.job-box-single:hover {
  transform: scale(1.05);
}

.job-box-logo {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -25px;
  right: -10px;
}
.job-box-logo img {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #ffffff;
}

.txt-muted {
  color: #bababa;
  font-size: 13px;
}

.job-company-name h3 {
  font-size: 14px;
  margin: 5px 0;
  font-weight: 600;
}
.job-company-name h3 a {
  color: #21366D;
}

.job-company-pos h3 {
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}

.job-desc-more ul li {
  display: inline-block;
  margin-right: 18px;
  color: #999999;
}
.job-desc-more ul li i {
  margin-right: 8px;
}

.job-da-box-simple img {
  width: 100%;
}

.sort-wrapper {
  background: #f5f5f5f5;
  color: #4e4e4e;
  padding: 30px;
}
.sort-wrapper .form-group {
  margin: 0;
}
.sort-wrapper .form-control {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.sorted-item {
  box-shadow: 0 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 0 0 3px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 0 0 3px 6px rgba(0, 0, 0, 0.23);
  margin: 15px 0;
}
.sorted-item-image img {
  height: 240px;
}
.sorted-item-caption {
  padding: 0 15px 15px;
}
.sorted-item-caption h4 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #8c90da;
}
.sorted-item-caption h4 a {
  color: #8c90da;
}
.sorted-item-price {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.sorted-item-extra {
  display: inline-block;
  vertical-align: middle;
}
.sorted-item-extra ul li {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}
.sorted-item-extra ul li:after {
  position: absolute;
  content: "";
  right: 0;
  background: #dddddd;
  top: 2px;
  bottom: 2px;
  width: 1px;
}
.sorted-item-extra ul li:last-child {
  padding-right: 0;
}
.sorted-item-extra ul li:last-child:after {
  content: none;
}

.item-owner {
  margin-top: 15px;
  color: #999999;
}

.data-sort-wrapper label {
  display: inline-block;
}
.data-sort-wrapper .custom-select {
  width: auto;
  margin: 0 15px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.data-sort-wrapper .select-caption {
  display: inline-block;
}

.table-data-action {
  padding: 10px 0;
}

.data-search-wrapper label {
  display: inline-block;
  margin-right: 18px;
}
.data-search-wrapper .form-group {
  margin: 0;
  position: relative;
}
.data-search-wrapper .form-control {
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  width: 200px;
  display: inline-block;
}

.header-job-count h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #f7356a;
}

.item-count-wrapper {
  border-bottom: 1px solid #e5e5e5;
}

.job-box-in {
  background: #ffffff;
  padding: 15px;
}
.job-box-in-logo {
  display: table-cell;
  vertical-align: middle;
}
.job-box-in-logo img {
  height: 130px;
  width: 130px;
}
.job-box-in-dtl {
  display: table-cell;
  padding-left: 20px;
  vertical-align: middle;
}
.job-box-in-dtl-lst {
  margin-bottom: 12px;
}
.job-box-in-dtl-lst ul li {
  display: inline-block;
  margin-right: 10px;
}
.job-box-in-dtl-lst ul li a {
  font-weight: 600;
}
.job-box-in-dtl-address {
  margin-bottom: 12px;
}
.job-box-in-dtl-address ul li {
  display: inline-block;
  color: #999999;
}
.job-box-in-dtl-address ul li i {
  margin-right: 8px;
}
.job-box-in-dtl-deadline {
  margin-bottom: 12px;
}
.job-box-in-dtl-deadline ul li {
  display: inline-block;
  margin-right: 10px;
  color: #999999;
}
.job-box-in-dtl-deadline ul li i {
  margin-right: 8px;
  color: #FFC20E;
}
.job-box-in-dtl-action ul li {
  display: inline-block;
}
.job-box-in-dtl-action ul li a {
  display: inline-block;
  border: 1px solid #21366D;
  color: #FFC20E;
  padding: 5px 10px;
}
.job-box-in-dtl-action ul li a i {
  margin-right: 8px;
}

.job-header-lg h3 {
  margin-bottom: 13px;
  font-size: 26px;
  line-height: 1;
}

.list-rnd {
  background: #FFC20E;
  color: #ffffff;
  padding: 3px;
}

.single-career-body h3 {
  font-size: 22px;
}
.single-career-body p {
  color: #787878;
  line-height: 28px;
}
.single-career-body h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 14px;
  color: #21366D;
}
.single-career-body h4 img {
  margin-right: 8px;
}
.single-career-body ul {
  color: #787878;
  line-height: 28px;
  margin-bottom: 16px;
}
.single-career-body ul li {
  position: relative;
  padding-left: 20px;
}
.single-career-body ul li:before {
  position: absolute;
  content: "";
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #8c90da;
  top: 10px;
}

.apply-time-counter {
  color: #13c5f2;
  text-align: center;
}

.aside-map iframe {
  width: 100%;
  height: 250px;
}

.inner-recom-header h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 18px;
}

.apply-job-modal .modal-header h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

.form-cst label {
  font-size: 16px;
  color: #666666;
  font-weight: 500;
  margin-bottom: 10px;
}
.form-cst .form-control {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-size: 13px;
}
.form-cst .form-control:focus {
  background: #ffffff;
  border: 1px solid #FFC20E;
}

.custom-file .custom-file-input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.custom-file .custom-file-label {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.custom-file .custom-file-label:after {
  background: #21366D;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  color: #ffffff;
}

.pagination {
  text-align: center;
  margin-top: 30px;
  display: block;
  width: 100%;
}
.pagination li {
  display: inline-block;
}
.pagination li .page-link {
  border-radius: 0px;
  border: 1px solid #ddd;
  color: #434343;
  padding: 12px 16px;
}
.pagination li .page-link.active {
  color: #fff;
  background-color: #21366D;
}

.share-section {
  margin-bottom: 20px;
}
.share-section .share-icon {
  position: relative;
  overflow: hidden;
  height: 35px;
  line-height: 34px;
}
.share-section .share-icon a {
  color: #4d4d4d;
}
.share-section .share-icon ul {
  position: absolute;
  top: 0;
  left: 85px;
}
.share-section .share-icon ul li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin-right: 5px;
}
.share-section .share-icon ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  color: #fff;
  border-radius: 50%;
}
.share-section .share-icon ul li a i {
  font-size: 13px;
}

.facebook {
  background-color: #3B5998;
}

.twitter {
  background-color: #5EAADE;
}

.pinterest {
  background-color: #CA242D;
}

.google-plus {
  background-color: #D34836;
}

.register-page-wrapper {
  background: #f4f5f9;
  padding: 50px;
}

.register-header h5 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.register-type-tab {
  position: relative;
  text-align: center;
}
.register-type-tab h6 {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #ffffff;
  font-weight: 600;
  color: #FFC20E;
  padding: 0 10px;
}

.register-type-header {
  margin-bottom: 40px;
  position: relative;
}
.register-type-header:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #e5e5e5;
  height: 1px;
}

.register-form {
  background: #ffffff;
  padding: 40px 40px 20px;
}
.register-form .form-control {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}
.register-form .form-control:focus {
  background: #ffffff;
  border: 1px solid #FFC20E;
}

.login-more {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: #999999;
}

.auth-footer {
  border-top: 1px solid #dddddd;
  padding: 15px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.auth-footer a {
  text-decoration: underline;
  font-weight: 600;
}
.auth-footer a:hover {
  text-decoration: underline;
}

.sign-privacy {
  margin: 30px 0;
  text-align: center;
  font-size: 16px;
  color: #999999;
}
.sign-privacy p {
  max-resolution: 0;
}
.sign-privacy a {
  font-weight: 500;
}

.resister-type-nav {
  margin-bottom: 40px;
}
.resister-type-nav .nav-tabs {
  border: 0;
}
.resister-type-nav .nav-tabs .nav-link {
  position: relative;
  padding: 20px 10px 10px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: 1px solid #dddddd;
  margin: 0 10px;
}
.resister-type-nav .nav-tabs .nav-link small {
  display: block;
  opacity: 0.8;
  font-size: 12px;
}
.resister-type-nav .nav-tabs .active {
  background: #21366D;
  color: #ffffff;
}

.register-type-icon {
  position: absolute;
  height: 30px;
  width: 30px;
  background: #000;
  top: -15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.type-icon-c {
  background: #93c907;
}

.type-icon-l {
  background: #1cb4e9;
}

.login-helper {
  margin: 30px 0;
  font-weight: 600;
  text-align: center;
}
.login-helper a {
  color: #FFC20E;
}
.login-helper ul li {
  display: inline-block;
  position: relative;
  padding-left: 8px;
  padding-right: 10px;
}
.login-helper ul li:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #e7e7e7;
  width: 1px;
  content: "";
}
.login-helper ul li:last-child {
  padding-right: 0;
}
.login-helper ul li:last-child:after {
  content: none;
}

.maps-col {
  margin-bottom: 50px;
}

.contact-form {
  padding: 20px;
}

h3.sub-heading {
  text-transform: uppercase;
  margin-bottom: 35px;
  color: #434343;
  font-size: 20px;
  font-weight: 600;
}

.contact-info .sub-heading {
  background-color: #21366D;
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: capitalize;
  display: block;
  line-height: 26px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size:16px;
  padding:10px;
}
.contact-info i {
  width: 32px;
  text-align: center;
  line-height: 25px;
  font-size: 18px;
  color: #243D65;
  height: 25px;
  margin-right: 15px;
}
.contact-info .contact-info-content {
  background-color: #f1f1f1;
  padding: 20px;
}
.contact-info .contact-info-content p {
  display: flex;
}

.footer-social {
  margin-top: 0;
  background-color: #f1f1f1;
  padding-bottom: 30px;
  text-align: center;
}
.footer-social li {
  display: inline-block;
  margin-right: 8px;
}
.footer-social li a {
  height: 25px;
  width: 25px;
  color: #fff;
  line-height: 25px;
  text-align: center;
  margin: 0 3px;
  display: block;
}

.facebook-icon {
  background: #3b5999;
}

.twitter-icon {
  background: #1da1f3;
}

.insta-icon {
  background: #f46232;
}

.linked-icon {
  background: #0077b5;
}

.inner-content {
  margin-bottom: 80px;
}

.category-wrapper {
  text-align: center;
  border-color: #ececec;
  border-style: solid;
  border-width: 0 1px 1px 0;
  padding: 35px 15px;
  background: #ffffff;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
}
.category-wrapper:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 2;
}
.category-wrapper-thumb {
  margin-bottom: 25px;
}
.category-wrapper-caption h4 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}
.category-wrapper-caption h4 a {
  color: #727272;
}

.category-col:nth-child(n+7) .category-wrapper {
  border-width: 0 1px 0 0;
}

.category-col:nth-child(6) .category-wrapper {
  border-width: 0 0 1px 0;
}

.category-col:nth-child(12) .category-wrapper {
  border-width: 0 0 0 0;
}

.filter-button {
  font-size: 18px;
  text-align: center;
  color: #b9282d;
  padding: 10px 40px;
  font-weight: 500;
  background-color: #f1f1f1;
}

.filter-button:hover, .filter-button.active {
  border: 1px solid #2a2d72;
  text-align: center;
  color: #ffffff;
  background-color: #2a2d72;
  transform: scale(1.2);
  font-size: 13px;
}

.blog-section .filter-col {
  margin-bottom: 50px;
}
.blog-section .card-columns .mb-3 {
  margin-bottom: 30px !important;
}
.blog-section .card-columns .card {
  position: relative;
  /*display: -ms-flexbox;*/
  /*display: -webkit-flex;*/
  /*display: flex;*/
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  border: none;
  border-radius: 0;
  display: block;
}
.blog-section .card-columns .card .blog-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  margin: 0;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  height: auto !important;
}
.blog-section .card-columns .card .blog-img a {
  display: block;
  left: 50%;
  top: 50%;
  position: relative;
}
.blog-section .card-columns .card .blog-img a img {
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 315px;
  object-fit: cover;
}
.blog-section .card-columns .card .card-block {
  padding: 1.875em;
  position: relative;
  min-height: 22.5em;
  overflow: hidden;
  line-height: 1.5;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  color: #181818;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
.blog-section .card-columns .card .card-block:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: -1px;
  bottom: 0;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  background: -webkit-linear-gradient(top, transparent 15%, #fff 50%);
  background: -moz-linear-gradient(top, transparent 15%, #fff 50%);
  background: linear-gradient(to bottom, transparent 15%, #fff 50%);
}

.card-content {
  z-index: 9;
}
.card-content .date-col b {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 99;
  font-size: 22px;
  line-height: 22px;
}
.card-content .date-col b small {
  display: block;
}
.card-content .date-col:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 120px solid #fff;
  border-left: 140px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.card-content .card-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #243D65;
  font-size: 18px;
}
.card-content .card-text {
  font-size: 16px;
  color: #434343;
}
.card-content .btn_white {
  font-size: 14px;
  color: #243D65;
  font-weight: 600;
  transition: 400ms ease;
  display: inline-block;
  letter-spacing: 0.6px;
}
.card-content .btn_white:hover {
  transform: translateX(10px);
  color: #FFC20E;
}
.card-content .btn_white i {
  margin-left: 8px;
}

.card-columns {
  column-gap: 30px;
}

.blog-details .card-block {
  padding: 30px 0 0;
}
.blog-details .card-block .social-media a {
  font-size: 24px;
  float: right;
  margin-left: 8px;
}
.blog-details .card-block .date-col {
  clear: both;
  margin-bottom: 20px;
  font-size: 15px;
  display: block;
  color: #ababab;
}
.blog-details .card-block .card-text {
  font-size: 16px;
  color: #434343;
}
.blog-details .card-title {
  float: left;
  font-size: 20px;
}

.right-section .section_title {
  background: #21366D;
  text-align: center;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.right-section .section_title h4 {
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
  line-height: 50px;
}
.right-section .similar-blog {
  background-color: #f1f1f1;
  padding: 20px;
}
.right-section .similar-blog li {
  border-top: 1px solid #ddd;
  padding-top: 14px;
  margin-top: 15px;
}
.right-section .similar-blog li:first-child {
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.right-section .similar-blog li a {
  display: flex;
  align-items: center;
}
.right-section .similar-blog li a img {
  max-width: 100%;
  width: 100px;
  height: 75px;
  object-fit: cover;
}
.right-section .similar-blog li a span h5 {
  font-size: 16px;
  margin-bottom: 5px;
}
.right-section .similar-blog li a span i {
  font-style: normal;
  color: #ababab;
}

a.fa-facebook-square {
  color: #3b5998;
}

a.fa-twitter-square {
  color: #55acee;
}

.stat-box-square {
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background-clip: padding-box;
  margin-bottom: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  position: relative;
}

.stat-box-header {
  float: left;
}

.stats-header-text h5 {
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}
.client-section .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.stats-header-icon {
  float: right;
  font-size: 18px;
}

.stats-header-label {
  color: #6c757d;
  margin-bottom: 20px;
}

.stats-calc {
  display: inline-block;
  background-color: #f1b53d;
  padding: 0.2em 0.6em;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 700;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  letter-spacing: 1px;
}

.stats-calc-helper {
  display: inline-block;
  padding-left: 5px;
}

.stats-footer {
  color: #6c757d;
}

.stat-data {
  margin-bottom: 20px;
}

.stats-calc-inc {
  background-color: #1bb99a;
}

.stats-calc-dec {
  background-color: #ff5d48;
}

.val-inc {
  color: #1bb99a;
}

.val-dec {
  color: #ff5d48;
}

.val-eql {
  color: #f1b53d;
}

.progress-label-name {
  float: left;
}

.progress-label-val {
  float: right;
  font-weight: 600;
}

.progress-label {
  margin-bottom: 16px;
}

.header-ssm h4 {
  margin-bottom: 20px;
}

.stas-bar .progress {
  height: 10px;
}
.stas-bar .progress .progress-bar-inc {
  background-color: #1bb99a;
}
.stas-bar .progress .progress-bar-dec {
  background-color: #ff5d48;
}
.stas-bar .progress .progress-bar-eql {
  background-color: #f1b53d;
}

.stat-table .table {
  margin: 0;
}

.anc-overlay {
  display: block;
}
.anc-overlay:hover .stats-header-label {
  color: #000000;
}

.content-wrapper-grey {
  background: #efefef;
  padding-top: 20px;
}

.chart-item-wrapper {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 15px;
  margin-bottom: 20px;
}

.main-footer .footer-wrapper {
  padding-top: 125px;
}

.footer-wrapper {
  background: #011a17 url(../images/background/footer-bg.jpg);
  padding-top: 60px;
  padding-bottom: 10px;
  color: #cccccc;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}
.footer-wrapper i {
  color: #ffffff;
}
.footer-wrapper a {
  color: #cccccc;
}
.footer-wrapper a:hover {
  color: #ffffff;
}

.footer-header p {
  margin-bottom: 30px;
}
.footer-header h3 {
  text-transform: uppercase;
  margin-bottom: 35px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.social-link-light {
  margin-bottom: 35px;
}

.social-link-light ul li {
  margin: 0 10px;
  font-size: 16px;
}

.contact-list i {
  margin-right: 16px;
  font-size: 18px;
  width:20px;
}

.footer-list ul li {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.qlink ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.social-link-footer ul li {
  display: inline-block;
}

.footer-nav {
  float: right;
}
.footer-nav ul li {
  display: inline-block;
  margin-left: 10px;
}
.footer-nav ul li a {
  color: #bfbfbf;
}

.footer-copyright {
  float: left;
  font-size: 14px;
  color: #bfbfbf;
}
.footer-copyright a {
  font-weight: 600;
  color: #ffffff;
}
.footer-copyright p {
  margin: 0;
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #324a4e;
}

.client-section {
  position: relative;
  margin-bottom: -60px;
}
.client-section-content {
  padding: 27px 40px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background: #eee;
}

.footer-bg {
  background: #f4f5f9;
}

.news-letter-section {
  position: relative;
}

.breadcrumb-section {
  background-color: #F7356A;
}
.breadcrumb-section .breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 0.75rem 0;
}
.breadcrumb-section .breadcrumb li .delimiter {
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
}
.breadcrumb-section .breadcrumb a {
  color: #fff;
  font-size: 15px;
}
.breadcrumb-section .breadcrumb a i {
  color: rgba(255, 255, 255, 0.8);
}

.about-section {
  position: relative;
}
.about-section .about-box {
  position: relative;
  overflow: hidden;
}
.about-section .about-box .about-content {
  position: absolute;
  width: 56%;
  float: left;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about-section .about-box .about-content .about-txt {
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
  padding: 50px;
  background-color: #ffffff;
  margin: 10px;
  font-size: 15px;
}
.about-section .about-box .about-content .about-txt h4 {
  margin-bottom: 18px;
}
.about-section .about-box .about-img {
  float: right;
}
.about-section .about-box .about-img img {
  width: 100%;
}

.view-section {
  display: inline-block !important;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 12px 20px;
  background: #21366D;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
  border: none;
  color: #fff;
}

.view-section:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #44B2E6;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.view-section:hover, .view-section:focus, .view-section.active {
  color: white;
}

.view-section:hover:before, .view-section:focus:before, .view-section:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.inner-section {
  margin: 60px 0 80px;
}
.inner-section .about-img img {
  max-width: 100%;
}
.inner-section .about-txt {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.17);
  padding: 25px 35px;
  border-radius: 0 30px;
  margin-left: -130px;
  background-color: #fff;
  margin-top: 120px;
  font-size: 15px;
}
.inner-section .about-txt h4 {
  margin-bottom: 18px;
}

.inner-header {
  background: url("../images/email-pattern.png");
  padding: 80px 0 30px;
}

.contact-path {
  background: url("../images/bg_advice.jpg");
  background-repeat: no-repeat;
  padding: 100px 0;
  background-size: cover;
  background-attachment: fixed;
  background-position: top;
}
.contact-path .contct-txt h2 {
  color: #fff;
  margin-bottom: 10px;
  line-height: 45px;
  font-weight: bold;
}

.add-resume {
  padding: 50px 0;
  background-color: #21366D;
}
.add-resume .add-resume-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-resume .add-resume-content h3 {
  margin-right: 50px;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.6px;
  font-size: 26px;
}
.add-resume .add-resume-content .view-section {
  margin-top: 0;
  background-color: #FFC20E;
}

.apply-now-form {
  box-shadow: 0 5px 0px #21366D;
  padding: 25px;
  background-color: #f1f1f1;
  border-radius: 0 0 15px 15px;
}

.team-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.team-img:hover img {
  transform: translateY(-30px);
}
.team-img:hover .hover-effect {
  top: 0;
}
.team-img img {
  width: 100%;
  transition: all 0.8s ease-in-out;
  height: 406px;
  object-fit: cover;
}
.team-img .author {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 15px;
  text-align: center;
}
.team-img .author p {
  margin-bottom: 5px;
}
.team-img .author p a {
  color: #21366D;
  font-weight: 600;
  font-size: 16px;
}
.team-img .author p a:hover {
  color: #FFC20E;
}
.team-img .hover-effect {
  background-color: #21366D;
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.6s ease-in-out;
  z-index: 9;
  padding: 25px;
}
.team-img .hover-effect .box-content p {
  color: #fff;
  font-size: 15px;
}
.team-img .hover-effect .box-content a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  transition: 400ms ease;
  display: inline-block;
  letter-spacing: 0.6px;
}
.team-img .hover-effect .box-content a:hover {
  transform: translateX(10px);
  color: #FFC20E;
}

.author-img img {
  max-width: 100%;
}

.author-txt h3 {
  font-size: 36px;
  color: #21366D;
  font-weight: 600;
  margin-bottom: 35px;
}
.author-txt h3 span {
  display: block;
  color: #9d9f9f;
  font-size: 16px;
  margin-top: 15px;
}
.author-txt p {
  font-size: 16px;
  letter-spacing: 0.6px;
}
.author-txt .footer-social {
  background-color: transparent;
  text-align: left;
  margin-top: 30px;
}

.prev-next-page-navigation {
  background-color: #21366D;
  padding: 50px 0;
}
.prev-next-page-navigation .naviJump {
  display: flex;
  font-size: 18px;
}
.prev-next-page-navigation .naviJump .prev {
  width: 50%;
  text-align: left;
}
.prev-next-page-navigation .naviJump .prev i {
  padding-right: 20px;
}
.prev-next-page-navigation .naviJump .next {
  width: 50%;
  text-align: right;
}
.prev-next-page-navigation .naviJump .next a {
  justify-content: right;
}
.prev-next-page-navigation .naviJump .next a i {
  padding-left: 20px;
}
.prev-next-page-navigation .naviJump a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
}
.prev-next-page-navigation .naviJump a:hover {
  color: #FFC20E;
}
.prev-next-page-navigation .naviJump a:hover i {
  transform: translateX(-10px);
}
.prev-next-page-navigation .naviJump a i {
  font-size: 30px;
  transition: 400ms ease;
}

.login-form a {
  color: #FFC20E;
  font-size: 16px;
  font-weight: 400;
}
.login-form p {
  text-align: center;
  padding: 35px 0 15px;
  width: 100%;
}

.form-group #terms {
  margin-right: 10px !important;
}

.career-advice {
  margin-top: 100px;
}
.career-advice .career-adivce-box {
  background-color: #f1f1f1;
  padding: 15px;
  border-bottom: 5px solid #21366D;
  border-radius: 0 0 15px 15px;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  margin-bottom: 30px;
}
.career-advice .career-adivce-box:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 2;
}
.career-advice .career-adivce-box:hover .career-img:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.career-advice .career-adivce-box:hover a {
  transform: translateX(10px);
  color: #FFC20E;
}
.career-advice .career-adivce-box:hover P {
  font-size: 14px;
}
.career-advice .career-adivce-box h4 {
  color: #21366D;
  font-size: 18px;
  line-height: 24px;
  min-height: 50px;
}
.career-advice .career-adivce-box .career-img {
  text-align: center;
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 22px;
  margin: -65px auto 20px;
  border: 1px solid #21366D;
  text-align: center;
  position: relative;
}
.career-advice .career-adivce-box .career-img:before {
  top: -8px;
  left: -8px;
  padding: 8px;
  box-shadow: 0 0 0 4px #21366D;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.career-advice .career-adivce-box .career-img img {
  max-width: 100%;
}
.career-advice .btn_white {
  font-size: 14px;
  color: #243D65;
  font-weight: 600;
  transition: 400ms ease;
  display: inline-block;
  letter-spacing: 0.6px;
}
.career-advice .btn_white i {
  margin-left: 8px;
}
.career-advice .btn_white:hover {
  transform: translateX(10px);
  color: #FFC20E;
}

.global-par-wrapper h5 {
  margin-bottom: 20px;
}
.global-par-wrapper p span {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  font-size: 18px;
}
.global-par-wrapper p span:before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #21366D;
}

.available-manpower {
  position: relative;
  margin: 60px auto 0;
  padding: 1em 0 4em;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}

/* Common style */
.available-manpower figure {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.available-manpower figure img {
  position: relative;
  display: block;
  height: 205px;
  width: 100%;
  opacity: 0.8;
  object-fit: cover;
}

.available-manpower figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.available-manpower figure figcaption::before,
.available-manpower figure figcaption::after {
  pointer-events: none;
}

.available-manpower figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.available-manpower figure.effect-oscar {
  background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
  background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}

.available-manpower figure.effect-oscar img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

.available-manpower figure.effect-oscar figcaption {
  padding: 3em;
  background-color: rgba(58, 52, 42, 0.7);
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

.available-manpower figure.effect-oscar figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 1px solid #fff;
  content: "";
}

.available-manpower figure.effect-oscar h2 {
  margin: 20% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.available-manpower figure.effect-oscar figcaption::before,
.available-manpower figure.effect-oscar a {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.available-manpower figure.effect-oscar:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.available-manpower figure a:hover {
  color: #000;
}

.available-manpower figure.effect-oscar:hover figcaption::before,
.available-manpower figure.effect-oscar:hover a {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.available-manpower figure.effect-oscar:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

.available-manpower figure.effect-oscar:hover img {
  opacity: 0.4;
}

.available-manpower figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  color: #fff;
}

.available-manpower figure h2 span {
  font-weight: 800;
}

.available-manpower figure h2,
.available-manpower figure a {
  text-transform: capitalize;
  font-size: 22px;
  margin: 0 0 12px !important;
  min-height: 54px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.available-manpower figure a:hover {
  transform: translate(15px);
}

.available-manpower figure a {
  letter-spacing: 1px;
  font-size: 15px;
  color: #fff;
  position: relative;
  z-index: 9;
  margin-top: 5px;
}

.modal-header {
  background-color: #21366D;
}
.modal-header h5 {
  color: #fff;
  font-size: 18px;
}

.unlist-style li {
  position: relative;
  padding-left: 25px;
  padding-bottom: 10px;
}
.unlist-style li:before {
  content: "";
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 14px;
  color: #21366D;
  font-weight: 600;
}

/* modules- */
.select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-wrapper .form-control {
  background-image: linear-gradient(45deg, transparent 50%, #999999 50%), linear-gradient(135deg, #999999 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(20px + 2px), calc(100% - 15px) calc(20px + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

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

.aside-da-wrapper {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #dddfe2;
}

.breadcrumb-wrapper {
  background: #FFC20E;
}
.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  background: transparent;
  justify-content: center;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: #ffffff;
  opacity: 1;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item:before {
  color: #ffffff;
}

.inner-page-header {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.inner-page-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.btn-rounded {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  padding: 12px 20px;
}

.btn-lt {
  color: #3b3b3b;
  background-color: #ffffff;
}
.btn-lt i {
  margin-right: 5px;
  color: #999999;
}
.btn-lt:hover {
  color: #3b3b3b;
}

.btn-mar-x {
  margin: 0 8px;
}

.btn-search {
  width: 100%;
  height: 50px;
  background: #FFC20E;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
.btn-search i {
  margin-right: 8px;
}

.btn-news-letter {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #FFC20E;
  color: #ffffff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.btn-global {
  background: #FFC20E;
  color: #ffffff;
  padding: 5px 30px;
}

.btn-lg-apply {
  background-color: #53b427;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid #53b427;
}
.btn-lg-apply:hover {
  background: #fff;
  color: #53b427;
}

.news-letter-section {
  position: relative;
}

.btn-news-letter {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #21366D;
  color: #ffffff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

.btn-global {
  background: #21366D;
  color: #ffffff;
  padding: 5px 30px;
}

.btn-lg-apply {
  background-color: #2A2D72;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid #2A2D72;
}
.btn-lg-apply:hover {
  background: #fff;
  color: #53b427;
}

.form-control {
  border-radius: 0;
}

input.form-control {
  height: 50px;
  line-height: 50px;
}

.btn.btn-news-letter {
  padding: 0 18px;
}

.custom-select {
  border-radius: 0;
  height: 50px;
}

.page-wrapper {
  background: #f1f1f1;
  padding: 60px 0;
}

.page-wrapper-alt {
  background: #ffffff;
  padding: 60px 0;
}

.inner-page-wrapper {
  background: #f4f5f9;
  padding: 50px;
}

.inner-page-wrapper-alt {
  background: #ffffff;
  padding: 50px 0;
}

.inner-page-content-box {
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
}

.pagination-wrapper {
  margin-top: 30px;
}

.pagination-wrapper .pagination .page-item .page-link {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  margin-left: 12px;
  padding: 0.5rem 1rem;
  border-color: #FFC20E;
  color: #FFC20E;
}
.pagination-wrapper .pagination .active .page-link {
  background: #FFC20E;
  color: #ffffff;
}

.inner-page-wrapper-sec {
  background: #f4f5f9;
  padding: 20px 0;
}

.job-dtl-box-single {
  padding: 30px;
  border: 1px solid #efefef;
}

.aside-box-bordered {
  border: 1px solid #efefef;
  padding: 10px;
}

.aside-divider {
  margin-bottom: 30px;
}

.inner-page-content-box-mar {
  margin-bottom: 30px;
}

.form-cst-lg label {
  font-weight: 600;
}

.caption-lg h3 {
  display: inline-block;
  width: 75%;
  line-height: 1.2;
  font-size: 48px;
  font-weight: 800;
}

.page-header {
  margin-bottom: 50px;
  text-align: center;
}
.page-header h3 {
  font-size: 30px;
  color: #21356D;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin: 0;
}
.page-header h3 span {
  padding-bottom: 40px;
  position: relative;
  display: inline-block;
}
.page-header h3 span:after {
  position: absolute;
  content: "";
  left: calc(50% - 35px);
  bottom: 3px;
  background: #FFC20E;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.page-header h3:after {
  position: absolute;
  content: "";
  left: calc(50% - 20px);
  bottom: 2px;
  background: #FFC20E;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.page-header h3:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  background: #FFC20E;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.page-header p {
  font-size: 16px;
  letter-spacing: 0.6px;
  margin-top: 15px;
}

.header-ssm h4 {
  font-size: 15px;
  font-weight: 500;
  color: #212529;
}
p {
  font-size: 16px;
}



/*# sourceMappingURL=style.css.map */

.cart-nav {
  position: absolute;
  top: 100%;
  right: 0;
  background: #f1f1f1;
  width: 350px;
  border: 1px solid #ddd;
  display: none;
  padding: 15px;
  text-align: left;
  z-index: 999;
}

.search-section {
  /* width: 300px; */
  position: relative;
}


.cart-icon:hover .cart-nav
{
  display:block
}

.welcome-col .cart-nav ul li {
  display: block;
  margin-bottom: 15px;
}

.welcome-col .cart-nav ul li a {
  vertical-align: middle;
  color: #434343;
}

.header-top ul li {
  display: inline-block;
  position: relative;
  font-size: 14px;
}

.top-resume #tab-sidebar{
  display: block;
}
.top-resume #tab-sidebar .nav-link{
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.top-resume #tab-sidebar .nav-link.active,.top-resume #tab-sidebar .nav-link:hover{
  color: #fff;
  background:#21366D ;
}

.main-resume .resume-section {
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 15px;
  display: table;
  width: 100%;
  overflow: visible;
  margin-bottom: 35px;
}
.main-resume .resume-section .resume-aside {
  display: flex;
  align-items: center;
}
.main-resume .resume-section .resume-aside .avarta-cadidate img {
  max-width: 100%;
  width: 150px;
  height: 150px;
  object-position: top;
  margin-right: 30px;
  object-fit: cover;
}
.main-resume .resume-section .resume-aside li {
  font-size: 15px;
  padding-bottom: 8px;
}
.main-resume .resume-section .resume-aside li i {
  color: #21366D;
  margin-right: 10px;
}
.main-resume .skills {
  margin: 35px 0;
}
.widget-title {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding: 0 0 14px;
  text-transform: uppercase;
}
.main-resume .skills ul {
  margin-bottom: 40px;
  padding-left: 50px;
}
.main-resume .skills ul li:first-child {
  border: none;
}
.main-resume .skills ul li {
  margin: 0 0 0.5em;
  width: 49%;
  display: inline-block;
}
.main-resume .skills ul li:before {
  content: "";
  font-family: "Font Awesome 5 free";
  color: #f36969;
  margin-right: 8px;
  font-weight: 600;
  font-size: 16px;
}
.widget-title i {
  font-size: 17px;
  display: inline-block;
  text-indent: 2px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #f36969;
  border-radius: 50%;
  margin-right: 10px;
  color: #f36969;
}
.resume-manager-education {
  margin-bottom: 40px;
  padding-left: 50px;
}
.education .resume-manager-education dt {
  border-left: 1px solid #e9e9e9;
  position: relative;
  padding-left: 30px;
}
.education .resume-manager-education dt h3 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.education .resume-manager-education dd {
  padding-left: 30px;
  border-left: 1px solid #dddd;
}
.education .resume-manager-education dd p {
  padding-top: 12px;
  font-weight: 400;
  font-size: 16px;
}
.welcome-col img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

p {
  font-size: 16px;
}


.inner-header {
    background: url(abc.png);
    padding: 80px 0 30px;
}

/*# sourceMappingURL=style.css.map */
.about-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}
.about-section ul {
    margin: 10px 0 20px;
}
.about-section ul li ul li {
    list-style-type: circle;
}
.about-section ul {
    margin: 10px 0 20px;
}
.about-section ul ul {
    padding-left: 20px;
}
.row{
    font-size: 16px;
}
.client-section{
    background:#eee;
}
.client-section-content{
     background:#fff !important;
}

.blog-details img{
    max-width: 100%;
}

.cardbody{
  text-align: justify;
}
    .modal-boxs{
        background-color: #F1F1F1;
        text-align: center;
        position: relative;
        padding: 20px;
    }
    .modal-boxs img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-bottom: 10px;
    }
#exampleModal .modal-dialog{
    max-width: 80%;
}
.modal-boxs [type="radio"]:checked + label{
	border: 5px solid #21366D;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    margin: 0 auto;
}
.modal-boxs [type="radio"] + label:before,
.modal-boxs [type="radio"] + label:after {
display: none;
}

.modal-boxs [type="radio"] + label {
width: 100%;
height: 100%;
padding: 0;
}
.modal-boxs input[type="radio"]{
    opacity: 0;
}
// Unchecked styles
.modal-boxs [type="radio"]:not(:checked) + label {
.image {
  border: 5px solid red;
}
}

// Checked styles
.modal-boxs [type="radio"]:checked + label .image{
    border: 5px solid red;
   opacity: 1;
}
.modal-boxs{
    height: 100%;
}

.goog-te-gadget{
    font-size:0 !important;
}

.skiptranslate.goog-te-gadget span{
    display:none;
}