/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", serif;
  color: #444444;
  background: #8A3324;
}

a {
  color: #4154f1;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Georgia", serif;
}

@font-face {
  font-family: Cambria;
  src: url("..fonts/cambria.woff");
} 
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 120px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #E9692C;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #8A3324;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
  section {
    padding: 60px 0;
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #8A3324;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #E9692C;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

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

.header.header-scrolled {
  background: #8A3324;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header.header-scrolled a:hover{
  color: #fff;
}

.header-scrolled .navbar .getstarted:hover{
  color: #fff;
}

.header-scrolled .navbar a.active{
  color: #fff;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}


.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 1px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #8A3324;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #E5E7E6;
  border-top-color: #E9692C;
  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);
  }
}

/*--------------------------------------------------------------
# Dividers
--------------------------------------------------------------*/
.divider-orange {
  background:  url("../img/divider-orange.jpg") center center;
  background-size: cover;
  width: 100%;
  padding: 40px 0;
}

.divider-grey {
  background:  url("../img/divider-grey.jpg") center center;
  background-size: cover;
  padding: 40px 0;
}

.divider-clouds-up {
  background:  url("../img/clouds-up.png") center center;
  background-size: 100% 100%;
  padding: 60px 0;
  margin-top: -100px;
}

.divider-clouds-down {
  background:  url("../img/clouds-down.png") center center;
  background-size: 100% 100%;
  padding: 60px 0;
  margin-top: -100px;
  //z-index: 9999;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  //padding: 10px 0 10px 30px;
  padding: 0px 15px 0px 15px;
  font-size: 18px;
  font-weight: 400;
  color: #e5e7e6; 
  white-space: nowrap;
  //transition: width 2s linear;
    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: 3px;
  bottom: -5px;
  left: 20;
  background-color: #E5E7E6;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 70%;
  background-color: #E9692C;
}


.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar a:hover i {
  color: #E5E7E6;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #E9692C;
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 4px;
  color: #fff;
  border-style: none;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #4CBB17;

}


.navbar .shop-now a:hover:before, .navbar .shop-now li:hover > a:before, .navbar .shop-now .active:before {
  visibility: hidden;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.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: #4154f1;
}

.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:hover {
  color: #E9692C;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.mobile-nav-toggle.bi-x:hover {
  color: #E9692C;
}

@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.5);

  transition: 0.3s;
}

.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;
  border-radius: 10px;
  background-color: #8A3324;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #E9692C;
}


.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.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: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.navbar .search,
.navbar .search:focus {
  background: rgba(0,0,0,0);
  padding: 8px 20px;
  margin-left: 10px;
  border-radius: 4px;
  color: #fff;
  border: none;
}

.navbar .search:hover,
.navbar .search:focus:hover {
  color: #fff;
  background: #E9692C;
}

.navbar-mobile .search {
  margin-left: 15px;
}

.navbar .search {
  margin: 10px;
}

.navbar form {
  display: flex;
  align-items: center;
}


.search-form input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  padding: 8px 15px;
}

.search-form input:focus {
  border-color: #4154f1;
}

.search-form button[type=submit] {
  background: #E9692C;
  border: 0;
  padding: 6px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin-left: 10px;
}

.search-form button[type=submit]:hover {
  background: #4CBB17;
}

.navbar-mobile form {
 margin-left: 15px;
 margin-right: 15px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  //background: url(../img/hero-bg.png) top center no-repeat;
  //background-size: cover;
	background-color: rgba(97,112,127,1);
	background-image:	
		url('../img/hero-bg-t.png'),
		linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
		url('../img/clouds-11.png'),
		url('../img/clouds-21.png'),
		url('../img/clouds-4.png'),
		url('../img/mountains-bg.png'),
		url('../img/clouds-3.png'),
		url('../img/clouds-5.png');
	background-repeat: repeat-x;
	background-position: 
		bottom center,
		0px 0px,
		0px 0px,
		0px 0px,
		0px 0px,
		bottom center,
		0px 0px,
		0px 0px;
	background-size: 
		cover,
		auto,
		auto,
		auto,
		auto,
		cover,
		auto,
		auto;

	animation: animatedBackground 40s linear infinite;
}

@keyframes animatedBackground {
	from { background-position: 
		bottom center, 
		0 0, 
		200px 0, 
		200px 0, 
		1200px 0, 
		0 0, 
		400px 0, 
		400px 0; }
	to { background-position: 
		bottom center,
		0 0,
		300px 0,
		250px 0,
		250px 0,
		0 0,
		-150px 0,
		0 0; }
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;

}

