
/*Theme Color*/
:root{
  --theme_color : #201234;
  --orange: #ff8f36;
}

/*FONT IMPORT*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');   /*Montserrat-Semibold*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}
a:visited{
    color: var(--orange);
}
.post-list a:visited{
    color: var(--orange) ;
}

.post-list a{
  color:#444444;
  transition: 0.2s;
}
a.menu_item.active{
  color:var(--orange) !important;
}
.post-list a:hover{
  font-weight: bold;
  transition:0.2;
}
p{
    font-family: 'Montserrat', sans-serif;
    font-weight:bold;
}
h1, h2, h3, h4, h5, h6 {
   font-family: 'Montserrat', sans-serif;
}
h1 strong, h3 strong {
    font-size: 22px;
    margin-top: 15px !important;
    margin-bottom: 15px;
}


/*CUSTOM SCROLLBAR*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffc597; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--orange); 
}
/*Custom SCROLLBAR END*/

@media (max-width: 600px) {
  h2{
      font-size:25px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--theme_color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--theme_color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ff821e;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #209dd8;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*position: inherit; */
  /*Remove this line if makking issue in sticky*/
  transition: all 0.5s;
  z-index: 997;
  background:var(--theme_color);
  padding: 10px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  /*background: rgba(255, 255, 255, 1);*/
  background:--var(--theme_color);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff !important;
  transition: 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  /*color: #ff8f36;*/
}

.nav-menu .drop-down ul {
  border-radius: 8px;
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #0c3c53;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #47b2e4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/*Mobile menu togge color*/
.icofont-navigation-menu:before {
    content: "\efa2";
    color: #0042ce;
}

.icofont-navigation-menu_2:before {
    content: "\efa2";
    color: #fff;
}



/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 6px 25px 7px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  /*border: 2px solid #47b2e4;*/
  font-weight: 600;
  background: linear-gradient(to bottom, #ff8f36 0%, #ff7304 100%);
}

.get-started-btn:hover {
  /*background: #31a9e1;*/
  color: #fff;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 20px 7px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 35px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
  font-size:25px;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37517e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #47b2e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/* Top 6 posts card */

.top_jobs{
  margin-top:155px;
}

.card{
  margin-top:15px;
  -webkit-box-shadow: -4px 8px 16px -8px rgb(0 0 0 / 62%);
  -moz-box-shadow: -4px 8px 16px -8px rgb(0 0 0 / 62%);
  box-shadow: -4px 8px 16px -8px rgb(0 0 0 / 62%);
  padding:15px;
  background:#190a2fd6;
}

.card h1,h2{
  margin:0;
}
.card h1 a{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.card h2 a{
  color: #fff;
  font-size: 18px;
}


/*Post section*/
.posts{
  margin-top:45px;
}

.posts .card{
  padding: 0;
  background:transparent;
}

.posts .card .card-title{
  background: var(--theme_color);
  color: #fff;
  font-size: 25px;
  padding: 2px 0px 2px 0px;
  margin-bottom: 0px
}

.posts .card .card-content{
  border:1px solid var(--theme_color);
  padding: 15px;
}

hr{
  margin:8px;
}


.footer{
  margin-top:25px;
  background:var(--theme_color);
  padding: 15px;
  color:#fff;
}




/*Job data*/
.post-data h2 {
    font-size: 20px !important;
    margin-top: 15px !important;
    margin-bottom: 15px;
}
.post-data h1{
    font-size: 25px;
}
.view_all{
    display: block;
    text-align: center;
    font-weight: bold !important;
}
.view_all a,.view_all a:visited{
    color:var(--theme_color);
}

/*latest marquee posts*/
marquee a {color: var(--theme_color);}


 @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 780px) {
      /* Styles */
      .mob-ad{
          display:none !important;
      }
    }

