/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #572304;
}

a {
  text-decoration: none;
  color: #fdc300;
}

a:hover {
  color: #e6b40b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Futura PT"
}
.font-Av{
  font-family: 'Avenir Next LT Pro' !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fdc300;
  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: #e6b40b;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/pre.gif") no-repeat center center;
}
.loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #048023; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spinloader 5s linear infinite;
}
.loader img{
    height : 120px;
    width : 120px;
    animation: spinlogo 5s linear infinite;
}
@keyframes spinloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinlogo {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
} */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
  background: #ffffff url('../img/sp.gif') no-repeat center;
	z-index: 999;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 995;
  padding: 20px 0;
  color: #000;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background-color: #fdc300;

}



#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #000;
}

#header .logo img {
  max-height: 150px;
  position: absolute;
  margin-top: -15px;

}
#header .logo-scroll img {
  max-height: 150px;
  position: absolute;
  margin-bottom: -15px;
}



/*--------------------------------------------------------------
# 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;
  font-family: 'Avenir Next LT Pro';
  font-size: 12px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 10px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
  font-weight: bolder;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #fdc300;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #e6b40b;
}

.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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
}

.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: #fdc300;
}

.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: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(63, 73, 83, 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-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fdc300;
}

.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: #fdc300;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background-color: #fdc300;
  color: #fff;
  
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 100px;
  font-weight: 700;
  text-shadow: 4px 2px 7px black;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 10px auto;
  color: #fff;
  font-weight: bolder;
  font-size: 24px;
  text-shadow: 4px 2px 7px black;
}
#hero .p1 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 0px auto;
  color: #fff;
  font-weight: bolder;
  font-size: 28px;
  text-shadow: 4px 2px 7px black;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #fdc300;
}

#hero .btn-get-started {
  font-family: "Futura PT";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #fdc300;
}

#hero .btn-get-started:hover {
  background: #cfa20a;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
  #hero p {
    font-size: 16px;
  }
  #hero .p1 {
    font-size: 20px;
  }
}

@media (max-width: 795px) {
  .last {
    padding-bottom: 500px;
  }
}

@media (max-width: 364px) {
  .last {
    padding-bottom: 620px;
  }
}
@media (max-width: 280px) {
  .last {
    padding-bottom: 680px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg,
.services .icon-box {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Avenir Next LT Pro' !important;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #e6636a;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Avenir Next LT Pro' !important;
  color: #000;
}
.primary-title{
    font-size: 24px;
    color: #572304;
    font-weight: bold;
    font-family: 'Avenir Next LT Pro' !important;
    text-align: center;
}
.primary{
  color:#fdc300;
}

.secondry {
  color:#572304;
}

.secondry-menu{
  color:white;
}

h2 span {
  background-color: #572304;
  display: inline-block;
  height: 45px;
  width: 300px;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 18px 0;
  background: #f8f9fa;
  min-height: 80px;
  margin-top: 80px;
}
.breadcrumbs .container .d-flex{
  display: flex!important;
    flex-direction: row;
}
.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6b7b8d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

#story{
  background-image: url('../img/bg/bg-222.jpg');
  background-size: cover;
  min-height: 800px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  /* font-size: ; */
}
@media (min-width: 1300px) and (max-width:1799px){
    #story{
     background: url('../img/bg/bg-23.jpg') no-repeat;
     background-size: cover;
     min-height: 700px;
     font-size: 20px;
  
    }
}
@media (min-width: 1800px) and (max-width:3900px){
    #story{
     background: url('../img/bg/bg-22.jpg') no-repeat;
     background-size: cover;
     min-height: 1000px;
     font-size: 20px;
  
    }
}
@media (min-width: 100px) and (max-width:800px){
    #story{
     background: url('../img/bg/bg-2.jpg') center center no-repeat;
     background-size: cover;
     min-height: 1000px;
     font-size: 20px;
  
    }
}
.about .content h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #fdc300;
}

