```css
@font-face {
  font-family: Tajawal;
  src: url('../assets/vendor/fonts/Tajawal/Tajawal-Medium.ttf');
}

/*--------------------------------------------------------------
# Color Palette
--------------------------------------------------------------*/
/*
  Dark   : #0b1f42
  Medium : #c3933f
  Light  : #f1d5b0
  White  : #f9f5ea
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #0b1f42;
  background-color: #f9f5ea;
}

a {
  text-decoration: none;
  color: #c3933f;
}

a:hover {
  color: #0b1f42;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #0b1f42;
}

.error {
  color: #c3933f;
  font-size: 14px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #0b1f42;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0b1f42;
  border-top-color: #f9f5ea;
  border-bottom-color: #c3933f;
  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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c3933f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #f9f5ea;
  line-height: 0;
}

.back-to-top:hover {
  background: #0b1f42;
  color: #f9f5ea;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #f9f5ea;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  box-shadow: rgba(11, 31, 66, 0.08) 0px 3px 5px;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(11, 31, 66, 0.15);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(11, 31, 66, 0.15);
}

#header .logo a {
  color: #0b1f42;
}

#header .logo img {
  height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0b1f42;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #c3933f;
}

/*--------------------------------------------------------------
# Employer Register CTA
--------------------------------------------------------------*/
.navbar .employer-register,
.navbar .employer-register:focus {
  background: #c3933f;
  padding: 10px 18px;
  margin-left: 25px;
  font-size: 14px;
  border-radius: 5px;
  font-weight: 600;
  color: #f9f5ea;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 10px rgba(195, 147, 63, 0.25);
}

.navbar .employer-register:hover,
.navbar .employer-register:focus:hover {
  color: #f9f5ea;
  background: #0b1f42;
  box-shadow: 0 5px 15px rgba(11, 31, 66, 0.25);
}

/* Arabic Button */
.navbar .getstarted,
.navbar .getstarted:focus {
  background: #0b1f42;
  padding: 8px 15px;
  margin-left: 15px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 400;
  color: #f9f5ea;
  font-family: "Tajawal";
  width: 60px;
  justify-content: center;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #f9f5ea;
  background: #c3933f;
}

/*--------------------------------------------------------------
# Dropdown
--------------------------------------------------------------*/
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #f9f5ea;
  box-shadow: 0px 0px 30px rgba(11, 31, 66, 0.18);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #c3933f;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #0b1f42;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #f9f5ea;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(11, 31, 66, 0.92);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #f9f5ea;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b1f42;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #c3933f;
}

/* Mobile Employer Register */
.navbar-mobile .employer-register,
.navbar-mobile .employer-register:focus {
  margin: 15px;
  background: #c3933f;
  color: #f9f5ea;
  border-radius: 5px;
  justify-content: center;
  box-shadow: none;
}

.navbar-mobile .employer-register:hover {
  background: #0b1f42;
  color: #f9f5ea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f9f5ea;
  box-shadow: 0px 0px 30px rgba(11, 31, 66, 0.15);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #c3933f;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-color: #0b1f42;
  overflow: hidden;
  position: relative;
}


/*--------------------------------------------------------------
# Carousel - Force All Slides To Same Size
--------------------------------------------------------------*/

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  width: 100%;
  height: 100%;
}


#hero .carousel {
  position: absolute;
  inset: 0;
}


#hero .carousel-inner {
  position: absolute;
  inset: 0;
}


#hero .carousel-item {
  position: absolute;
  inset: 0;

  /*
   * IMPORTANT:
   * All images will occupy exactly the same area.
   */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /*
   * Prevent different image sizes from affecting the slider.
   */
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
# Dark Overlay
--------------------------------------------------------------*/

#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(11, 31, 66, 0.62);

  z-index: 1;
}


/*--------------------------------------------------------------
# Carousel Container
--------------------------------------------------------------*/

#hero .carousel-container {
  display: flex;

  justify-content: center;
  align-items: center;

  position: absolute;

  top: 70px;
  bottom: 0;

  left: 50px;
  right: 50px;

  z-index: 2;
}


#hero .container {
  position: relative;
  z-index: 3;

  width: 100%;

  text-align: center;
}


/*--------------------------------------------------------------
# Hero Title
--------------------------------------------------------------*/

#hero h2 {
  color: #f9f5ea;

  margin: 0 auto 20px auto;

  font-size: 48px;

  font-weight: 700;

  line-height: 1.2;

  max-width: 1100px;
}


#hero h2 span {
  color: #c3933f;
}


/*--------------------------------------------------------------
# Hero Paragraph
--------------------------------------------------------------*/

#hero p {
  margin: 0 auto 30px auto;

  max-width: 850px;

  color: #f9f5ea;

  font-size: 18px;

  line-height: 1.7;

  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}


/*--------------------------------------------------------------
# Carousel Fade Effect
--------------------------------------------------------------*/

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center center;
}


#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}


#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;

  transition: opacity 0.6s ease-in-out;
}


#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;

  transform: translate3d(0, 0, 0);
}


/*--------------------------------------------------------------
# Carousel Controls
--------------------------------------------------------------*/

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 7%;

  z-index: 5;

  opacity: 1;
}


#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {

  background: none;

  font-size: 30px;

  line-height: 0;

  width: 54px;
  height: 54px;

  background: rgba(249, 245, 234, 0.15);

  border-radius: 50%;

  transition: all 0.3s ease;

  color: rgba(249, 245, 234, 0.8);

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(249, 245, 234, 0.15);
}


#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {

  background: #c3933f;

  color: #f9f5ea;

  transform: scale(1.08);
}


/*--------------------------------------------------------------
# Carousel Indicators
--------------------------------------------------------------*/

/*
 * Bootstrap 5 normally uses .carousel-indicators button.
 * This supports both old <li> and new <button> indicators.
 */

#hero .carousel-indicators {
  z-index: 6;

  margin-bottom: 30px;
}


#hero .carousel-indicators li,
#hero .carousel-indicators button {

  cursor: pointer;

  background: #f9f5ea;

  overflow: hidden;

  border: 0;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  opacity: 0.6;

  transition: all 0.3s ease;
}


#hero .carousel-indicators li.active,
#hero .carousel-indicators button.active {

  opacity: 1;

  background: #c3933f;

  transform: scale(1.15);
}


/*--------------------------------------------------------------
# Hero CTA Button
--------------------------------------------------------------*/

#hero .btn-get-started {

  font-family: "Raleway", sans-serif;

  font-weight: 600;

  font-size: 14px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 14px 32px;

  border-radius: 5px;

  transition: all 0.4s ease;

  line-height: 1;

  color: #f9f5ea;

  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;

  background: #c3933f;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  text-decoration: none;
}


#hero .btn-get-started:hover {

  background: #0b1f42;

  color: #f9f5ea;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/*--------------------------------------------------------------
# Watch Video
--------------------------------------------------------------*/

#hero .btn-watch-video {

  display: flex;

  align-items: center;

  transition: 0.5s;

  color: #f9f5ea;

  line-height: 1;
}


#hero .btn-watch-video i {

  line-height: 0;

  color: #c3933f;

  transition: 0.3s;

  margin-right: 8px;
}


#hero .btn-watch-video:hover i {

  color: #f1d5b0;
}


/*--------------------------------------------------------------
# Large Desktop
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  #hero {
    height: 700px;
    min-height: 700px;
  }

  #hero h2 {
    font-size: 48px;
  }

  #hero p {
    font-size: 18px;
  }

}


/*--------------------------------------------------------------
# Desktop / Laptop
--------------------------------------------------------------*/

@media (min-width: 993px) and (max-width: 1199px) {

  #hero {
    height: 650px;
    min-height: 650px;
  }

  #hero h2 {
    font-size: 42px;
  }

}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 992px) {

  #hero {
    height: 600px;
    min-height: 600px;
  }


  #hero .carousel-container {

    top: 70px;

    left: 40px;
    right: 40px;

  }


  #hero h2 {

    font-size: 38px;

    line-height: 1.25;

  }


  #hero p {

    font-size: 17px;

    max-width: 700px;

  }


  #hero .carousel-control-prev,
  #hero .carousel-control-next {

    width: 8%;

  }

}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 768px) {

  #hero {

    height: 520px;

    min-height: 520px;

  }


  #hero .carousel-item {

    /*
     * Keep exactly the same dimensions for every slide.
     */
    height: 520px;

    background-size: cover;

    background-position: center center;

  }


  #hero .carousel-container {

    top: 60px;

    left: 20px;

    right: 20px;

    padding: 20px;

  }


  #hero h2 {

    font-size: 30px;

    line-height: 1.3;

    margin-bottom: 15px;

  }


  #hero p {

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 25px;

  }


  #hero .btn-get-started {

    padding: 12px 25px;

    font-size: 13px;

  }


  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {

    width: 42px;

    height: 42px;

    font-size: 22px;

  }


  #hero .carousel-control-prev,
  #hero .carousel-control-next {

    width: 12%;

  }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 576px) {

  #hero {

    height: 480px;

    min-height: 480px;

  }


  #hero .carousel-item {

    height: 480px;

  }


  #hero .carousel-container {

    top: 50px;

    left: 15px;

    right: 15px;

    padding: 15px;

  }


  #hero h2 {

    font-size: 25px;

    line-height: 1.3;

  }


  #hero p {

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;

  }


  #hero .btn-get-started {

    padding: 11px 22px;

  }


  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {

    width: 38px;

    height: 38px;

    font-size: 18px;

  }


  #hero .carousel-indicators {

    margin-bottom: 20px;

  }


  #hero .carousel-indicators li,
  #hero .carousel-indicators button {

    width: 9px;

    height: 9px;

  }

}


/*--------------------------------------------------------------
# Very Small Screens
--------------------------------------------------------------*/

@media (max-width: 400px) {

  #hero {

    height: 450px;

    min-height: 450px;

  }


  #hero .carousel-item {

    height: 450px;

  }


  #hero h2 {

    font-size: 22px;

  }


  #hero p {

    font-size: 13px;

  }

}


/*--------------------------------------------------------------
# Landscape Mobile
--------------------------------------------------------------*/

@media (max-height: 500px) and (orientation: landscape) {

  #hero {

    height: 500px;

    min-height: 500px;

  }


  #hero .carousel-item {

    height: 500px;

  }


  #hero h2 {

    font-size: 28px;

    margin-bottom: 10px;

  }


  #hero p {

    margin-bottom: 15px;

  }

}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0 20px 0;
  color: #0b1f42;
  background:
    linear-gradient(
      rgba(241, 213, 176, 0.65),
      rgba(241, 213, 176, 0.65)
    ),
    url("../img/about-bg.png") top center no-repeat;
  border-radius: 10px;
}

.counts .counters span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #0b1f42;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0b1f42;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #f9f5ea;
}

.section-title {
  padding-bottom: 10px;
}

.section-title h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #0b1f42;
}

.section-title h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #f1d5b0;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #c3933f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0b1f42;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
#breadcrumbs_services,
#breadcrumbs_register,
#breadcrumbs_track,
#breadcrumbs_clients,
#breadcrumbs_gallery {
  padding: 18px 0;
  min-height: 100%;
  margin-top: 80px;
  height: 150px;
  background-size: cover;
  background-position: center;
  color: #f9f5ea;
}

#breadcrumbs_services {
  background:
    linear-gradient(
      rgba(11, 31, 66, 0.65),
      rgba(11, 31, 66, 0.65)
    ),
    url(../img/banners/manpower-banner.jpg);
}

#breadcrumbs_register {
  background:
    linear-gradient(
      rgba(11, 31, 66, 0.65),
      rgba(11, 31, 66, 0.65)
    ),
    url(../img/banners/Register_Banner.jpg);
}

#breadcrumbs_track {
  background:
    linear-gradient(
      rgba(11, 31, 66, 0.65),
      rgba(11, 31, 66, 0.65)
    ),
    url(../img/banners/tracking-banner1.jpg);
}

#breadcrumbs_clients {
  background:
    linear-gradient(
      rgba(11, 31, 66, 0.65),
      rgba(11, 31, 66, 0.65)
    ),
    url(../img/banners/clients1.jpg);
}

#breadcrumbs_gallery {
  background:
    linear-gradient(
      rgba(11, 31, 66, 0.65),
      rgba(11, 31, 66, 0.65)
    ),
    url(../img/banners/gallery-banner1.jpg);
}

.breadcrumbs {
  padding: 18px 0;
  background: #f1d5b0;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  color: #0b1f42;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0b1f42;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 50px 0;
  position: relative;
}

.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #0b1f42;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  color: #0b1f42;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #c3933f;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 35px;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  box-shadow: rgba(11, 31, 66, 0.15) 0px 2px 8px 0px;
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.ts-service-area h2 {
  color: #0b1f42;
  padding-bottom: 40px;
}

.ts-service-box .ts-service-box-info {
  margin-left: 25px;
  margin-bottom: 40px;
}

.service-box-title {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: bold;
}

.service-box-title a {
  color: #0b1f42;
}

.service-box-title a:hover {
  color: #c3933f;
}

#image-center {
  display: flex;
  align-items: center;
  background-color: #0b1f42;
  position: relative;
  border-radius: 6px;
  border: 4px solid #c3933f;
}

#image-center .centered {
  position: absolute;
  text-align: center;
  color: #f9f5ea;
}

#image-center img {
  opacity: 0.2;
}

.services .icon-box i {
  float: left;
  color: #c3933f;
  font-size: 40px;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #0b1f42;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #c3933f;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 15px;
  border-bottom: 2px solid #c3933f;
  text-align: center;
  width: 100%;
  box-shadow: rgba(11, 31, 66, 0.18) 0px 3px 8px;
}

.why-us .icon-box i {
  float: left;
  color: #c3933f;
  font-size: 40px;
}

.why-us .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #0b1f42;
}

.why-us .icon-box h4 a {
  color: #0b1f42;
  transition: 0.3s;
}

.why-us .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.why-us .icon-box:hover h4 a {
  color: #c3933f;
}

/*--------------------------------------------------------------
# Slick Clients
--------------------------------------------------------------*/
.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------------
# Register Page
--------------------------------------------------------------*/
.register-area {
  padding: 18px 0;
  background:
    linear-gradient(
      rgba(249, 245, 234, 0.75),
      rgba(249, 245, 234, 0.75)
    ),
    url(../img/back/images.jpg) repeat-x;
  background-size: 50%;
}

#register-form {
  padding: 15px 15px;
  box-shadow: 0px 0px 15px rgba(11, 31, 66, 0.1);
  background: #f9f5ea;
}

.register-area button[type=submit] {
  background: #c3933f;
  border: 0;
  padding: 10px 24px;
  color: #f9f5ea;
  transition: 0.4s;
  border-radius: 4px;
}

.register-area button[type=submit]:hover {
  background: #0b1f42;
}

/*--------------------------------------------------------------
# Tracking Page
--------------------------------------------------------------*/
#track-form {
  box-shadow:
    rgba(11, 31, 66, 0.20) 0px 1px 2px 0px,
    rgba(11, 31, 66, 0.12) 0px 1px 3px 1px;
  padding: 20px 20px;
  background: #f9f5ea;
}

#track-form .control-label {
  text-transform: uppercase;
  padding-bottom: 20px;
  color: #0b1f42;
}

#track-form input {
  box-shadow:
    rgba(11, 31, 66, 0.12) 0px 10px 20px,
    rgba(11, 31, 66, 0.12) 0px 6px 6px;
}

.track_result {
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: 'Tajawal', sans-serif;
}

.track_result .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #f9f5ea;
  background-clip: border-box;
  border: 1px solid rgba(11, 31, 66, 0.1);
  border-radius: 0.10rem;
  font-size: 13px;
}

.track_result .card-header:first-child {
  border-radius: calc(0.37rem - 1px) calc(0.37rem - 1px) 0 0;
}

.track_result .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f9f5ea;
  border-bottom: 1px solid rgba(11, 31, 66, 0.1);
}

.track_result .track {
  position: relative;
  background-color: #f1d5b0;
  height: 7px;
  display: flex;
  margin-bottom: 60px;
  margin-top: 50px;
}

.track_result .track .step {
  flex-grow: 1;
  width: 25%;
  margin-top: -18px;
  text-align: center;
  position: relative;
}

.track_result .track .step.active:before {
  background: #c3933f;
}

.track_result .track .step::before {
  height: 7px;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 18px;
}

.track_result .track .step.active .icon {
  background: #c3933f;
  color: #f9f5ea;
}

.track_result .track .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  border-radius: 100%;
  background: #f1d5b0;
}

.track_result .track .step.active .text {
  color: #0b1f42;
  font-size: 90%;
}

.track_result .track .step.active strong {
  color: #c3933f;
  font-weight: 700;
}

.track_result .track .text {
  display: block;
  margin-top: 7px;
  padding: 0 10px;
  font-family: 'Tajawal', sans-serif;
}

.track_result .itemside {
  position: relative;
  display: flex;
  width: 100%;
}

.track_result .itemside .aside {
  position: relative;
  flex-shrink: 0;
}

.track_result .img-sm {
  width: 80px;
  height: 80px;
  padding: 7px;
}

.track_result ul.row,
ul.row-sm {
  list-style: none;
  padding: 0;
}

.track_result .itemside .info {
  padding-left: 15px;
  padding-right: 7px;
}

.track_result .itemside .title {
  display: block;
  margin-bottom: 5px;
  color: #0b1f42;
}

.track_result p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.track_result .btn-warning {
  color: #f9f5ea;
  background-color: #c3933f;
  border-color: #c3933f;
  border-radius: 4px;
  margin-top: 20px;
}

.track_result .btn-warning:hover {
  color: #f9f5ea;
  background-color: #0b1f42;
  border-color: #0b1f42;
}

/*--------------------------------------------------------------
# Clients Page
--------------------------------------------------------------*/
.client_logo {
  text-align: center;
  padding-bottom: 20px;
}

.client_logo .pagination {
  text-align: center;
  padding-top: 30px;
}

.client_logo .col-sm-3 {
  box-shadow: rgba(11, 31, 66, 0.15) 0px 2px 8px 0px;
  padding: 15px 15px;
  background: #f9f5ea;
}

.client_logo .pagination .btn {
  background-color: #c3933f;
  color: #f9f5ea;
}

.client_logo .pagination .btn-pagination {
  padding-left: 10px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #0b1f42;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  color: #f9f5ea;
  background: #c3933f;
}

#portfolio-flters li:last-child {
  margin-right: 0;
}

.images {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-gap: 7.5px;
  grid-template-columns: 50% 50%;
}

@media (min-width: 580px) {
  .images {
    grid-template-columns: 25% 25% 25% 25%;
  }
}

img {
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

.template {
  transition: all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  opacity: 0;
  position: relative;
  background: #0b1f42;
}

.template p {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #f9f5ea;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
  width: 100%;
  background: linear-gradient(
    rgba(11, 31, 66, 0),
    rgba(11, 31, 66, 0.75)
  );
  padding: 25px 10px 10px 10px;
}

.template.animate {
  transform: scale(1);
  opacity: 1;
}

#gallery-pagination {
  margin: 30px 0;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(11, 31, 66, 0.08);
  padding: 30px;
  border-radius: 4px;
  background: #f9f5ea;
}

.team .member .pic {
  overflow: hidden;
  width: 140px;
  border-radius: 4px;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #0b1f42;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #f1d5b0;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background: #0b1f42;
}

.team .member .social a i {
  color: #f9f5ea;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #c3933f;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #0b1f42;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #f1d5b0;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #c3933f;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #0b1f42;
  border-radius: 0;
  border-right: 2px solid #f9f5ea;
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: #c3933f;
}

.features .nav-link.active {
  color: #c3933f;
  border-color: #c3933f;
}

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0b1f42;
}

.features .details p {
  color: #0b1f42;
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: #f9f5ea;
    background: #c3933f;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f5ea;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(11, 31, 66, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #0b1f42;
  background: #f1d5b0;
}

.pricing h4 {
  font-size: 36px;
  color: #c3933f;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #0b1f42;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #0b1f42;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #c3933f;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #999;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f1d5b0;
  text-align: center;
}

.pricing .btn-buy {
  background: #c3933f;
  display: inline-block;
  padding: 8px 35px 9px 35px;
  border-radius: 4px;
  color: #f9f5ea;
  font-size: 14px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #0b1f42;
}

.pricing .featured h3 {
  color: #f9f5ea;
  background: #c3933f;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #c3933f;
  color: #f9f5ea;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #f1d5b0;
}

.faq .faq-item i {
  color: #c3933f;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
  color: #0b1f42;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(11, 31, 66, 0.08);
  position: relative;
  background: #f9f5ea;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #f9f5ea;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #0b1f42;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #c3933f;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f1d5b0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #f9f5ea;
  padding: 15px 15px;
  box-shadow: 0px 0px 15px rgba(11, 31, 66, 0.1);
}

.contact .co-map {
  box-shadow: 0px 0px 15px rgba(11, 31, 66, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #c3933f;
  float: left;
  width: 44px;
  height: 44px;
  background: #f1d5b0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0b1f42;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #0b1f42;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0b1f42;
  color: #f9f5ea;
}

.contact .php-email-form {
  width: 100%;
  background: #f9f5ea;
  padding: 15px 15px;
  box-shadow: 0px 0px 15px rgba(11, 31, 66, 0.1);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #f9f5ea;
  background: #0b1f42;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #f9f5ea;
  background: #c3933f;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #f9f5ea;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #c3933f;
  border-top-color: #f1d5b0;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #f1d5b0;
  background: #f9f5ea;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #c3933f;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #c3933f;
  border: 0;
  padding: 10px 24px;
  color: #f9f5ea;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0b1f42;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(11, 31, 66, 0.1);
  background: #f9f5ea;
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #0b1f42;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #c3933f;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c3933f;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #0b1f42;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #c3933f;
  color: #f9f5ea;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #0b1f42;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #f1d5b0;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #0b1f42;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #c3933f;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #f1d5b0;
}

.blog .entry .entry-footer i {
  color: #c3933f;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #0b1f42;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #c3933f;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #c3933f;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(11, 31, 66, 0.1);
  background: #f9f5ea;
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #0b1f42;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(11, 31, 66, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #0b1f42;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #0b1f42;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #c3933f;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #c3933f;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #c3933f;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(11, 31, 66, 0.1);
  background: #f9f5ea;
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  background: #f9f5ea;
  border: 1px solid #f1d5b0;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #c3933f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  background: #f9f5ea;
  border: 1px solid #f1d5b0;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #c3933f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #0b1f42;
  color: #f9f5ea;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #c3933f;
}

.blog .blog-pagination {
  color: #0b1f42;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #0b1f42;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #c3933f;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #f9f5ea;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(11, 31, 66, 0.1);
  background: #f9f5ea;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 15px 0;
  color: #0b1f42;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #f9f5ea;
  border: 1px solid #f1d5b0;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background: #f9f5ea;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: #c3933f;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  color: #f9f5ea;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #0b1f42;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #0b1f42;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #c3933f;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #c3933f;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #0b1f42;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #c3933f;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #c3933f;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #0b1f42;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #f1d5b0;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #f9f5ea;
  border: 1px solid #c3933f;
  background: #c3933f;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #c3933f;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0b1f42;
  padding: 0 0 30px 0;
  color: #f9f5ea;
  font-size: 14px;
}

#footer .footer-top {
  background: #0b1f42;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #f9f5ea;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #f9f5ea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(249, 245, 234, 0.1);
  color: #f9f5ea;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #c3933f;
  color: #f9f5ea;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #f9f5ea;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c3933f;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(249, 245, 234, 0.75);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #c3933f;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #f9f5ea;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #f9f5ea;
  color: #0b1f42;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #c3933f;
  color: #f9f5ea;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #0b1f42;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #f9f5ea;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(249, 245, 234, 0.6);
}

#footer .credits a {
  color: #c3933f;
  transition: 0.3s;
  font-weight: 600;
}

#footer .credits a:hover {
  color: #f1d5b0;
}