.hero h2 {
  color: #E5E7E6;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E9692C;
}

.hero .btn-get-started span {

  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: #4CBB17;
}

.hero .btn-get-started:hover i {
  transform: translateX(15px);
}

.hero .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}



/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*------------------
# Latest Equipment
---------------------*/
.latest {
  background: #fff;
}

.latest .content {
  background-color: #fff;
  padding: 40px;
  transition: all ease-in-out 0.3s;
}

.latest h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E9692C;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: .5;
  letter-spacing: 1px;
}

.latest h2 {
  font-size: 60px;
  font-weight: 700;
  color: #8A3324;
  line-height: 1;
  padding-bottom: 20px;
  margin-top: 0px;
}

.latest p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  color: #000;
  font-size: 18px;
}

.latest .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E9692C;

}

.latest .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.latest .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.latest .btn-read-more:hover i {
  transform: translateX(15px);
}

.latest .btn-read-more:hover{
  background: #4CBB17;
}

.latest .content:hover h2{
  //color: #E9692C;
}

.latest .content:hover h3{
  //color: #8A3324;
}


.latest .buy-now {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.latest .buy-now .buy-now-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.latest .buy-now .buy-now-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.latest .buy-now .buy-now-info-content h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.latest .buy-now .buy-now-btn {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: left;
  padding-left: 30px;
}

.latest .buy-now .buy-now-btn h4{
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 16px;
  color: #8A3324;
}

.btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border-style: solid;
  border-color: #E9692C;
  border-width: 3px;
  color: #E9692C;
  font-size: 25px;
  background: #fff;
}
.latest .buy-now:hover .buy-now-info {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.latest .buy-now:hover .buy-now-info-content {
  bottom: 130px;
  transition: bottom 0.4s;
}

.latest .buy-now:hover .buy-now-btn {
  bottom: 80%;
  transition: bottom ease-in-out 0.4s;

}

@media (max-width: 768px) {
  .latest h2 {
    font-size: 48px;
  }
}
/*---------
# Blog
-----------*/
.blog-home {
  //background-color: #E7E5E6;
  background: url(../img/blog-bg.jpg) top center no-repeat;
  padding-bottom: 0px;
  padding-top: 60px;
}

.blog-home .content {
  //background-color: #FFF;
  padding: 40px 50px;
  transition: all ease-in-out 0.3s;
}

.blog-home h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E9692C;
  text-transform: uppercase;
  margin-bottom: 0px;
  line-height: .5;
  letter-spacing: 1px;
}

.blog-home h2 {
  font-size: 60px;
  font-weight: 700;
  color: #8A3324;
  line-height: 1;
  padding-bottom: 20px;
  margin-top: 0px;
}

.blog-home p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  color: #000;
  font-size: 18px;
}

.blog-home .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E9692C;

}

.blog-home .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0px;
}

.blog-home .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.blog-home .btn-read-more:hover i {
  transform: translateX(15px);
}

.blog-home .btn-read-more:hover{
  background: #4CBB17;
  border-style: none;
}

.blog-home .content:hover {
  //background: #E5E7E6;
  //padding: 25px 40px;
}

.blog-home .buy-now {
  text-align: center;
  margin-bottom: 0px;
  //background: #343a40;
  position: relative;
  overflow: hidden;
}

.blog-home .buy-now .buy-now-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.blog-home .buy-now .buy-now-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.blog-home .buy-now .buy-now-info-content h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.blog-home .buy-now .buy-now-btn {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}


@media (max-width: 768px) {
  .blog-home h2 {
    font-size: 48px;
  }
}


/*---------------------
# Testimonials Section
-------------------------*/
.testimonials {
  background: #E9692C;
}

.testimonials .section-header h2{
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}

.testimonials .section-header p{
  color: #000;
  font-size: 60px;
  padding-bottom: 20px;
  line-height: 1;
}

.testimonials .testimonial-wrap {
  padding-left: 10px;
  background: #E9692C;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #8A3324;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #000;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #E9692C;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #8A3324;
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #8A3324;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.testimonials .swiper-pagination .swiper-pagination-bullet:hover {
  width: 12px;
  height: 12px;
  background-color: #e7e5e6;
  opacity: 1;
}


@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*-------
# Cta
---------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.cta p {
  color: #fff;
  padding: 0 20% 0 20%;
  margin-top: 30px;
  font-size: 18px;
  line-height: 28px;
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background: #E9692C;
}

