* {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-family: "Noto Sans", sans-serif;
}
.img-responsive {
  width: 100%;
}
body {
  background: #dcdcdc;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text_left{
  text-align: left !important;
}
.text-white{
  color: #fff;
}
ul {
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}
ul li a {
  text-decoration: none;
}
.list-inline {
  display: flex;
  list-style-type: none;
  gap: 10px;
}
a {
  color: #337ab7;
}
.margin-top {
  margin-top: 20px;
}
.margin-bottom {
  margin-bottom: 20px;
}
.text-bold {
  font-weight: bold;
}
.container {
  margin: 0 auto;
  overflow: hidden;
  width: 67%;
}
.top-area .container {
  background-image: linear-gradient(#ea0a0a 25%, #ea0a0a -9%);
}
.top-area-link li a {
  color: #fff;
}
.top-area-link{
  padding: 9px;
}

/* Navbar style */
.navbar-toggle {
  display: none;
}
.navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  padding: 10px 10px;
}
.navigation_menu nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}
.navbar-nav {
  display: flex;
  gap: 10px;
}
.navbar-nav li a {
  color: #000;
}
.navigation_menu .container {
  background: #fff;
}

/* Breadcrum style */

.breadcrumb.wizard {
  padding: 0px;
  background: #6f6f6f;
  list-style: none;
  overflow: hidden;
  font-size: 10px;
}
.breadcrumb.wizard > li + li:before {
  padding: 0;
}
.breadcrumb.wizard li {
  float: left;
}
.breadcrumb.wizard li.active a {
  background: brown; /* fallback color */
  background: #ffc107;
}
.breadcrumb.wizard li.completed a {
  background: brown; /* fallback color */
  background: hsl(0deg 86% 47%);
}
.breadcrumb.wizard li.active a:after {
  border-left: 30px solid #ffc107;
}
.breadcrumb.wizard li.completed a:after {
  border-left: 30px solid hsl(0deg 86% 47%);
}

.breadcrumb.wizard li a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  padding: 11px 0 8px 45px;
  position: relative;
  display: block;
  float: left;
}
.breadcrumb.wizard li a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid hsl(0deg 0% 44%);
  position: absolute;
  top: 50%;
  margin-top: -50px;
  left: 100%;
  z-index: 2;
}
.breadcrumb.wizard li a:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
  border-bottom: 50px solid transparent;
  border-left: 30px solid white;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  margin-left: 1px;
  left: 100%;
  z-index: 1;
}
.breadcrumb.wizard li:first-child a {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px !important;
}
.breadcrumb.wizard li a:hover {
  background: #ffc107;
}
.breadcrumb.wizard li a:hover:after {
  border-left-color: #ffc107 !important;
}

/* post area style */
.social-buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.logo_bg {
  font-size: 16px;
  background: #e01111;
  display: table;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  padding: 7px;
  color: #ececec;
  margin: 10px 0;
}
.list_style {
  padding: 0 5px;
}
.list_style li {
  padding: 4px 0;
  position: relative;
  padding-left: 25px;
}
.list_style li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #e01111;
  bottom: 0px;
  border-radius: 10px;
  left: 0;
  top: 10px;
}

.sidebar-ads{
  position: fixed;
  top: 0;
}
.sidebar-ads .right-ads{
     right: 0;
    position: absolute;
    width: 250px;
    height: 96vh;
    top: 0;
}
.sidebar-ads .left-ads{
     left: 0;
    position: absolute;
    width: 250px;
    top: 0;
}

/* Home page design */
/*  write here code of the home page  */

