/**
  * Filename: style.css
  * Author: Myles Joubert
*/
 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
 
a {
  color: #cc1616;
  text-decoration: none;
}
 
a:hover {
  color: #e82d2d;
  text-decoration: none;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
 
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #cc1616;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}
 
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
 
.back-to-top:hover {
  background: #e72323;
  color: #fff;
}
 
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
 
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
 
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #cc1616;
  border-top-color: #efefef;
  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);
  }
}
 
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
 
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #191919;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}
 
#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
 
#topbar .contact-info a:hover {
  color: #fff;
}
 
#topbar .contact-info i {
  color: #cc1616;
  line-height: 0;
  margin-right: 5px;
}
 
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
 
#topbar .social-links a {
  color: #7323a1;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
 
#topbar .social-links a:hover {
  color: #fff;
}
 
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(25, 25, 25, 0.95);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}
 
#header.fixed-top {
  background: #191919;
}
 
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
 
#header .logo a {
  color: #fff;
}
 
#header .logo img {
  max-height: 150px;
}
 
.scrolled-offset {
  margin-top: 70px;
}
 
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
 
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
 
.navbar li {
  position: relative;
}
 
.navbar>ul>li {
  margin-left: 5px;
}
 
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #fff;
  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 {
  background: #cc1616;
}
 
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
 
.navbar .dropdown ul li {
  min-width: 200px;
}
 
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #191919;
}
 
.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: #fff;
}
 
.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
 
.mobile-nav-toggle.bi-x {
  color: #cc1616;
}
 
@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(0, 0, 0, 0.9);
  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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
 
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #191919;
}
 
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cc1616;
  background: none;
}
 
.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
 
.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: #cc1616;
}
 
.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
 
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  background: url("../img/background.png") top center;
  background-size: cover;
  position: relative;
}
 
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
 
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}
 
#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}
 
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}
 
#hero .btn-get-started:hover {
  background: #cc1616;
  border-color: #000000;
}
 
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
 
@media (max-width: 768px) {
  #hero {
    text-align: center;
  }
 
  #hero .container {
    padding-top: 40px;
  }
 
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
 
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Login 
/*--------------------------------------------------------------*/

    body {
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
    }
    .login-container {
      width: 300px;
      margin: 100px auto;
      padding: 20px;
      border: 1px solid #ccc;
      background-color: #fff;
      border-radius: 5px;
    }
    .login-container h2 {
      text-align: center;
    }
    .login-container label {
      display: block;
      margin-bottom: 10px;
    }
    .login-container input[type="text"],
    .login-container input[type="password"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 3px;
    }
    .login-container input[type="submit"] {
      width: 100%;
      padding: 10px;
      background-color: #cc1616;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .login-container input[type="submit"]:hover {
      background-color: #cc1616;
    }
 
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
 
.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
 
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}
 
.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}
 
.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
 
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
 
  .section-title span {
    font-size: 38px;
  }
}
 
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
 
.about .content ul {
  list-style: none;
  padding: 0;
}
 
.about .content ul li {
  padding-bottom: 10px;
}
 
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cc1616;
}
 
.about .content p:last-child {
  margin-bottom: 0;
}
 
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 10px;
}
 
.why-us .box {
  height: 350px;
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}
 
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ed5b5b;
}
 
.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #191919;
}
 
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
 
.why-us .box:hover {
  background: #cc1616;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
 
.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}
 
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f2f2f2;
  padding: 15px 0;
  text-align: center;
}
 
.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
 
.clients img:hover {
  filter: none;
  transform: scale(1.2);
}
 
@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}
 
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
 
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #cc1616;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}
 
.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
 
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #fce5e5;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
 
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
 
.services .icon-box h4 a {
  color: #191919;
}
 
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
 
.services .icon-box:hover {
  background: #dddddd;
  border-color: #dddddd;
  padding: 70px 20px 90px 20px;
}
 
.services .icon-box:hover .icon {
  background: #fff;
}
 
.services .icon-box:hover .icon i {
  color: #cc1616;
}
 
.services .icon-box:hover .icon::before {
  background: #e82d2d;
}
 
.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}
 
/*--------------------------------------------------------------
# Cta [Mission statement]
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/background2.png") fixed center center;
  background-size: cover;
 
}
 
.cta h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
 
.cta p {
  color: #fff;
}
 
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px;   
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
 
.cta .cta-btn:hover {
  background: #7323a1;
  border: 2px solid #000000;
}
 
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 30px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
 
.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #191919;
}
 
.pricing .box h4 {
  font-size: 42px;
  color: #cc1616;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}
 
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
 
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
 
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #191919;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
 
.pricing .box ul li {
  padding-bottom: 16px;
}
 
.pricing .box ul i {
  color: #cc1616;
  font-size: 18px;
  padding-right: 4px;
}
 
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
 
.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}
 
.pricing .box .btn-buy {
  background: #cc1616;
  display: inline-block;
  padding: 10px 40px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
 
.pricing .box .btn-buy:hover {
  background: #e82d2d;
}
 
.pricing .featured {
  background: #cc1616;
  box-shadow: none;
  color: #fff;
}
 
.pricing .featured h3,
.pricing .featured h4,
.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul .na {
  color: #fff;
}
 
.pricing .featured h4 span {
  color: rgba(255, 255, 255, 0.58);
}
 
.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}
 
.pricing .featured .btn-buy {
  background: rgba(255, 255, 255, 0.2);
}
 
.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #cc1616;
}
 
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
 
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
 
.team .member img {
  max-width: 50%;
  border-radius: 0;
  margin: 0 0 30px 0;
}
 
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
 
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
 
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
 
.team .member .social {
  margin-top: 15px;
}
 
.team .member .social a {
  color: #919191;
  transition: 0.3s;
}
 
.team .member .social a:hover {
  color: #7323a1;
}
 
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
 
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------
.contact .info-box {
  color: #444444;
  text-align: center;
  padding: 20px 0 30px 0;
}
 
.contact .info-box i {
  font-size: 32px;
  color: #cc1616;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f5a0a0;
}
 
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
 
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
 
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}
 
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}
*/
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #efefef;
}
 