.about .content p {
  margin-bottom: 0;
  text-align: justify; text-justify: inter-word;
  font-size: 19.2px;
}
#about .content p {
  margin-bottom: 0;
  text-align: justify; text-justify: inter-word;
  font-size: 1.2rem;
}
.about .image img{
  background-image: url('assets/img/che.jpg') center center no-repeat;
  background-size: cover;
  max-height: 350px;
  border: 1px solid #572304;
}

/*--buttons--*/
.btn {
    padding: 15px 25px;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 3px;
    color: #ffffff;
    font-family: "Futura PT", sans-serif !important;
    text-transform: uppercase;
    transition: .5s ease-in-out;
    position: relative;
    outline: none !important;
}
.btn-primary {
    background: #fdc300;
    border-color: #fdc300;
}
.btn-primary:hover , .btn-primary:focus {
    color: #fdc300;
    background: #ffffff;
    border-color: #fdc300;
    box-shadow: inset 0 -50px 0 #ffffff !important;
}
.btn-outline {
    border-color: #ffffff;
}
.btn-outline:hover , .btn-outline:focus {
    background: #fdc300;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: inset 0 -50px 0 #fdc300 !important;
}
.btn-black {
    background: #572304;
}
.btn-black:hover , .btn-black:focus {
    color: #fdc300;
    background: #ffffff;
    border: 1px solid;
    border-color: #fdc300;
    box-shadow: inset 0 -50px 0 #ffffff !important;
}

/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/

