
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #428bca;
}

#topbar .contact-info i {
  color: #428bca;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: #5c768d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #428bca;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 10px 0;
  background: #2A1B0A;
  box-shadow: #fff;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  padding: 12px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: #B40404;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}

.nav-menu .fa
{
	
	margin-right:8px;
	
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #103453;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #428bca;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1f3548;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #9eccf4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #5c768d;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.topheader{
	
	background: #fff;
	width: auto;
	height: 30px;
	
}


.col-md-6 {
	
	margin-left: auto;
	margin-right: auto;
}


.topheader h7{
	
	color: red; 
	float: left;
	margin-left: 40px;
	
}

.topheader .fa{
	
	color:red;
	float:right;b
	padding: 5px;
	
}

.menu-bar
{
	background: #2A1B0A;
	text-align: center;
	
}

.menu-bar ul
{
	
	display:inline-flex;
	list-style: none;
	color: #fff;
	margin-left: 150px;
	
	
}
.menu-bar ul li
{
	
	width: 120px;
	margin: 15px;
	padding: 5px;
	
}
*
{
	
	margin: 0;
	padding: 0;
	
	
}

@media screen and (max-width: 800px) {
  ..topheader, .menu-bar {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}

#nav-bar
{
	position: sticky;
	top: 0;
	z-index: 10;
	border-radius:4px;
	box-shadow:0 5px 10px #999;
	
}

.navbar-brand
{
	
	padding-right: 30px;
	
	
}

.navba 
{
	
	width: 150px;
	height: 90px;
	
	
}

.navbar-nav li
{
	
	padding: 0 10px;
	
}

.navbar-nav li a
{
	
	float: right;
	text-align: left;
	
}

.navbar ul li a:hover
{
	
	color: #2A120A!important;
	
}
.navbar
{
	
background: #fff;	
	
}

.navbar-toggler
{
	
	border:none!important;
	
}

.nav-link
{
	
	color: #555!important;
	font-weight: 600;
	font-size: 16px;
	
	
}

#slider
{
	
	width: 100%;
	
	
}

.carousel-caption
{
	top: 50%;
	color: #007bff;
	transform: translateY(-50%);
	bottom: initial!important;
}
.carousel-caption h5
{
	
color: #fff;
font-size: 42;
	
	
}
#about
{
	
	padding-top: 50px;
	padding-bottom: 50px;
	color: #555;
	
	
}



#about .btn
{
	
	margin-top: 20px;
	margin-bottom: 30px;
	background: #B40404; 
	border: none;
}

#promo .btn
{
	
	margin-top: 20px;
	margin-bottom: 30px;
	background: #B40404; 
	border: none;
}


.about-content
{
	padding-top: 20px;
}

.skills-bar p
{
	
	margin-bottom: 6px;
	font-weight: 600;
	
}

.progress-bar
{
	
	border-radius: 16px; 
	
}

.progress
{
	border-radius: 16px !important; 
	margin-bottom: 20px;
}
#services
{
	
	background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8))
	,url(../images/uledi2.jpg);
	background-size: cover;
	background-position: center;
	color: #efefef !important;
	background-attachment: fixed;
	padding-top: 50px;
	padding-bottom: 50px;
}

#services h1
{
	text-align: center;
	color:efefef !important;
	padding-bottom: 10px;
}

#services h1::after
{
	content:'';
	background: #efefef;
	display: block;
	height: 3px;
	width: 170px;
	margin: 20px auto 5px;
	
}
.services
{
	
	margin-top: 40px;
	
}

.icon
{
	font-size: 40px;
	margin: 20px auto;
	padding: 20px;
	height: 80px;
	width: 80px;
	border: 1px solid #fff;
	border-radius: 50%;
}

#services p
{
	font-size: 14px;
	margin-top: 20px;
	color: #ccc;
}

.services .col-md-3:hover

{
	
background: #007bff;
cursor: pionter;
transition: 0.7s;
	
}

#team
{
	
	padding-top: 50px;
	padding-bottom: 50px;
	color: #555;
	
}

h1
{
	
	text-align: center;
	color: #B40404 !important;
	padding-bottom: 10px;
	
}

h2
{
	
	color: #2A120A!important;
	padding-bottom: 10px;
	
}

.profile-pic
{
	
	margin-top: 25px;
	border-radius:4px;
	box-shadow:0 5px 10px #999;
	
	
	
}
	
.profile-pic .img-box
{
	
	opacity: 1;
	display: block;
	position: relative;
	
		
}

.profile-pic .img-box img
{
	
	filter: grayscale(1);
	
}

.profile-pic .img-box img:hover
{
	
	filter: grayscale(0);
	cursor: pointer; 
	
}

