

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&family=Quicksand:wght@300;400;554;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600&family=Nunito:wght@500&family=Quicksand:wght@300;400;554;600;700&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Quicksand"  , sans-serif;
  font-weight: bold;
 background: #1d1d1d;
}

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

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

h1,h3,h2, h4, h5, h6,p {
  font-family: "Quicksand", sans-serif;
  color: #fff;
}
h7  {
  font-family: "Satisfy", sans-serif;
  color: #000000;
  font-size: 200%;
  font-weight:normal;
}
h77  {
  font-family: "Satisfy", sans-serif;
  color: #ffffff;
  font-size: 200%;
  font-weight:normal;
}
h8  {
  font-family: "Satisfy", sans-serif;
  color: #ffffff;
  font-size: 450%;
  font-weight:normal;
}
h9  {
  font-family: "Satisfy", sans-serif;
  color: #9b9b9b;
  font-size: 300%;
  font-weight:normal;
}
h10  {
  font-family: "Quicksand", sans-serif;
  color: #ffffff;
  font-size: 300%;
  font-weight:normal;
}
h11  {
  font-family: "Satisfy", sans-serif;
  color: #9b9b9b;
  font-size: 120%;
  font-weight:normal;
}


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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff2a13;
  border-top-color: white;
  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: #ff2a13;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #972013;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #15051767;
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  height: 70px;
}
@media (max-width: 992px) {
  #header {
    height: 60px;
  }
}
#header.fixed-top, #header.header-inner-pages {
 /* background: #0c030ed5;*/
  background: linear-gradient(to right, #da0000f3, #700000f5) ;
}


#header.fixed-top {
  position: fixed;
}
#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}
@media (max-width: 991px) {
  .scrolled-offset {
    margin-top: 60px;
  }
  .img-fluid2 {
    width: 100%;
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}
.header-social-links a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header-social-links a i {
  line-height: 0;
}
.header-social-links a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# 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 {
  white-space: nowrap;
  padding: 10px 12px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  text-shadow: rgba(19, 19, 18, 0.267) 2px 0 10px;
  white-space: nowrap;
  transition: 0.3s;
  color: white;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -7px;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin-left:10px;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(to right, #da0000, #700000); 
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius:5px ;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  color: #ffffff;
}
.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: #ffffff;
  font-size:17px;
}
.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: rgb(248, 248, 248);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  text-shadow: rgba(19, 19, 18, 0.267) 2px 0 10px;
  font-weight: bold;
  background: rgba(236, 233, 233, 0.192);
  color: rgb(255, 255, 255); 
  padding: 10px 7px; 
  border-radius: 7px;
}

@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: linear-gradient(to right, #da0000, #700000); 
  overflow-y: auto;
  transition: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius:5px ;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 13px;
  color: #ffffff;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: rgb(255, 255, 255);
  font-size:25px;

}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 1px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background: linear-gradient(to right, #da0000, #700000); 
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  color: rgb(255, 255, 255);
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ffffff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/Must-Visit\ Coffee\ Shops\ in\ Seattle\ _\ Adventures\ of\ A+K_auto_x2.jpg") top center;
  background-size:cover;
  position: relative;
  margin-bottom: -70px;
}
#hero2 {
  width: 100%;
  height:100vh;
  background: url("../img/hero1.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
#hero3 {
  width: 100%;
  height:100vh;
  background: url("../img/oscar3.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
#hero4 {
  width: 100%;
  height:100vh;
  background: url("../img/familial\ manipulation.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
#hero5 {
  width: 100%;
  height:100vh;
  background: url("../img/sylvain-thrd-L6WY8VY7k7s-unsplash\ \(1\).jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
#hero6 {
  width: 100%;
  height:100vh;
  background: url("../img/aroma\ lait.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
#hero7 {
  width: 100%;
  height:100vh;
  background: url("../img/isabela-kronemberger-hvcQJUFkvNg-unsplash.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -70px;
}
@media (max-width: 992px) {
  #hero {
    margin-bottom: -60px;
  }
 }
@media (max-width: 992px) {
  #hero2 {
    margin-bottom: -60px;
    background: url("../img/media.png") top center;
    width: 100%;
    height:100vh;
    background-size: cover;
    position: relative;
    margin-bottom: -70px;
  }
}
@media (max-width: 992px) {
  #hero3 {
    margin-bottom: -60px;
  }
}
@media (max-width: 992px) {
  #hero4 {
    margin-bottom: -60px;
  }
}
@media (max-width: 992px) {
  #hero5 {
    margin-bottom: -60px;
  }
}
@media (max-width: 992px) {
  #hero6 {
    margin-bottom: -60px;
  }
 }
 @media (max-width: 992px) {
  #hero7 {
    margin-bottom: -60px;
  }
 }
