/* ==========================================================================
   IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Poppins:500,700");
/* ==========================================================================
   GENERAL
   ========================================================================== */
body {
  font-family: 'Open Sans', sans-serif;
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
/*background: #1266F1;*/

}

html {
  overflow-x: hidden;
}

p {
  font-size: 14px;
  color: #9a9a9a;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0;
}

a:hover, a:focus {
  color: #1266F1;
}

a {
  color: #1266F1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #191c1e;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fff;
}

.bg-gray {
  background: #f9fcff;
}

.bg-cyan {
  background: #f9fcff;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section {
  padding: 60px 0 60px;
}



/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #fff;
  border: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff !important;
}

.btn-common {
  background: #1266F1;
  position: relative;
  z-index: 1;
}

.btn-common:hover {
  color: #fff;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.15), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.btn-common::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0, 0);
  z-index: -1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.btn-common:hover::before {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: scale(1, 1);
}

.btn-border {
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  border-color: #055ce7;
  color: #1266F1;
}

.btn-border:hover {
  box-shadow: 0px 4px 10px rgba(96, 94, 94, 0.2);
}

.btn-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.btn-border:hover::before {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(0.5, 0.5);
}

.btn-border-filled {
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #fff;
  color: #1266F1;
}

.btn-border-filled:hover {
  color: #fff;
  background-color: transparent;
  box-shadow: 0px 8px 9px 0px rgba(96, 94, 94, 0.17);
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  color: #fff;
  padding: 10px 20px;
  text-transform: capitalize;
  font-size: 14px;
}

.btn-rm i {
  vertical-align: middle;
}

button:focus {
  outline: none !important;
}

.btn-border-fill {
  background: #fff;
  border-color: #fff;
  color: #1266F1;
}

.btn-subtitle {
  color: #191c1e;
  background: #dbecff;
  text-align: center;
  border-radius: 4px;
  padding: 6px 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
}

.clear {
  clear: both;
}

.mt {
  margin-top: 80px;
}

.mt-30 {
  margin-top: 30px;
}

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

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

.padding-0 {
  padding: 0;
}

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



/* ========================================================================== 
   Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 12px;
  right: 15px;
  width: 40px;
  height: 40px;
  line-height: 45px;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  background: #1266F1;
  border: 1px solid #fff;
  z-index: 99;
}

.back-to-top i {
  color: #fff;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   Hero Area
   ========================================================================== */
.hero-area {
  background-size: cover;
  overflow: hidden;
  color: #fff;
  position: relative;
  width: 100%;
}

.hero-area:before {
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: rgba(42, 46, 50, 0.8);
  position: absolute;
}

.hero-area .contents {
  padding: 190px 0 120px;
  text-align: center;
}

.hero-area .contents h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 25px;
}

.hero-area .contents p {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}

.hero-area .contents .btn {
  margin-top: 40px;
  margin-right: 20px;
  text-transform: uppercase;
}

.hero-area .contents .btn-border {
  border: 2px solid #fff;
  color: #fff;
}

.hero-area .intro-img {
  padding: 120px 0 0px;
}

.hero-area .intro-img img {
  display: block;
  height: auto;
  max-width: 100%;
}

.job-search-form {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 4px;
  margin-top: 35px;
}

.job-search-form .form-group {
  margin-bottom: 0;
}

.job-search-form .form-group i {
  position: absolute;
  top: 14px;
  color: #9a9a9a;
  right: 30px;
  font-size: 18px;
}

.job-search-form .form-group .form-control {
  height: 46px;
}