.profile-pic h2
{
	
	font-size: 22px;
	font-weight: bold;
	margin-top: 15px;
    color: #555 !important; 	
	
}

.profile-pic h3
{
	
	font-size: 15px;
	font-weight: bold;
	margin-top: 15px;
	color: rgb(0,100,0) !important; 
	
}

#team .fa
{
	
	height: 25px;
	width: 25px;
	color: rgb(0,100,0) !important;
	background: #fff;
    padding: 4px;
    border-radius: 50%;	
	
}

.img-box ul
{
	
	padding: 15px 0;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity:0;	
	
}

.img-box ul li

{
	
	padding: 5px;
	display: inline-block;
	
	
}

.img-box ul, .img-box ul li
{
	
	transition: 0.5s;
	
	
}

.img-box:hover ul
{
	
	opacity:1;
	
}

#promo
{
	
	background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
	url(../images/pic2.jpg);
	background-size: cover;
	background-position: center;
	color: #fff;
	background-attachment: fixed;
	text-align: center;
	padding:100px;
    font-family: sans-serif;
	font-size: 38px;
	
}

#price
{
	
	padding: 40px 0;
	background: efefef;
		
}

.single-price
{
	
	margin: 10px auto;
	display: inline;
	float: left;
	width: 100%;
	background-color: #fff;
	transition: 0.5s;	
	
}

.single-price:hover
{
	
	box-shadow: 0 2px 20px #333;
	
}

.price-head
{
	
	background-color: #2196f3;
	display: inline;
	float: left;
	padding: 10px 5px;
	text-align: center;
	width: 100%;
	
}

.price-head h2
{
	
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 5px;
	padding: 5px;
	text-transform: uppercase; 
		
}

.price-head p

{
	
	font-size: 25px;
	color: #ccc;
	font-weight: bold;
	line-height: 30px;
	
	
}

#price span

{
	
	font-size: 15px;
	
	
}

.price-content
{
	
	display: inline;
	float: left;
	width: 100%;
	padding: 0 15px;
	
}

.price-content ul li
{
	
	border-bottom: 1px solid #efefef;
	padding: 15px 10px;
	list-style: none;
	
	
}

ul li:last-child
{
	
	border: none;
	
}

.fa-check-circle
{
	
	color:green;
	margin-right: 10px;
	font-size: 20px;
	
}

.fa-times-circle
{
	
	color:red;
	margin-right: 10px;
	font-size: 
	
}

.price-button
{
	
	display: inline;
	float: left;
	padding: 15px 15px 30px;
	text-align: center;
	width: 100%;
	
}

.buy-btn

{
	
	background-color:#2196f3;
	border-radius: 3px;
	display: inline-block;
	font-size: 18px;
	padding: 15px 50px;
	transition: 0.5s;
	
	
}

.buy-btn:hover
{
	border-color: 1px solid #fff;
	background-color: #3f51b5; 
}

a
{
	text-decoration: none!important;
	color: #fff!important;
}

#social-media
{
	
	background: #f8f9fa;
	padding: 100px 0;
	
}

#social-media p
{
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 30px; 
}

.social-icons img
{
	
	width:60px;
	transition:0.5s;
	
}

.social-icons a:hover img
{
	transform: translateY(-10px);
}

#testimonials

{
	
	padding-top: 50px;
	padding-bottom: 50px; 
	
}

#testimonials .row

{
	margin-top: 30px;
}
.col-md-4
{
	
	margin: 40px auto;
	
}

.profile
{
	
	padding: 70px 10px 10px;
	background-color: #2A120A;
	color: #fff;
	
	
}