#hero:before {
  content: "";
  background: rgba(21, 5, 23, 0.11) linear-gradient(rgba(26, 0, 33, 0.24) 0%, rgba(26, 0, 33, 0.377) 5%, rgba(38, 6, 51, 0.411) 40%, rgba(190, 8, 8, 0.603) 76%, rgba(224, 14, 7, 0.562) 94%, rgba(211, 14, 7, 0.479) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero2:before {
  content: "";
  
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero3:before {
  content: "";
  background: rgba(14, 6, 15, 0.185) linear-gradient(rgba(11, 1, 14, 0.212) 0%, rgba(6, 3, 7, 0.288) 5%, rgba(20, 5, 26, 0.377) 40%, rgba(44, 22, 27, 0.788) 76%, rgba(41, 22, 22, 0.822) 94%, rgba(31, 4, 3, 0.76) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero4:before {
  content: "";
  background: rgba(14, 6, 15, 0.164) linear-gradient(rgba(3, 43, 3, 0.411) 0%, rgba(15, 58, 28, 0.425) 5%, rgba(13, 58, 27, 0.527) 40%, rgba(12, 75, 26, 0.521) 76%, rgba(13, 66, 7, 0.575) 94%, rgba(4, 77, 22, 0.589) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero5:before {
  content: "";
  background: rgba(31, 13, 34, 0.13) linear-gradient(rgba(30, 3, 43, 0.24) 0%, rgba(33, 8, 49, 0.5) 5%, rgba(32, 13, 58, 0.356) 40%, rgba(34, 9, 48, 0.726) 76%, rgba(44, 6, 61, 0.685) 94%, rgba(43, 15, 59, 0.699) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero6:before {
  content: "";
  background: rgba(31, 13, 34, 0.007) linear-gradient(rgba(30, 3, 43, 0.014) 0%, rgba(33, 8, 49, 0.055) 5%, rgba(13, 41, 58, 0.144) 40%, rgba(13, 54, 73, 0.822) 76%, rgba(5, 36, 46, 0.7) 94%, rgba(12, 38, 44, 0.5) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero7:before {
  content: "";
  background: rgba(28, 34, 13, 0.144) linear-gradient(rgba(40, 43, 3, 0.212) 0%, rgba(49, 48, 8, 0.274) 5%, rgba(211, 25, 0, 0.26) 40%, rgba(73, 16, 14, 0.329) 76%, rgba(0, 0, 0, 0.329) 94%, rgba(3, 1, 1, 0.308) 100%) repeat scroll 0% 0%;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero2 .hero2-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero3 .hero3-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero4 .hero4-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero5 .hero5-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero6 .hero6-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero7 .hero7-container {
  position:absolute;
  bottom: 0;
  top: 0;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero2 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero3 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero3 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero4 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero4 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero5 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero5 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero6 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero6 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero7 h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 50px;
  text-transform: none;
  color: #fff;
}
#hero7 h7 {
  background: rgba(0, 0, 0, 0.336);
  color: rgb(255, 255, 255);
  font-size: 26px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 7px;
}
#hero h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}
#hero2 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}
#hero3 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}
#hero4 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 24px;
}
#hero5 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 20px;
}
#hero6 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 20px;
}
#hero7 h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 20px;
}
#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero2 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero3 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero4 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero5 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero6 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero7 .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}
#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero2 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero3 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero4 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero5 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero6 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
#hero7 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero2 {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero3 {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero4 {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero5 {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero6 {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero7 {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero3 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero4 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero5 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero6 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero7 h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  #hero2 h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero2 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero3 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero4 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero5 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero6 h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero7 h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

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

.section-bg {
  background-color: #1d1d1d;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff2a13;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
  color: #919191;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.content{
  color: #fff;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ff2a13;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ff2a13;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff2a13;
}
.about .content .btn-learn-more:hover {
  background: #972013;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0;
  
}
.counts .counters span {
  font-size: 48px;
  display:block;
  color: #ffffff;
  scroll-margin-block-end: 10px;
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values{
  background-color: #000000;
}
.our-values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.our-values .card-body {
  z-index: 10;
  background: #000000;
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;

}
.our-values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.our-values .card-title a {
  color: #ff2a13;
}
.our-values .card-text {
  color: #ffffff;
}
.our-values .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}
.our-values .read-more a:hover {
  text-decoration: underline;
}
.our-values .card:hover .card-body {
  background: #292929;
}
.our-values .card:hover .read-more a, .our-values .card:hover .card-title, .our-values .card:hover .card-title a, .our-values .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(0);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.services .icon-box:hover {
  transform: translateY(-5px);
}
.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}
.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}
.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #111;
}
.services .icon-box:hover .title a {
  color: #972013;
}
.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
  background-color: #000000;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 0%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 20px solid rgba(255, 255, 255, 0);
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: rgb(255, 255, 255);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgb(216, 216, 216);
  margin: 0 0 0 45px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #7c7c7c;
  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-family: 'Cairo', sans-serif;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #1d1d1d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #1d1d1d;
  opacity: 1;
  border: 1px solid #ff2a13;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff2a13;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: url("../img/Purple\ Gradient\ Graphic\ Delivery\ Service\ Company\ Facebook\ Cover.png") top center;
  background-size: cover;
  padding: 60px 0;
 }
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #972013;
  border: 2px solid #972013;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #972013;
}
.portfolio #portfolio-flters li.filter-active::before, .portfolio #portfolio-flters li.filter-active::after {
  color: #ff2a13;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.5s ease-in-out;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.836);
  padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: rgb(0, 0, 0);
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgb(0, 0, 0);
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #972013;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.2);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background-color: #000000;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
 
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #1d1d1d;
  opacity: 1;
  border: 1px solid #ff2a13;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff2a13;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 5, 23, 0.08);
  background: #1d1d1d;
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(48, 48, 48);
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #fff;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team{
  color: #fff;
  background-color: #000000;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #313131;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #150517;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.team .member .social a i {
  line-height: 0;
}
.team .member .social a:hover {
  background: #972013;
}
.team .member .social i {
  font-size: 18px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #ffffff;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq{
  color: #fff;
}
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #313131;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ff2a13;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #fff;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #ffffff;
}
.faq .faq-list a.collapsed:hover {
  color: #972013;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact{
  background: #000000;
  color: #fff;
}
.contact .info {
  border-top: 3px solid #ff2a13;
  border-bottom: 3px solid #ff2a13;
  padding: 30px;
  background: #313131;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #ff2a13;
  float: left;
  width: 44px;
  height: 44px;
  background: #1d1d1d;
  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: #ffffff;
}

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

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #972013;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #972013;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #ff2a13;
  border-bottom: 3px solid #ff2a13;
  padding: 30px;
  background: #313131;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
}

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ff2a13;
  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: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  -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: 0;
  box-shadow: none;
  font-size: 14px;

}