.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}
 
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #333333;
  content: "/";
}
 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
 
#footer .footer-top {
  padding: 30px 0 30px 0;
}
 
#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  color: #fff;
  border-top: 4px solid #cc1616;
  text-align: center;
  padding: 30px 20px;
}
 
#footer .footer-top .footer-info h3 {
  font-size: 36px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
 
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
 
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
 
#footer .footer-top .social-links a:hover {
  background: #7323a1;
  color: #fff;
  text-decoration: none;
}
 
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
 
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
 
#footer .footer-top .footer-links h2 {
  color: #fff;
  text-decoration: none;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ed5b5b;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
 
#footer .footer-top .footer-links ul a:hover {
  color: #eb4444;
}
 
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}
 
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
 
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #cc1616;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}
 
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #e82d2d;
}
 
#footer .copyright {
  border-top: 1px solid #262626;
  text-align: center;
  padding-top: 30px;
}
 
#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
 
#footer .credits a {
  color: #e82d2d;
}
 
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
 
.contact-form {
  margin: auto;
  max-width: 550px;
  background-color: #191919;
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #fff;
  }
 
.contact-form h1 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
}
 
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #0c0c0c;
  font-size: 14px;
  color: #fff;
}
 
.contact-form textarea {
  height: 150px;
}
 
.contact-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #cc1616;
  color: #fff;
  transition: 0.3s;
}
 
.contact-form input[type="submit"]:hover {
  background: #e82d2d;
}
.form-input {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #0c0c0c;
  margin-bottom: 1rem;
  background-color: #0c0c0c;
  color: #000;
}
 
#service {
  background-color: #0c0c0c;
  color: #fff;
}
 
/*--------------------------------------------------------------
# text block
--------------------------------------------------------------*/
.text-block {
  padding: 30px;
  font-size: 16px;
  text-align: left;
  position: relative;
}

/* Add this CSS rule to reduce the margin on the h2 element inside .text-block */
.text-block h2 {
  margin-top: 0 !important; /* Add !important to ensure it takes precedence */
}

/*--------------------------------------------------------------
# selection general left
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title-left {
  text-align: left;
  padding: 30px 0;
  position: relative;
}

.section-title-left h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}
 
.section-title-left span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}
 
.section-title-left p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
 
@media (max-width: 575px) {
  .section-title-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
 
  .section-title-left span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# job block
--------------------------------------------------------------*/
.job-block-container {
  background-color: #f2f2f2; /* Background color for the container */
  padding: 20px; /* Padding around the container */
  border: 1px solid #ccc; /* Border to separate the container */
  font-size: 16px; /* Font size */
  line-height: 1.5; /* Line height for spacing */
  margin-bottom: 10px; /* Add margin between job blocks */
}

.job-block {
  margin-bottom: 20px; /* Add margin between individual job listings */
}

.job-block a {
  text-decoration: none; /* Remove underline from links */
  color: #333; /* Change link color */
}

/* CSS for job blocks */
.job-block {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.job-block h2 {
  font-size: 24px;
  margin-top: 10px;
}

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

/* Responsive CSS */
@media (max-width: 768px) {
  .job-block {
    margin-bottom: 20px;
  }
}

/* CSS for job containers */
.job-container {
  display: flex;
  flex-direction: column; /* Display jobs vertically */
}

/* CSS for job blocks */
.job-block {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; /* Add transition for border color, text color, transform, and box shadow */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow */
}

.job-block:hover {
  border-color: #cc1616 !important; /* Red border color on hover */
  color: #333 !important; /* Keep the original text color on hover */
  transform: translateY(-5px); /* Move the block up by 5 pixels on hover */
  box-shadow: 0 0 20px rgba(231, 35, 35, 0.4); /* Increase box shadow on hover */
}

/* Responsive CSS */
@media (max-width: 768px) {
  .job-block {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# job application block
--------------------------------------------------------------*/
#job-application {
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

.job-form {
  text-align: left;
}

.job-form .form-group {
  margin-bottom: 20px;
}

.job-form label {
  font-weight: bold;
}

.job-form input[type="text"],
.job-form input[type="email"],
.job-form select,
.job-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 5px 0;
  box-sizing: border-box;
  font-size: 16px;
}

.job-form .apply-button {
  text-align: center;
}

/*--------------------------------------------------------------
# Page spacing block
--------------------------------------------------------------*/
.spacing {
  margin: 20px 0; /* Add margin for spacing */
  padding: 20px; /* Add padding for spacing */
}

/*--------------------------------------------------------------
# Top paragraph spacing block
--------------------------------------------------------------*/
.top-paragraph {
  margin: 40px 0;
  padding: 0;
}