.cta .cta-btn:hover {
  background: #4CBB17;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .cta {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .cta img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .cta img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

/*--------------
# About Hero
---------------*/
.hero-about {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-about.jpg) top center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.hero-about h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-bottom: 3px solid #E9692C;
  padding-bottom: 35px;
}

.hero-about h2 {
  color: #E5E7E6;
  //margin: 15px 0 0 0;
  font-size: 26px;
}

.hero-about .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero-about {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero-about .hero-img {
    text-align: center;
    margin-top: 30px;
  }
  .hero-about .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-about {
    text-align: center;
  }
  .hero-about h1 {
    font-size: 48px;
  }
  .hero-about h2 {
    font-size: 24px;
    padding: 0 20px;
  }
  .hero-about .hero-img img {
    width: 100%;
  }
}




/*--------------
# Our History
---------------*/
.history {
  //background-image: url("../img/white-bg.png");
  background: #fff;
}


.history .content {
  background-color: #fff;
  padding: 40px;
  transition: all ease-in-out 0.3s;
}

.history h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E9692C;
  text-transform: uppercase;
  line-height: .5;
  letter-spacing: 1px;
}

.history h2 {
  font-size: 60px;
  font-weight: 700;
  color: #8A3324;
  padding-bottom: 20px;
  margin-top: -10px;
}


.history p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  color: #000;
  font-size: 18px;
}

.history img{
  margin-left: auto;
  margin-right: auto;
  //width: 80%;
}

.history .history-wrap {
  overflow: hidden;
  z-index: 1;
}

.history .history-wrap img {
  transition: 1s;
}

.history .history-wrap:hover img {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .history img {
  width: 90%;
  padding: 0px;
  }
  .history .content {
  padding-bottom: 0;
  padding-top: 0;
  }
}

@media (max-width: 768px) {
  .history h2 {
    font-size: 48px;
  }
}

/*------------
# Our Vision
--------------*/
.vision {
  background-color: #E5E7E6;
}

.vision .content {
  background-color: #E5E7E6;
  padding: 40px;
}

.vision h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E9692C;
  text-transform: uppercase;
  line-height: .5;
  letter-spacing: 1px;
}

.vision h2 {
  font-size: 60px;
  font-weight: 700;
  color: #8A3324;
  padding-bottom: 20px;
  margin-top: -10px;
}

.vision p {
  margin: 15px 0 30px 0;
  line-height: 28px;
  color: #000;
  font-size: 18px;
}

.vision .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E9692C;

}

.vision .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.vision .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.vision .btn-read-more:hover i {
  transform: translateX(5px);
}

.vision .btn-read-more:hover{
  background: #4CBB17;
}

.vision img{
  margin-left: auto;
  margin-right: auto;
  //width: 80%;
}

.vision .vision-wrap {
  overflow: hidden;
  z-index: 1;
}

.vision .vision-wrap img {
  transition: 1s;
}

.vision .vision-wrap:hover img {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .vision img {
  width: 90%;
  padding: 0px;
  }
  .vision .content {
  padding-bottom: 0;
  padding-top: 0;
  }
}

@media (max-width: 768px) {
  .vision h2 {
    font-size: 48px;
  }
}

/*--------------------------------------------------------------
# Store Page
--------------------------------------------------------------*/

/*---------------
# Store Hero
----------------*/
.hero-store {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-store.jpg) top center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.hero-store h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: .9;
  padding-bottom: 30px;
}

.hero-store h2 {
  color: #E5E7E6;
  //margin: 15px 0 0 0;
  font-size: 26px;
}

.hero-store .hero-img {
  text-align: right;
}
.hero-store .btn-buy-now {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #E9692C;
}

.hero-store .btn-buy-now span {

  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero-store .btn-buy-now i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero-store .btn-buy-now:hover {
  background: #4CBB17;
}

.hero-store .btn-buy-now:hover i {
  transform: translateX(15px);
}


@media (min-width: 1024px) {
  .hero-store {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero-store .hero-img {
    text-align: center;
    margin-top: 30px;
  }
  .hero-store .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-store {
    text-align: center;
  }
  .hero-store h1 {
    font-size: 48px;
  }
  .hero-store h2 {
    font-size: 24px;
    padding: 0 20px;
  }
  .hero-store .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/
.brands {
  padding: 50px 0;
  text-align: center;
  background: #fff;
}

.brands img {
  max-width: 65%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.brands img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .brands img {
    max-width: 55%;
  }
}

/*--------
# Shop
-----------*/
.shop {
  background: #E5E7E6;
  padding-top: 60px;
}

.shop #shop-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #E5E7E6;
  border-radius: 50px;
  padding: 2px 15px;
}

.shop #shop-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #8A3324;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 4px;
  //border-bottom: 3px solid #E9692C;
  background: #E5E7E6;
}

.shop #shop-flters li:hover,
.shop #shop-flters li.filter-active {
  color: #fff;
  //border-bottom: #E9692C;
  background: #E9692C;
}