.job-search-form .search-category-container .styled-select > select {
  background: transparent;
  font-size: 14px;
  line-height: 25px;
  border: 0;
  border-radius: 4px;
  height: 46px;
  border: 1px solid #ececec;
  color: #495057;
  padding: 10px 20px;
  z-index: 1;
  width: 100%;
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.job-search-form .button {
  font-size: 22px;
  line-height: 14px;
  display: inline-block;
  position: relative;
  outline: none !important;
  background: #1266F1;
  color: #fff;
  cursor: pointer;
  border: none;
  text-align: center;
  overflow: hidden;
  padding: 11px 12px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 4px;
  z-index: 1;
}

.job-search-form .button:hover {
  box-shadow: 0px 7px 9px rgba(96, 94, 94, 0.17);
}

.job-search-form .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0, 0);
  z-index: -1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.job-search-form .button:hover::before {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: scale(1, 1);
}

.job-featured-search {
  padding: 15px 0;
  border-radius: 4px;
}


/* Services Item */

.section-padding {
  padding: 60px 0;
}

.services {
  background: #fafafa;
}

.services-item {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  margin-top: 15px;
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.services-item .icon {
  float: left;
  padding-right: 15px;
}

.services-item .icon i {
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 50px;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #1266F1;
  border-radius: 4px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}

.services-item .services-content {
  padding-left: 65px;
}

.services-item .services-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.services-item .services-content h3 a {
  color: #272727;
}

.services-item .services-content h3 a:hover {
  color: #1266F1;
}

.services-item:hover {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.services-item:hover .icon i {
  background: transparent;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}



/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999999;
}

.loader {
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-1:before, #loader-1:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 7px solid transparent;
  border-top-color: #1266F1;
}

#loader-1:before {
  z-index: 100;
  animation: spin 2s infinite;
}

#loader-1:after {
  border: 7px solid #fafafa;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* ==========================================================================
 Features Section Start
 ========================================================================== */
#featured .job-featured {
  background: #fff;
  padding: 20px;
  margin: 15px 0;
  border-radius: 4px;
  border-left: 4px solid transparent;
  box-shadow: 0px 0px 14px rgba(191, 191, 191, 0.24);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

#featured .job-featured .icon {
  float: left;
  position: relative;
  width: 70px;
  text-align: center;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  box-shadow: 0px 0px 7px rgba(203, 203, 203, 0.23);
}

#featured .job-featured .content {
  padding-left: 90px;
}

#featured .job-featured .content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

#featured .job-featured .content h3 a {
  color: #333;
}

#featured .job-featured .content h3 a:hover {
  color: #1266F1;
}

#featured .job-featured .content .brand {
  font-size: 15px;
  margin-bottom: 10px;
  color: #666666;
}

#featured .job-featured .content .tags {
  margin-bottom: 15px;
}

#featured .job-featured .content .tags span {
  margin-right: 10px;
}

#featured .job-featured .content .tags span i {
  margin-right: 5px;
  color: #1266F1;
}

#featured .job-featured:hover {
  border-color: #1266F1;
}

/* ==========================================================================
Categories All Page Style
========================================================================== */
.all-categories .categories-title {
  font-size: 30px;
  padding: 0px 0px 30px;
  font-weight: 700;
}

.all-categories .cat-title {
  font-size: 14px;
  text-transform: uppercase;
  background: #f4f9fc;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.all-categories .cat-title span {
  color: #9a9a9a;
  font-size: 12px;
}

.all-categories ul {
  box-shadow: 0px 0px 14px rgba(191, 191, 191, 0.24);
  padding: 15px;
  margin-bottom: 20px;
}

.all-categories ul li {
  padding: 4px 0px;
  font-size: 14px;
  line-height: 26px;
}

.all-categories ul li a {
  color: #9a9a9a;
}

.all-categories ul li a:hover {
  color: #1266F1;
}

.custom-file-label:focus {
  box-shadow: none;
}

.custom-file-label::after {
  padding: 7px 25px;
  color: #fff;
  background-color: #1266F1;
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.job-detail .content-area {
  padding: 15px 20px;
  box-shadow: 0px 0px 14px rgba(191, 191, 191, 0.24);
}

.job-detail .content-area h4 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.job-detail .content-area p {
  margin-bottom: 15px;
}

.job-detail .content-area h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0;
}