.hero {
  background: linear-gradient(135deg, #e6f0ff, #ffffff);
  padding: 20px 0;
  text-align: center;
}
.hero p {
  color: #666;
}
.stats {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat {
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.border_right {
  border-right: 1px solid #bbb9b9;
}
.card_container {
  display: grid;
  gap: 15px;
}
.padding_10 {
  padding: 0 10%;
}
.padding-15{
  padding: 0 15px;
}
.padding_left_15{
  padding-left: 15px;
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-col-repeat {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.w_full{
  width: 100%;
}
.card {
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card p {
  font-size: 14px;
}
.card img {
  width: 100%;
}
.btn {
  display: inline-block;
  padding: 8px 14px;
  background: #ea0a0a;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.primary_btn {
  background: #ddd;
  color: #000;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.gap_5 {
  gap: 5px;
}
.flex_1 {
  flex: 1;
}
.footer-section {
  /* position: absolute; */
  /* bottom: 0; */
  background: #151414;
  width: 100%;
  color: #fff;
  padding: 5px 0;
}
.col-md-3 {
  width: 25%;
}
.row {
  display: flex;
}
.flex_wrap{
  flex-wrap: wrap;
}
.stories_content {
  background: #fff;
  padding: 5px;
  height: 280px;
  margin-bottom: 10px;
  overflow: hidden;
}
.post .col-md-8,
.post .col-md-4 {
  background: #fff;
  padding: 10px;
}
.col-md-4{
  width: 33%;
}
.home_three_content{
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
.height_big{
  height: 341px;
}
.height_fix {
  height: 160px;
}
.height_big .image_area{
  height: 100%;
}
.height_big .image_area img{
  height: 100%;
}
.home_three_content:hover img{
  transform: scale(1.4);
  transition: all 0.4s ease-in-out;
}
.image_area img{
  transition: all 0.4s ease-in-out;
  height: 300px;
   width: 100%;
}
.image_content{
  position: absolute;
  bottom: 30%;
  color: #fff;
  width:100%;
  z-index: 2;
}
.image_content p{
  text-align: center;
  padding: 1px;
}
.cate{
    background: #e01111;
    color: #fff;
    display: table;
    margin: 0 auto;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}
.home_three_content:hover .cate{
  background: #f71313;
}
.heading a{
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.image_area:before {
  background: #00000080;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
}
.col-md-6 {
  width: 50%;
}
ul.social-media a {
  background: #ff5e14;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 3px;
  color: #fff;
}
details {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
summary {
  padding: 12px;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 18px;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}
details p {
  padding: 0 12px 12px;
  margin: 0;
  animation: fadeIn 0.3s ease-in-out;
  background: #fff;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 769px) {
  .post .container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 10px;
  }
  .post .container > .col-md-4{
    width: 91%;
  }
}
@media (max-width: 796px) {
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse, .sidebar-ads {
    display: none;
  }
  .job_categories{
    grid-template-columns: repeat(2, 1fr);
  }
  .padding_0_mobile{
    padding: 0;
  }
  .trending-jobs li {
    width: 100%;
  }
  .navbar-collapse {
    display: none;
  }
  .navbar-collapse.show {
    display: block;
    width: 100%;
    text-align: center;
  }
  #navbar .navbar-nav, .navigation_menu nav{
    flex-direction: column;
    width: 100%;
  }
  .navbar-header{
    width: 90%;
  }
  #navbar .navbar-nav li {
    border-bottom: 1px solid #62626221;
  }
  .line {
    stroke: #333;
    stroke-width: 8;
    transition: all 0.3s ease;
  }
  .menu-toggle.active .top {
    transform: rotate(45deg) translate(31px, -25px);
  }
  .menu-toggle.active .middle {
    opacity: 0;
  }
  .menu-toggle.active .bottom {
    transform: rotate(-45deg) translate(-53px, 11px);
  }
}
@media (max-width: 500px) {
  .grid-col-1-mobile {
    grid-template-columns: repeat(1, 1fr);
  }
  .top-area {
    display: none;
  }
  .breadcrumb.wizard li a:before {
    border: none !important;
  }
  .breadcrumb.wizard li a {
    padding: 8px 0 8px 15px;
    position: relative;
    display: block;
    float: left;
  }
  .breadcrumb.wizard li a:after {
    margin-top: -81px;
  }
  .flex_col_mobile{
    flex-direction: column;
  }
}