.shop #shop-flters li:last-child {
  margin-right: 0;
}

.shop .shop-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.shop .shop-wrap::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.5) 100%);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 330px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.shop .shop-wrap img {
  transition: 1s;
}

.shop .shop-wrap .shop-info {
  padding: 10px 20px 25px 20px;
  background-color: #fff;
  position: relative;
  z-index: 4;
}

.shop .shop-wrap .shop-info h4 {
  font-size: 22px;
  font-weight: 600;
  //padding-right: 50px;
  //color: #E9692C;
  color: #000;
  right: 20px;
  top: calc(50% - 22px);
  position: absolute;
}

.shop .shop-wrap .shop-info h4 a {
  color: #fff;
  transition: 0.3s;
}

.shop .shop-wrap .shop-info h4 a:hover {
  color: var(--color-primary);
}

.shop .shop-wrap .shop-info p {
  //color: #8A3324;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  padding-right: 0px;
}

.shop .shop-wrap .shop-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -250px;
  transition: bottom ease-in-out 0.5s;
  text-align: center;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.shop .shop-wrap .shop-details h4 {
  font-size: 20px;
  color: #8A3324;
  font-weight: 700;
  text-transform: uppercase;
}

.shop .shop-wrap .shop-details p {
  color: #000;
  font-size: 18px;
  padding: 0 20px;
  margin: 0;
}

.shop .shop-wrap .shop-links {
  text-align: center;
  z-index: 4;
}

.shop .shop-wrap .shop-links a {
  color: #fff;
  background: #8A3324;
  margin: 20px 2px;
  //width: 36px;
  //height: 36px;
  padding: 8px 15px 8px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: 0.3s;
}

.shop .shop-wrap .shop-links a i {
  font-size: 16px;
  line-height: 0;
}

.shop .shop-wrap:hover .shop-buy {
  animation: shake 0.7s;
  animation-iteration-count: 1;
  background: #E9692C;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.shop .shop-wrap .shop-links a:hover {
  background: #4CBB17;
}

.shop .shop-wrap:hover img {
  transform: scale(1.3);
  opacity: .3;
}

.shop .shop-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.shop .shop-wrap:hover .shop-details{
  bottom: 80px;
  transition: bottom ease-in-out 0.5s;
}
.shop .shop-wrap:hover .shop-info h4{
  //background: #8A3324;
  color: #E9692C;
}

@media (max-width: 991px) {
  .shop .shop-wrap .shop-details h4 {
    font-size: 20px;
  }
  .shop .shop-wrap .shop-details p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .shop .shop-wrap:hover .shop-details {
    bottom: 40px;
  }
  .shop .shop-wrap .shop-details h4 {
    font-size: 18px;
  }
  .shop .shop-wrap .shop-details p {
    font-size: 18px;
    line-height: 1.2;
  }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

/*---------------
# Blog Hero
----------------*/
.hero-blog {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-blog.jpg) top center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.hero-blog h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-bottom: 3px solid #E9692C;
  padding-bottom: 35px;
}

.hero-blog h2 {
  color: #E5E7E6;
  //margin: 15px 0 0 0;
  font-size: 26px;
}

.hero-blog .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero-blog {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero-blog .hero-img {
    text-align: center;
    margin-top: 30px;
  }
  .hero-blog .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-blog {
    text-align: center;
  }
  .hero-blog h1 {
    font-size: 48px;
  }
  .hero-blog h2 {
    font-size: 24px;
    padding: 0 20px;
  }
  .hero-blog .hero-img img {
    width: 100%;
  }
}




/*--------------------
# Recent Blog Posts
----------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 18px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 26px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*------------
# Blog Entry
-------------*/