.job-detail .content-area ul li {
  margin-bottom: 10px;
}

.small-title {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.sideber {
  padding: 15px;
  box-shadow: 0px 0px 14px rgba(191, 191, 191, 0.24);
}

.sideber .widghet {
  margin-bottom: 30px;
}

.sideber .widghet h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333333;
  font-weight: 500;
}

.sideber .maps .map-full {
  width: 100%;
  height: 250px;
}

.sideber .maps .map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sideber .share-job #subscribe-form .form-group .form-control {
  border: 1px solid #eaeaea;
}

.sideber .share-job .meta-tag {
  margin-top: 20px;
}

.sideber .share-job .meta-tag .meta-part {
  display: inline-block;
  margin-right: 5px;
}

.sideber .share-job .meta-tag .meta-part a {
  font-size: 16px;
  color: #9a9a9a;
}

.sideber .share-job .meta-tag .meta-part a i {
  margin-right: 5px;
}

.sideber .share-job .meta-tag .meta-part a:hover {
  color: #1266F1;
}

.sideber .subscribe-form {
  margin-top: 15px;
}

.sideber .subscribe-form .form-group {
  position: relative;
}


.post-job .job-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.post-job p {
  margin-bottom: 10px;
}

.post-job .control-label {
  margin-bottom: 10px;
}

.post-job .styled-select {
  width: 100%;
  background-color: #FFF;
  border-radius: 4px;
  border: 1px solid #ddd;
  color: #9a9a9a;
  padding: 0 15px;
  display: block;
}

.upload-button {
  position: relative;
  margin-bottom: 40px;
}

.upload-button input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
}

.upload-button .btn-sm {
  padding: 5px 20px;
  font-size: 13px;
}

.input-group-addon {
  padding: 0 !important;
}

.styled-select {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 4px;
}

.styled-select > select {
  background: transparent;
  font-size: 14px;
  line-height: 18px;
  border: 0;
  border-radius: 0;
  height: 44px;
  width: 100%;
}

.search-category select {
  padding: 12px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

select:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.btn-default {
  padding: 17px 14px;
  border-radius: 0px;
  color: #2d2d2d !important;
  background: #fff;
  text-transform: none;
}

.btn-default:hover {
  background-color: #fff;
  border-color: #fff;
}

label {
  margin: 0;
}

.divider {
  padding: 20px 0px 15px;
}

#editor {
  margin-bottom: 30px;
}

#editor .note-editor.note-frame {
  border-color: #f1f1f1;
  border-radius: 4px;
}

#editor .panel-heading {
  padding: 0px 0px 7px 10px;
}

#editor .btn-default {
  padding: 5px 20px;
}

#editor .panel-default .panel-heading {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#editor .panel-default .panel-heading a {
  color: #333;
}

#editor .panel-default .panel-heading a:hover {
  color: #fff;
}

.popover {
  display: none;
}


 



/* ==========================================================================
   Footer Style
   ========================================================================== */
.block-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.footerlogin {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.loginSection{
 background-color: #fff;
  margin-top: 2%; 
  padding-top: 2%;
   padding-bottom: 2%;
}
 
.textwidget {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}

.textwidget p {
  color: #8a99b3;
  font-size: 14px;
}


.contact-list li {
  padding: 5px 0;
  margin-bottom: 12px;
  color: #8a99b3;
}

.contact-list li i {
  width: 34px;
  height: 34px;
  line-height: 30px;
  float: left;
  color: #fff;
  text-align: center;
  font-size: 22px;
  top: 4px;
  margin-right: 10px;
}




#copyright {
  background-color: #1266F1;
  padding: 20px 0 10px;
  color: #fff;
}

#copyright p {
  line-height: 34px;
  color: #fff;
}

#copyright p a {
  color: #fff;
}

#copyright p a:hover {
  text-decoration: underline;
}
  
