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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

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

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #ff0004;
}

#header .logo img {
  max-height: 45px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/bg.jpg") bottom center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 60px;
}

#hero h2 {
  margin: 0;
  font-size: 90px;
  font-weight: 600;
  color: #fff;
  text-shadow: 4px 4px #000;
}
#hero h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
}
#hero h3 span{
  background-color: #c40909;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

@media (max-width: 1024px) {
  #hero {
    text-align: center;
    padding-top: 58px;
    height: 100vh;
    background: url(../img/mob-banner.webp) center no-repeat;
    background-size: cover;
  }
  #hero h3 {
    font-size: 60px;
    line-height: 85px;
  }
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
    height: 100vh;
    background: url(../img/mob-banner.webp) center no-repeat;
    background-size: cover;
  }

  #hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  #hero h2 {
    font-size: 65px;
    line-height: 60px;
    text-shadow: 3px 2px #000;
  }
  #hero h3 {
    font-size: 42px;
    line-height: 70px;
  }
  #hero h3 span{
    font-size: 50px;
}
}

@media (max-width: 500px) {
  #hero h1 {
    font-size: 38px;
  }

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

  #hero h3 {
    font-size: 22px;
    line-height: 50px;
  }
  #hero h3 span {
        font-size: 35px;
    }

  #hero {
    padding-top: 40px;
  }
}  
  @media (max-width: 320px) {
  #hero h1 {
    font-size: 38px;
  }

  #hero h2 {
    font-size: 36px;
    line-height: 35px;
  }

  #hero h3 {
    font-size: 22px;
    line-height: 45px;
  }
  #hero h3 span {
        font-size: 28px;
    }

  #hero {
    padding-top: 10px;
  }
}
.logo-box{
  padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #131313;
}
#footer .social-links a {
font-size: 18px;
display: inline-block;
background: #2b2b2b;
color: #fff;
line-height: 1;
padding: 8px 0;
margin-right: 4px;
border-radius: 4px;
text-align: center;
width: 36px;
height: 36px;
transition: 0.3s;
}

#footer .social-links a:hover {
background: #0153aa;
color: #fff;
text-decoration: none;
}