.card{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background: url('assets/img/cbg.jpg');
    max-width: 410px;
    height: 400px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.card-img-top{
   
    position: relative;
    overflow: hidden;
    border-radius:10% ;
    padding-top: 0.5px;
    padding-left: 0.5px;
}
.card-text{
    font-weight: 500;
}
.menu .content h2 {
  font-weight: 500;
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.card-content {
  position: relative;
  padding: 13rem 2rem;
  transform-style: preserve-3d;
  transition: transform 3s;
}
.card:hover .card-content {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.card-front,
.card-back {
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  color: #572304;
}
.card-front::before {
  content: "";
  position: absolute;
  inset: 1rem;
  transform: translateZ(2rem);
}

.card-back {
  transform: rotateY(180deg);
  gap: 0.5rem;
}

.card-back span {
  font-weight: 600;
  color: yellow;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
}

.services .icon-box i {
  float: left;
  color: #fdc300;
  font-size: 40px;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover h4 a {
  color: #fdc300;
}



/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
  padding: 30px;
  border-radius: 4px;
  background: white;
}

.team .member .pic {
  overflow: hidden;
  width: 140px;
  border-radius: 4px;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #000;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #dee2e6;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  background: #8795a4;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #fdc300;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: 'Avenir Next LT Pro' !important;
  color: #000;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #edeff1;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #6b7b8d;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #000;
  border-radius: 0;
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: #fdc300;
}

.features .nav-link.active {
  color: #fdc300;
  border-color: #fdc300;
}

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.features .details p {
  color: #777777;
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: #fff;
    background: #fdc300;
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.Testimonial-block{
     background: url('../img/bg/bg-333.jpg') center center no-repeat ;
     background-size: cover;
     min-height: 800px;
     overflow: hidden;
     background-repeat: no-repeat;
     background-position: center;
     
     
}


@media (min-width: 1800px) and (max-width:3900px){
    
    .Testimonial-block{
     background: url('../img/bg/bg-33.jpg') center center no-repeat;
     background-size: cover;
     min-height: 1000px;
     font-size: 20px;
    
}
}
@media (min-width: 1500px) and (max-width:1799px){
    
    .Testimonial-block{
     background: url('../img/bg/bg-34.jpg') center center no-repeat;
     background-size: cover;
     min-height: 800px;
     font-size: 20px;
    
}


}

.Testimonial-block .testimonial-bar i {
    font-size: 40px;
    margin-bottom: 30px;
}

.Testimonial-block .testimonial-bar p.reviewbar {
    max-width: 920px;
    margin: 0 auto 20px auto;
    font-size: 20px;
    line-height: 26px;
    color: #08303e;
    font-weight: bold;
    font-family: "Futura PT";
}
.Testimonial-block .testimonial-bar h6.review-name {
    max-width: 920px;
    margin: 0 auto 20px auto;
    font-size: 15px;
    line-height: 26px;
    font-weight: bold;
    font-family: "Futura PT";
}

.Testimonial-block .carousel-indicators {
    position: relative;
    margin: 50px 0 0 0 !important;
}
.testimonials-block .testimonial-bar img{
    width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.Testimonial-block .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: rgba(0,0,0,0);
    border: 1px solid #08303e;
    opacity: 1 !important;
    margin: 0 3.5px;
}
.Testimonial-block .carousel-indicators button.active {
    border-color: #fdc300;
    background: #fdc300;
}
.content-white.Testimonial-block .carousel-indicators button {
    border: 1px solid #ffffff;
}
.content-white.Testimonial-block .carousel-indicators button.active {
    background: #ffffff;
}
/* ===================================
Start Find Our Location
=====================================*/
.contact .content h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 60px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.bx-phone ,.bxl-whatsapp {
   color: #fff;
   background-color: #84441c;
   border-radius: 50%;
   padding: 4px;
}
.bi-1-circle{
   color: #fff;
   background-color: #84441c;
}
.location-area {
  background-image: url(../images/map.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
  z-index: 1;
}
.location-area::after {
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
}
.location-area.location-three-area::after {
  background: #fff;
}

.single-location-content {
  padding-right: 30px;
}
.single-location-content.location-two-content .section-title h2 {
  color: #333333;
}
.single-location-content.location-two-content .section-title p {
  color: #555555;
}
.single-location-content.location-two-content h3 {
  color: #333333;
}
.single-location-content.location-two-content.location-page .location-list ul {
  margin-bottom: 0;
}
.single-location-content.location-two-content .location-list ul li {
  color: #555555;
}
.single-location-content.location-two-content .location-list ul li:last-child {
  margin-bottom: 0;
}
.single-location-content.location-two-content .location-list ul li i {
  color: #000;
}
.single-location-content .section-title {
  margin-bottom: 20px;
}
.single-location-content .section-title h2 {
  font-size: 45px;
}
.single-location-content h3 {
  font-size: 18px;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  margin-bottom: 18px;
}
.single-location-content .location-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 27px;
}
.single-location-content .location-list ul li {
  list-style-type: none;
  color: #ABB8C3;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.single-location-content .location-list ul li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 25px;
  color: #000;
}
.single-location-content .default-btn {
  padding: 14.5px 42px 13.5px 42px;
}

.location-map {
  position: relative;
  

}
.location-map img{
  max-width: 35rem;
  height: auto;
}
@media all and (max-width:660px){
  .location-map img{
  max-width: 23rem;
  height: auto;
}
.footimg{
  max-width: 10rem;
  height: auto;
}

}
.location-map .location-text {
  position: absolute;
  right: 52%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.location-map .location-text.location-1 {
  left: 40%;
  right: auto;
  bottom: 50%;
  transform: translateY(0);
  top: auto;
}
.location-map .location-text.location-1 p {
  opacity: 1;
  visibility: ;
}
.location-map .location-text.location-2 {
  position: absolute;
  right: 52%;
  top: 47%;
  transform: translateY(-50%);
  text-align: center;
}
.location-map .location-text.location-2 p {
  opacity: 1;
  visibility: 
}
.location-map .location-text.location-3 {
  left: 68%;
  right: auto;
  top: 50%;
}
.location-map .location-text.location-3 p {
  opacity: ;
  visibility: ;
}
.location-map .location-text.location-4 {
  left: 70%;
  right: auto;
  top: 47%;
}
.location-map .location-text.location-4 p {
  opacity: 1;
  visibility: ;
}
.location-map .location-text.location-5 {
  right: 45%;
  left: auto;
  top: 49%;
}
.location-map .location-text.location-5 p {
  opacity: 1;
  visibility: ;
}
.location-map .location-text.location-6 {
  right: 19%;
  left: auto;
  top: 36%;
}
.location-map .location-text.location-6 p {
  opacity: 0;
  visibility: hidden;
}
.location-map .location-text span {
  width: 12px;
  height: 12px;
  background-color: #cd6511;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  top: 35px;
  left: 35px;
  cursor: pointer;
}
.location-map .location-text p {
  font-size: 14px;
  background-color: var(--whiteColor);
  padding: 0px -30px;
  display: inline-block;
  color: #cd6511;
  transition: var(--transition);
  position: relative;
  bottom: -38px;
}
.location-map .location-text p::after {
  /*content: "";
  display: block;
  position: absolute;
  bottom: -13px;
  left: 20px;
  width: 0;
  height: 0;
  border: solid transparent 7px;
  border-bottom-color: var(--whiteColor);
  transform: rotate(180deg);
  transition: var(--transition);*/
}
.location-map .location-text p:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.location-map .location-text p:hover::after {
  border-bottom-color: var(--mainColor);
}
.location-map .location-text:hover p {
  opacity: 1;
  visibility: visible;
}
 .info-box {
  color: #000;
  text-align: center;
  border: 1px solid #572304;
  padding: 20px 0 30px 0;
}



 .info-box h3  {
  font-size: 20px;
  color: #d45811;
  font-weight: 700;
  margin: 10px 0;
}
 .info-box h3 a{
  font-size: 20px;
  color: #572304;
  font-weight: 700;
  margin: 10px 0;
}
 .info-box h3 a:hover{
 color: #e6b40b;
}

i .bi{
  border: 1px solid black;
  border-radius: 100%;
}

 .info-box div a{
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #572304;
}
 .info-box div a:hover{
  color: #e6b40b;
}
 .info-box p{
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #572304;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#contactus{
  background: url('../img/contact/ct-bg.jpg');
  background-size: cover;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(87, 35, 4, 0.6);
  padding: 27px;
  background: url('../img/contact/cbg.png');
  background-size: cover;
  min-height: 500px;
  color: #fff;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: transparent;
  box-shadow: none;
  font-size: 14px;
  background: transparent;
  border-bottom: 2px solid #572304;

}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #ffb727;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #572304;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

#contact .content .info-box button[type=submit]:hover {
  background: #ffc85a;
}
#contact .content .info-box button[type=submit] {
  background: #572304;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffc85a;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: red; }

#form-message-success {
  color: #28a745;
  font-size: 20px;
  font-weight: 700; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-size: 16px;
  font-weight: 500; }

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #000;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #fdc300;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #c1c8d0;
}

.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;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #fdc300;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #cfa20a;
}

.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: #572304;
  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: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a4afba;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #606f7e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #fdc300;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.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: 16px;
}

.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: #000;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(85, 98, 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: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #572304;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #fdc300;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #000;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6b7b8d;
  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: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #e9797f;
}

.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: #000;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #606f7e;
}

.blog .blog-pagination {
  color: #8795a4;
}

.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: #000;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #fdc300;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #000;
  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: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #fdc300;
  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: #de323c;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #000;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #fdc300;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #000;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #fdc300;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.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: #96a2af;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #fdc300;
  background: #fdc300;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #fbfbfc;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #fff;
}




#footer .footer-top {
  padding: 30px 0 15px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

/*#footer .footer-top .footer-contact h3 {
  font-size: 32px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #572304;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}*/

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
}

#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: #572304;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #572304;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #572304;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  width: 32px;
    height: 32px;
    border-radius: 5px;

}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
  transform: rotate(90deg);
    background: #f0a414;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: 
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

.footimg{
  max-width: 27rem;
  height: auto;
}
@media all and (max-width:660px){
.footimg{
  max-width: 10rem;
  height: auto;
}
}