.user
{
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.profile img
{
	
	top: -60px;
	position: absolute;
	left: calc(50% - 60px);
	border: 10px solid #fff;
	
}

.profile h3
{
	
	font-size: 20px;
	margin-top: 15px;
	color: #fff;
	
}

#testimonials span
{
	
	font-size: 12px;
	color: #B40404;
	
}
blockquote
{
	font-size: 16px;
	line-height; 30px;
}

blockquote::before
{
	content: '\93';
	font-size: 50px;
	color: #555;
	position: relative;
	line-height: 20px;
	bottom: -15px;
	right: 5px;
	
}

blockquote::after
{
	content: '\94';
	font-size: 50px;
	color: #555;
	position: relative;
	line-height: 10px;
	bottom: -15px;
	right: 5px;
	
}

.profile:hover
{
	
	box-shadow: 0 0 15px 5px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: 0.5s;
	
}

#contact
{
	
background: silver;
padding-top: 40px;
padding-bottom: 40px;
color: #777;	
	
}

.contact-form
{
	
	padding: 15px;
	
}

.form-control
{
	
	border-radius: 0 !important;
	border: none !important;
	
}

::placeholder
{
	color: #999 !important;
}
.follow
{
	background: #fff;
    padding: 10px;
	margin: 15px;
	
}	


.menu-bar ul li a
{
	text-decoration: none;
	color: #fff;
}

.active, .menu-bar ul li:hover
{
	background: #B40404;
	border-radius: 3px;
}

.menu-bar .fa
{
	
	margin-right:8px;
	
}
.sub-menu-1
{
display:none;	
}
 .menu-bar ul li:hover .sub-menu-1
 {
	 
	 display: block;
	 position: absolute;
	 background: rgb(0,100,0) ;
	 margin-top: 15px;
	 margin-left: -15px;
	 
 }
 
  .menu-bar ul li:hover .sub-menu-1 ul
  {
	  
	  display: block;
	  margin: 10px;
	  
  }
 .menu-bar ul li:hover .sub-menu-1 ul li
 {
	 width: 150px;
	 padding: 10px;
	 border-bottom: 1px dotted #fff;
	 background: transparent;
	 border-radius: 0;
	 text-align: left;
 }
 
  .menu-bar ul li:hover .sub-menu-1 ul li:last-child
  {
	  border-bottom:none;
  }
  
   .menu-bar ul li:hover .sub-menu-1 ul li a:hover
   {
	 color: #b2ff00;  
   }
   
   .section-header
   {
	   text-align:center;
	   margin-bottom:30px;
	   margin-top: 15px;
	   
   }
   
   .section-header p
   {
	   font-size: 18px;
   }
   
   .single-service
   {
	   border: 1px solid #2A120A;
	   text-align: center;
	   background: #fff
   }
   
   .service-bg
   {
	   height: 200px;
	   position: relative;
   }
   
   .service-bg-1
   {
	 background: url(../images/pic1.jpg);
    -webkit-background-size: cover;
     background-size: cover;
     background-position: center;	 
   }
   .service-bg-2
   {
	 background: url(../images/slide.jpeg);
    -webkit-background-size: cover;
     background-size: cover;
     background-position: center;	 
   }
   .service-bg-3
   {
	 background: url(../images/john4.jpeg);
    -webkit-background-size: cover;
     background-size: cover;
    

	background-position: center;	 
   }
   
   .servic{
	
	margin: 20px auto;
	text-align: center;
	
	
}

blockquote { 
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 40px;
  margin-right: 40px;
}

#serv {
background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
	url(../images/pic1.jpg);
	background-size: cover;
		background-position: center;
	color: #fff;
	background-attachment: fixed;
	text-align: center;
	padding:100px;
	
	
}

.col-md-3:hover {
	
	box-shadow: 5px 7px 9px -3px rgba(255,255,255,0.5);
	cursor:pointer;
	
}


   
 .service-bg h2
   {
	 color: #fff;
	 background: #2120A;
     font-size: 17px;
	 text-align: center;
	 font-weight:700;
	 padding: 15px;
	 position: absolute;
	 left: 8%;
	 width: 84%;
	 margin: 0;
	 bottom: -25px;
	 border-radius: 50px;
	 letter-spacing: 2px;
	  
   }
   
   .single-service:hover .service-bg h2
   {
	   background: #fff;
	   transition: .9s;
	   color: #2bab0d;
   }
   
   .service-text
   {
	   padding: 50px 30px 20px;
	   font-size: 15px;
	   font-weight: 400;
   }
   .service-text p:last-child
   {
	   margin:0;
	   line-height:1.8;
	   
   }
   
   .btn-area
   {
	   display: inline-block;
	   color: #333;
	   font-size: 17px;
	   font-weight: 700;
	   margin-top:30px;
	   text-transform: uppercase;
   }
   
   .gallery
   {
	   border: 3px solid #333;
	   text-align: center;
	   background: #fff
   }
   
   #Gallery 
   {
	  
	color: #fff;
	background-attachment: fixed;
	text-align: center;
	padding:100px;
    font-family: sans-serif;
	font-size: 38px; 
   }
   
 h1::before
{
	
	content: '';
	background:#555;
	height: 5px;
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	transform: translateY(63px);
	
}



h1::after
{
	
	content: '';
	background:#555;
	height: 10px;
	width: 50px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	display: block;
	transform: translateY(8px);
	
} 

#footer {
  background:#2A120A;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #B40404;
;
  border-top: 1px solid #768fa6;
  border-bottom: 1px solid #67839c;
  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 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;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #768fa6;
  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: #428bca;
  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 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  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: #9eccf4;
}

#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: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background:#2A120A;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #9eccf4;
}
#hero {
  width: 100%;
  height: calc(100vh - 114px);
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 114px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: center;
}

@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
}

#hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin: auto;
  margin-bottom: 10px;
  
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .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: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #B40404;
}

#hero .btn-get-started:hover {
  background: #2A120A;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

   