.blog {
  background: #fff;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.blog .entry .entry-img:hover {
  //opacity: .7;
  filter: contrast(150%);
  -webkit-filter: contrast(150%);
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title {
  color: #8A3324;
  transition: 0.3s;
  cursor: pointer;
}

.blog .entry .entry-title:hover {
  color: #E9692C;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: #E9692C;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 16px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 28px;
  color: #000;
  font-size: 18px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more button {
  display: inline-block;
  background: #E9692C;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 18px;
  border: 0;
  border-radius: 4px;
  margin-top: 20px;
}

.blog .entry .entry-content .read-more button:hover {
  background: #4CBB17;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #E9692C;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #4154f1;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 18px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 18px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 18px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #012970;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 18px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #4154f1;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #012970;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 18px;
  color: #013ca3;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 18px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 18px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 18px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #012970;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}

.blog .blog-pagination {
  color: #024ed5;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #4154f1;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

/*---------------
# Sidebar
----------------*/

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 25px 0;
  color: #8A3324;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 18px;
  padding: 0 15px;
  margin: -1px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #5465f2;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #E9692C;
  transition: 0.3s;
  font-size: 18px;
}

.blog .sidebar .categories ul a:hover {
  color: #8A3324;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #777777;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
  border-radius: 4px;
}


.blog .sidebar .recent-posts h4 {
  font-size: 16px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #E9692C;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #8A3324;
}

.blog .sidebar .sidebar-item .post-image:hover {
  opacity: .7;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);

}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #777777;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #8A3324;
  font-size: 18px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #E9692C;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #E9692C;
  background: #E9692C;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

/*--------------
# Contact Hero
---------------*/

.hero-contact {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero-contact.jpg) top center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.hero-contact h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-bottom: 3px solid #E9692C;
  padding-bottom: 35px;
}

.hero-contact h2 {
  color: #E5E7E6;
  //margin: 15px 0 0 0;
  font-size: 26px;
}

.hero-contact .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero-contact {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero-contact .hero-img {
    text-align: center;
    margin-top: 30px;
  }
  .hero-contact .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-contact {
    text-align: center;
  }
  .hero-contact h1 {
    font-size: 48px;
  }
  .hero-contact h2 {
    font-size: 24px;
    padding: 0 20px;
  }
  .hero-contact .hero-img img {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Contact Map
--------------------------------------------------------------*/
.map {
  background: #8A3324;
}

iframe{
   -webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   -ms-filter: grayscale(100%);
   -o-filter: grayscale(100%);
   filter: grayscale(100%);
}

/*--------------------------------------------------------------
# Contact Boxes
--------------------------------------------------------------*/

.contact {
  background: #fff;
}

.contact .info-box {
  color: #444444;
  background: #E5E7E6;
  padding: 30px;
  transition: all ease-in-out 0.3s;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #E9692C;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #8A3324;
  font-weight: 700;
  margin: 20px 0 10px 0;
  transition: all ease-in-out 0.3s;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
  color: #000;
}
.contact .info-box:hover {
  //transform: rotateY(360deg);
  //background: #8A3324;
  padding: 30px 30px 40px 30px;
}

.contact .info-box:hover h3{
  //color: #E9692C;
  margin: 10px 0 10px 0;
}



.contact .contact-form {
  background: #E5E7E6;
  padding: 30px;
  height: 100%;
}

.contact .contact-form .error-message {
  display: none;
  color: #fff;
  background: #E9692C;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .contact-form .sent-message {
  //display: none;
  color: #fff;
  background: #4CBB17;
  text-align: center;
  padding: 15px;
  //margin-bottom: 24px;
  font-weight: 600;
}

.contact .contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .contact-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 .contact-form input,
.contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: #E9692C;
}

.contact .contact-form input {
  padding: 10px 15px;
}

.contact .contact-form textarea {
  padding: 12px 15px;
}

.contact .contact-form button[type=submit] {
  background: #E9692C;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type=submit]:hover {
  background: #4CBB17;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #8A3324;
  padding: 0 0 0px 0;
  font-size: 18px;
}

.footer .footer-top {
  **background: white url(../img/footer-bg.png) no-repeat right top;
  background: #8A3324;
  background-size: contain;
  ***border-top: 1px solid #000;
  padding: 60px 0 30px 0;
}



.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 5px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  color: #fff;

}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #E9692C;
  line-height: 0;
  margin-right: 10px;
  margin-top: 20px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #fff;
}

.footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #E9692C;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 10px 0 0 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 0;
}

.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: #E9692C;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 10px;
  color: #012970;
}





