/**
 

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #1a1a1a;
}

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

a:hover {
  color: #8b0000;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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 #c1121f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(193, 18, 31, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  background-size: cover;
  position: relative;
  padding: 40px 15px;
}

#hero .hero-logo {
  max-width: 420px;
  width: 80%;
  height: auto;
}

@media (max-width: 576px) {
  #hero .hero-logo {
    max-width: 280px;
  }
}

#hero .copyright {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 15px;
  }
}

#hero > .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

#hero p {
  color: #45505b;
  margin: 18px 0 0 0;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #c1121f !important;
  letter-spacing: 1px;
  font-weight: 600;
}

#hero .social-links {
  margin-top: 24px;
}

#hero .social-links a {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #1a1a1a;
  border-radius: 50%;
  line-height: 1;
  margin: 0 8px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

#hero .social-links a:hover {
  background: #c1121f;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}