.contact .php-email-form input {
  height: 44px;
  background-color:#313131 ;
  color: #fff;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  background-color:#313131 ;
  color: #fff;
}

input[type="submit"] {
  background: #ff2a13;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}


input[type="submit"]:hover {
  background: #972013 ;
}

@-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: #1d1d1d;
  min-height: 40px;
  color: #fff;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.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: #972013;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000000;
  padding: 0 0 30px 0;
  font-size: 14px;

  }

#footer .footer-newsletter {
  padding: 50px 0;
  background: #1d1d1d;
  text-align: center;
  font-size: 15px;
  color: rgb(114, 114, 114);
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #1d1d1d;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;

}

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

#footer .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: #333232;
  color: rgb(255, 255, 255);
  font-weight: bold;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #972013;
}

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

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

}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  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: #ff2a13;
  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: #a7a7a7;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff2a13;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000000;
  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: #ff2a13 ;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  color: #fff;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}

#footer .credits a {
  color: #ff2a13;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}
/*--------------------------------------------------------------
# projects-section
--------------------------------------------------------------*/
.projects-section {
  padding: 10rem 0;
  
}
.project-text{
  background: #1d1d1d;
}
.projects-section .featured-text {
  padding: 2rem;
  margin-right: 10px;
 
}
@media (min-width: 992px) {
  .projects-section .featured-text {
    padding: 0 0 0 2rem;
    border-left: 0.5rem solid #C0392B;
  }
}
.projects-section .project-text {
  padding: 3rem;
  font-size: 90%;

}
@media (min-width: 992px) {
  .projects-section .project-text {
    padding: 5rem;

  }
  .projects-section .project-text hr {
    border-color: #ff2a13;
    border-width: 0.25rem;
    width: 30%;
   
  }
}
.img-fluid1 {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.267));
}
.img-fluid2 {
  width: 100%;
  height: 500px;
  border-radius: 5px;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.267));
}
.img-fluid3 {
  width: 100%;
  height: auto;
  border-radius: 5px;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.267));
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Hero1155 Section
--------------------------------------------------------------*/
#hero1155 {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, #6b0101d0 0%, #c50d0d 100%);
  padding: 0;
  margin-top: 0px;
}
#hero1155 .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 50vh;
  padding-top: 10px;
}
#hero1155 h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
#hero1155 p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero1155 .carousel-control-prev-icon, #hero .carousel-control-next-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero1155 .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero1155 .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #ef6603;
}
#hero1155 .btn-get-started:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1024px) {
  #hero1155 p {
    width: 60%;
  }
  #hero1155 .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
  
}
@media (max-width: 768px) {
  #hero1155 .carousel-container {
    height: 90vh;
  }
  #hero1155 h2 {
    font-size: 28px;
  }
}

.hero1155-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ff2a13;
}
.why-us .box h4 {
  font-family: "Satisfy", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}
.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {
  background: #972013;
  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;
}


/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
  background-color: #000000;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 5px;
  transition: 0.3s;
  color: #ffffff;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #8a8a8a;
  background-color: #313131;
}
.specials .nav-link.active {
  color: #ffa602;
  border-color: #ff2a13;
  background-color: #1d1d1d;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-family: "Satisfy", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f5a835;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: rgb(255, 255, 255);
    background: #ff2a13;
  }
}


/*--------------------------------------------------------------
# table
--------------------------------------------------------------*/

.rwd-table {
  margin:  0;

}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: 0.5em;
}
.rwd-table td:last-child {
  padding-bottom: 0.5em;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
  text-align: center;

}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
   
  }
}
.rwd-table th,
.rwd-table td {
  text-align: left;
  
}
@media (min-width: 480px) {
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
    
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
}


.rwd-table {
  background: #1a1a1a;
  color: #fff;
  border-radius: 0PX;
  overflow: hidden;
}
.rwd-table tr {
  border-color: #426d7e;
}
.rwd-table th,
.rwd-table td {
  margin: 0.5em 1em;
}
@media (min-width: 480px) {
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}
.rwd-table th,
.rwd-table td:before {
  color: rgb(202, 13, 0);
}

