@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lustria&display=swap');



body {
  background: #fff;
  color: #666666;
  font-size: 16px;
  /* font-family: 'Fira Sans', sans-serif; */
  font-family: 'Barlow', sans-serif;
}

::selection {
  color: #fff;
  background:#bd9c29;
}
@font-face {
  font-family: regularheading;
  src: url(/assets/font/BigCaslonFB-Regular.ttf);
}

a {
  color: #bd9c29;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #bd9c29;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  /* font-family: 'Fira Sans', sans-serif !important; */
  font-family: 'Barlow', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: regularheading;*/
  font-family: "Lustria", serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #bd9c29;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2ce782;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-image:  url(../img/loader.gif);
 
}

/*#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #bd9c29;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 70px;
  border-bottom: 1px solid #ccc;
}

.home #header.header-transparent {
  background: #00000045;
  
}

#header.header-transparent {
  background: #353535;
  
}
.home #header.header-scrolled{
    background: #353535 !important; 
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 60px;
}

#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  border-left: 4px solid #bd9c29;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
  margin-top: -10px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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: 7px 15px 7px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
    transition: color .3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #bd9c29;
}

.navbar li.contactlink a{
  border-radius: 0.2rem;
  background-color: #bd9c29;
  transition: 0.5s all;
  border: 1px solid #bd9d29;
}
.navbar li.contactlink a:hover{
  border-radius: 0.2rem;
  background-color: #ffffff;
  border: 1px solid #bd9d29;;
  color: #bd9d29;
}

.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;
  text-transform: none;
  color: #666666;
}

.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: #bd9c29;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 145%;
  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;
}

@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(26, 26, 26, 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: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #bd9c29;
}

.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: #bd9c29;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#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(0, 0, 0, 0.072);
}
.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50px;
}


#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: start;
}

#hero h2 {
  font-weight: 700;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.4rem;
  color: #fff;
  margin-top: 4.9rem;
  margin-bottom: 0.3rem;
  /* text-shadow: 0.4rem 0.4rem 2rem rgba(0, 0, 0, 0.17); */
  text-shadow: 2px 5px 8px #000;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
    margin: 25px 0;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

#hero .btn-get-started {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #bd9c29;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #bd9c29;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #bd9c29;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 100px;
   /*background: linear-gradient(to right, rgb(0 0 0 / 0%), rgb(0 0 0 / 5%)), url(../img/about-bg-1.jpg) center center no-repeat;*/
   /*min-height:400px;*/
}

.breadcrumbs h2 {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 400;
}
.breadcrumbs h1 {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 400;
}
.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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #ffffff;
  text-align: center;
}


#featured-services h3 {
  font-weight: 500;
  margin: 10px 0;
  font-size: 40px;
  color: #000;
}
#featured-services h1 {
    font-weight: 500;
    margin: 15px 0;
    font-size: 50px;
    color: #000;
}

#featured-services h2 {
  font-weight: 500;
  margin: 15px 0;
  font-size: 20px;
  color: #000;
}

#featured-services p {
  font-size: 15px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 0px;
  letter-spacing: 1px;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0 40px 0;
  position: relative;
}

.ser-box{
  position: relative;
}
.ser-box::after{
  content: '';
  position:absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: #ebe1be;
  z-index: -1;
  border-radius: 5px;

}
.left-box-ser h3{
  font-size: 50px;
  letter-spacing: 1px;
  color: #2b2929;
}
.left-box-ser p{
  padding-left: 45px;
  letter-spacing: 1px;
  font-size: 17px;
  margin-bottom: 5px;
}
.btn-all-2 a{
  padding: 5px 0px;
  border-bottom: 1px solid #bd9c29;
}
.img-ser{
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ebe1be;
    border-radius: 5px;
    padding: 5px;
        width: 100%;
    height: 100%;
}
.btn-all {
  margin-top: 20px;
}
.img-ser img{
  transition: 0.5s all;
  border-radius: 5px;
      width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-ser img:hover{
  transform: scale(1.05);
  transition: 0.5s all;
}
.ser-img-box {
  position: absolute;
  bottom: 5%;
  left: 5%;
  transform: translate(0,50%);
}


.ser-img-box h3{
  font-size: 42px;
  color: #fff;
  text-shadow: 3px 2px 4px #000;
}

.ser-img-cont{
  padding-top: 15px;
}
.ser-img-cont p{
  letter-spacing: 1px;
  font-size: 17px;
  padding-left: 0;
}
.btn-all a{
  padding: 8px 20px 10px;
  border-radius: 0.2rem;
  background-color: #ffffff;
  border: 1px solid #bd9d29;
  color: #bd9d29;
  margin: 0;
  transition: 0.5s all;
}

.btn-all a:hover{
  background-color: #bd9d29;
  border: 1px solid #bd9d29;
  color: #ffffff;
}


.ser-img-cont ul li{
  margin-bottom: 10px;
  list-style: none;
  padding-left: 5px;
  letter-spacing: 1px;
  font-size: 17px;
}

.right-box{
  margin-top: 150px;
}

.ser-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}




/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 82%)), url(../img/join-bg-min.jpg) fixed center center;
  background-size: cover;
  padding: 100px 0;
  margin-top: 50px;
}

#call-to-action h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
  max-width: 70%;
}

#call-to-action p {
  color: #fff;
  max-width: 60%;
  letter-spacing: 1;
  font-size: 18px;
}

#call-to-action .cta-btn {
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 0.2rem;
  transition: 0.5s;
  margin-top: 10px;
  border: 1px solid #bd9c29;
  color: #bd9c29;
  background-color: #fff;
}
#call-to-action .cta-btn:last-child{
  background: #bd9c29;
  border: 1px solid #bd9c29;
  color: #fff;
}
#call-to-action .cta-btn:hover:last-child{
  border: 1px solid #bd9c29;
  color: #bd9c29;
  background-color: #fff;
}
#call-to-action .cta-btn:hover {
  background: #bd9c29;
  border: 1px solid #bd9c29;
  color: #fff;
}

/* Call To Action Section
--------------------------------*/



/*=====================Recent Work===================*/
#recent-work .ser-box-card{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  transition: 0.5s all;
  
}

#recent-work .ser-box-card:hover{
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}
/*==============Our Blogs Section =================*/
 .blog-sec{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 50px 0 ;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
 background-color: #ebe1be;
 border-radius: 0.25rem;
 overflow: hidden;
 height: 370px;
 position: relative;
 }

 .blog-sec::after{
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #6c5400;
  transition: 2s all;
 }
 .blog-sec:hover::after{
  width: 100%;
  transition: 2s all;
  right: auto;
  left: 0;

 }

 .blog-text{
  width: 60%;
  padding: 25px 25px 40px 25px;
 }
 .blog-text h3 {
  color: #313131;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}
.blog-text p{
  font-size: 18px;
  color: #000;
}
.blog-text span{
  padding: 2px 10px;
  border-radius: 0.25rem;
  background-color: #000;
  color: #fff;
  letter-spacing: 1px;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 15px;
}
.blog-img{
  width: 40%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.25rem;
}
.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.blog-sec:hover .blog-img img{
 transform: scale(1);
}

.post-time-date {
  margin-top: -15px;
  margin-bottom: 12px;
}
.post-time-date ul{
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.post-time-date ul li{
  padding:0px 10px 0px 0;
  border-right: 1px solid #6c5400;
  font-weight: 500;
  color: #000;
  list-style: none;
  margin: 10px 0;
  font-size: 14px;
}
.post-time-date ul li a{
  font-size: 14px;
  color: #bd9c29;
}
.post-time-date ul li:last-child{
  border: 0;
  padding: 0;
  padding-left: 10px;

}









/* Contact Section
--------------------------------*/
#contact {
  /* padding: 60px 0; */
}

#contact .contact-info {
  /* margin-bottom: 20px; */
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #bd9c29;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #bd9c29;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  padding-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 30px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

#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: #bd9c29;
  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 #bd9c29;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form .form-group {
  margin-bottom: 20px;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #bd9c29;
}

#contact .php-email-form button[type=submit] {
  background: #bd9c29;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #13a456;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 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: #333333;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #bd9c29;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bd9c29;
}

.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: #666666;
  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: #fff;
  color: #333333;
  padding: 6px 30px 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid #bd9c29;
}

.blog .entry .entry-content .read-more a:hover {
  background: #bd9c29;
  color: #fff;
}

.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: #666666;
  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: #bd9c29;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #bd9c29;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #bd9c29;
}

.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: #333333;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}

.blog .blog-author .social-links a:hover {
  color: #bd9c29;
}

.blog .blog-author p {
  font-style: italic;
  color: #666666;
}


.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: #333333;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #bd9c29;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b3b3b3;
  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: #333333;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #bd9c29;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b3b3b3;
}

.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: #333333;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #bd9c29;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  background: #bd9c29;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #181200eb;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #bd9c29;
}

#footer .footer-top .footer-info p {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0;
  font-family: 'Barlow', sans-serif;
  color: #eee;
}
.footer-newsletter p{
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 0;
  font-family: 'Barlow', sans-serif;
  color: #eee;   
}
#footer .footer-top .social-links a {
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #bd9c29;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #bd9c29;
  width: 60px;
}

#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: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 7px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
  font-size:17px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #bd9c29;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 32px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #bd9c29;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

.footer-contact p{
  margin: 0;
}
.footer-contact p a{
  color: #eee;
  font-size: 17px;
}

.social-links {
  margin-top: 16px;
}
.footer-info img {
    margin-top: -15px;
    margin-bottom: 10px;
}
.footer-contact p{
    padding-top:7px;
}
.footer-contact p strong i{
    font-size:16px;
    padding-right:7px;
    color:#bd9c29;
}

/*================About Us Page===============*/

.aboutus-page p {
    font-size: 17px !important;
    line-height: 31px;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 23px;
    letter-spacing: 0.2px !important;
    text-align: justify;
}


/*===================Service Details Page===============*/

.style-tab ul{
    padding:0;
    margin:0;
    padding-left: 20px;
    border-left: 1.5px solid #ccc;
    position: relative;
    margin-left: 5px;
}

.style-tab ul li{
     list-style: none;
    font-size: 15px;
    color: #A6A5A5;
    margin: 22px 0;
    cursor: pointer;
    position: relative;
    font-weight: 400;
}
li.style-list span {
    position: absolute;
    right: -40%;
    top: 0;
    left: auto;
    transform: translate(50%, 0%);
    opacity: 0;
    transition: 0.5s all;
    width: 0 !important;
    display: inline-block;
    overflow: hidden;
}

li.active-s-tab span{
    opacity: 1;
      left: 40%;
      right: auto;
      width:100%  !important;
}
.style-tab {
    overflow: hidden;
}

li.active-s-tab{
    color:#bd9c29 !important;
    font-size: 15px !important;
    font-weight: 500!important;
}

.active-s-tab::after {
    position: absolute;
    content: "";
    left: -22px;
    top: 0;
    width: 2.5px;
    border-radius: 50px;
    height: 150%;
    background-color: #bd9c29;
}



 .holeser .style-tab ul {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin:0;
    padding:0;
    margin-bottom:25px;
    margin-top:15px;
}

.holeser li.style-list {
    width: 100%;
    background: #000;
    color: #fff;
    margin: 5px !important;
    text-align: center;
}

.holeser li.style-list a{
      display: inline-block;
      padding: 10px 20px;
      color: #fff;
}


/*.holeser li.active-s-tab{*/
/*   color:#fff !important; */
/*   background-color:#bd9c29 !important; */
/*}*/
.holeser li.active{
   color:#fff !important; 
   background-color:#bd9c29 !important; 
}
.holeser li.activem a{
    color:#fff !important; 
}

.holeser li.active-s-tab::after{
 display:none;    
}
.holemain .holebox{
    display:none;
}

.holemain .holebox:first-child{
    display:block;
}

.style-content{
    margin-bottom:45px;
}
.style-content h3{
    color:#000;
    font-size:45px;
    margin:0;
    margin-top:20px;
}

.style-content h4{
    color:#000;
    margin:0;
    font-size:35px;
    margin-top:15px;
}

.style-content p{
   font-size: 17px !important;
    line-height: 31px;
    color: #000000; 
    margin:0;
    padding-top:10px;
}

.style-content ul li{
   font-size: 17px !important;
    line-height: 25px;
    color: #000000; 
    margin:0;
    padding-top:10px;
}


.style-img-box{
    display:block;
    min-height:350px;
    /*border-bottom:1px solid #000;*/
    position:relative;
}
.style-img{
    width:100%;
    border:1px solid #eee;
	/*border-image: linear-gradient(to bottom, #181818, #eee, #181818) 1 100%;*/
    padding:10px;
    text-align:center;
}
.style-img-list{
  width:100%;  
  margin-top:10px
}

.style-img-list .swiper-slide{
    border:1px solid #ccc;
    text-align:center;
    cursor:pointer;
}
.swiper-slide.thum.active-thum{
   border:2px solid red; 
}
.style-img-list .swiper-slide img{
    width:75%;
    margin:auto;
    text-align:center;
}

.style-img img{
    display:none;
}

.style-img img:first-child{
    display: inline-block;
}

.img-list-box{
    position:relative;
    width:100%;
    height:470px;
    display:none;
    margin-bottom:50px;
}
.img-list-box:first-child{
    display:block;
}
.img-list-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.img-list-box a{
    position:absolute;
    top:0;
    right:0;
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
    background-color: black;
}

.all-ser p {
    font-size: 17px;
    letter-spacing: 0.2px;
    line-height: 29px;
}





/*========Last service===============*/
.ser-detaisl-content{
    margin-top:35px;
    color:#000;
}
.ser-detaisl-content ul{
    padding:0;
    margin:0;
}
.ser-detaisl-content ul li{
    margin-top:10px;
    list-style:none;
    color:#000;
    font-size:17px;
}

.ser-about ul {
    margin-left: 30px;
}
.ser-about ul li{
   list-style: disc; 
}


.ser-detaisl-content h4{
    margin:0;
    margin-bottom:20px;
}

.ser-detaisl-content ul li i{
    padding-right:10px;
}


.ser-project .portfolio-wrap{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border-radius: 5px;
    overflow: hidden;
}
.ser-project .link-preview {
    top: 25px;
}
.ser-project .portfolio-info {
    padding: 5px;
    text-align: center;
}
.ser-project .portfolio-wrap figure {
    width: 100%;
    min-height: 360px;
    position: relative;
}
.videos-se .portfolio-wrap figure{
  min-height: auto !important;  
  margin:0;
}

/*.videos-se .ph-active figure{*/
/*    border:1.5px solid red;*/
/*}*/
.ser-project .portfolio-wrap figure img{
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.project-2{
    height:340px;
    position: relative;
    margin: 0;
    padding-bottom: 25px;
}


.project-2 img{
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.arrow-right-p i {
    color: #302f2e;
    font-size: 43px;
}

.arrow-right-p {
 text-align:center;
 position: relative;
}
.arrow-right-p:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    /* height: 2px; */
    /* background: #000; */
    border-top: 2px dotted #302f2e;
    z-index: 1;
}

.ser-project-2 .portfolio-info h4 {
    text-align: center;
    color: #000;
    letter-spacing: 1px;
    font-size: 25px;
    padding-top:15px;
}

.ser-project-2 .portfolio-wrap {
    box-shadow: rgb(0 0 0 / 19%) 0px 25px 20px -20px;
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #fff;
}
.row .arrow-right-p i{
    transition:0.5s all;
}
.ser-project-2:hover .row .arrow-right-p i{
   transform:translateX(25px);
}

.marque-box marquee{
    display:flex;
    overflow: hidden;
    border-radius: 5px;
}

.marque {
    margin-right: 5px;
    border-radius: 5px;
    overflow: hidden;
    display: contents;
}


.yard h3 {
    color: #000;
    font-size: 33px;
    margin: 0;
    margin-top: 4px;
}
.yard h1 {
    color: #000;
    font-size: 33px;
    margin: 0;
    margin-top: 4px;
}
.yard .ser-detaisl-content {
    margin-top: 7px; }
.yard .ser-detaisl-content ul li {
    margin-top: 3px;
}

.yard .ser-detaisl-content h4 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 29px;
    margin-top: 20px;
}

.thum img{
  cursor: pointer; 
  border-radius:5px;
}
.active-thum img{
    border:2px solid #bd9c29;
    cursor: pointer;
    border-radius:5px;
}
.style-img-list{
    position:relative;
}
 .style-img-list button.owl-prev {
    left: -19px;
    position: absolute;
    top: 32px;
    width: 30px;
    height: 30px;
    background: #000 !important;
    transform: translate(0%, 0%);
}

 .style-img-list button.owl-next{
     right: -19px;
    position: absolute;
    top: 32px;
    width: 30px;
    height: 30px;
    background: #000 !important;
    transform: translate(0%, 0%);
}
 
.style-img-list button span {
    font-size: 45px;
    color: #fff;
    z-index: 9996;
    line-height: 20px;
    display: inline-block;
}
.owl-theme .owl-nav .disabled {
    background: #ccc !important;
    opacity: 1 !important;
    cursor: default;
}
.ser-details.yard {
    border-left: 1px solid #dedcdc;
}
.yardbox .img-list-box {
    height: 370px;
    margin: 0;
}


.features-item:nth-child(even){
    background-color: #f0eeee;
    padding: 15px 0;
    margin-top: 25px;
    border-radius: 10px;
}

.features-item:nth-child(odd){
    background-color: #f7f7f7;
    padding: 15px 0;
    margin-top: 25px;
    border-radius: 10px;
}
.all-ser-img {
    width: 100%;
    height: 300px;
}

.all-ser-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-ser .col-md-5{
    margin:0;
}



@media (max-width: 998px) {
    .holeser .style-tab ul{
      flex-wrap: wrap;  
    }
    
  .holeser li.style-list{
      width:25%;
  }
}


/* ===================Recent Work==================*/
.recent-work-img{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:10px;
    position:relative;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
   margin-bottom:25px;
   transform: translateY(0px);  
   transition:0.5s all;
}
.recent-work-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.img-zooming-work{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) scale(0);
      transition:0.5s all;
}
.recent-work-img:hover{
  transform: translateY(-10px);  
}

.recent-work-img:hover .img-zooming-work{
  transform: translate(-50%, -50%) scale(1);
}
.img-zooming-work a{
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
    background-color:#000;
    display:inline-block;
}

/*=====================Pricing Page=================*/


tr:nth-child(even){
    background-color: #f2f2f2;
    
}

thead.top-table tr td {
    letter-spacing: 1px;
    background: #bd9c29;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    text-shadow: 1px 3px 8px #000;
    padding: 10px 0 !important;
}

thead.head-bottom tr th {
    letter-spacing: 1px;
    background: #000;
    color:#fff;
}
.table-pricing .head-bottom > tr th.t-cell-1{
    width:10%;
}

.table-pricing .head-bottom tr th.t-cell-2{
    width:16%;
}

.table-pricing .head-bottom tr th.t-cell-3{
    width:42%;
        white-space: nowrap;
}

.table-pricing .head-bottom tr th.t-cell-4{
    width:12%;
}
.table-pricing .head-bottom tr th.t-cell-5{
    width:20%;
}

.table-pricing tbody tr td img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.table-pricing td {
    padding:10px 0 !important;
}

table.table.table-bordered.table-stripe {
    border-color: #bd9c29;
}
.table-pricing hr{
    color:#bd9c29;
    opacity: 1;
}

td.img-table {
    padding: 16px !important;
}

td.img-table img{
    border-radius:5px;
}

td.img-table {
    padding: 16px !important;
    width: auto;
    height: 211px;
    overflow: hidden;
}

td.img-table img{
    width:100%;
    height:100%;
    object-fit:cover;
}

table{
    border-radius: 6px 6px 6px 6px;
}
.img-table{
    position:relative;
}
.img-table:hover:affter{
    
}
.link-preview {
    position: absolute;
    background: #000;
    top: 5px;
    right: 35px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 5px;
    transform: translate(50%, 50%);
    box-shadow: 1px 2px 21px #ccc;
}


.photo .link-preview {
    position: absolute;
    background: #000;
    top: 5px !important;
    right: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    transform: translate(50%, 50%);
    box-shadow: 1px 2px 21px #ccc;
}

.photo .portfolio-wrap{
    cursor:pointer;
}

.photo .ph-active{
     filter: blur(5px) brightness(1);
}
.ser-project-2 .link-preview {
    position: absolute;
    background: #000;
    top: -67px !important;
    right: 24px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    transform: translate(50%, 50%);
    box-shadow: 1px 2px 21px #ccc;
}

.ser-project-2 .portfolio-wrap{
   transform: translateY(0);
   transition:0.5s all;
}

.ser-project-2 .portfolio-wrap:hover{
   transform: translateY(-25px);
}


.link-preview i{
    font-size:16px;
}
.gprev,.gnext{
    display:none !important;
}

td.img-table p{
    margin:0!important;
    padding:0!important;
}

.contact-info p i{
    font-size:16px !important;
    padding-right:10px;
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
   background-image:  url(../img/loader.gif);
       background-position: center;
    background-repeat: no-repeat;
    background-size:4%;
}
/*
#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #bd9c29;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

*/



/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .btn-all {
    margin-top: 20px;
    text-align: end;
}
.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: #503e02;
    transition: 0.3s;
    letter-spacing: 1px;
}

.blog .entry .entry-title a:hover {
  color: #4154f1;
}

.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: #bd9c29;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 27px;
  margin: 0 0 10px 0;
}
.blog .entry .entry-content ul li{
    margin-bottom:12px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.entry-content h4 {
    letter-spacing: 1px;
    color: #393838;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #4154f1;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #5969f3;
}

.blog .entry .entry-content h3 {
  font-size: 25px;
  margin-top: 20px;
  font-weight: bold;
      letter-spacing: 2px;
    color: #3a3a3a;
    margin-bottom:10px;
}
.post-item.clearfix {
    border-bottom: 1px solid #ccc;
}

.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: #503e02;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #0d64fd;
  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: 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: #503e02;
}

.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 .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: #503e02;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}


.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: #503e02;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #4154f1;
}

.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: #0257ee;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #4154f1;
  background: #4154f1;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}

.blog-details p a{
    font-weight:600;
    text-decoration: underline;
}
.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
        font-family: 'Barlow', sans-serif;
}
.blog .entry .entry-title a {
    color: #503e02;
    transition: 0.3s;
    letter-spacing: 1px;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    font-family: 'Barlow', sans-serif;
}
.blog .entry h2 {
    font-size: 26px;
    font-weight: 600;
    color: #525252;
    font-family: 'Barlow', sans-serif;
}

.blog .entry .entry-content h3 {
    font-size: 23px;
}
/*.aboutus-page ul{*/
/*    padding:0;*/
/*    margin:0;*/
/*}*/
.main-ab ul li{
    list-style:disc;
    text-align:start;
    margin-top:10px;
    color:#000;
    
}
.main-ab p{
  text-align:start;  
  margin-bottom:10px;
}
.main-ab h1{
   text-align:start;     
}

.card-ser-img{
    border:0;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    transition:0.5s;
}
.card-ser-img:hover {
    transform: translateY(-20px);
}
.card-img{
   height:350px;
    width:100%;
}

.card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-ser-img .card-text{
    min-height: 304px;

}


.text-banner h2{
    color:#000;
}
.text-banner p{
    color:#000;
}

h3.heading-t{
   font-size:30px;
   font-weight:600;
   color:#000;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.ser-main .service-item {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid 
   color-mix(in srgb, #666666, transparent 85%);
    transition: 0.3s;
}

.ser-main .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.ser-main .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.ser-main .service-item .title a {
  color: #000;
}

.ser-main .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.ser-main.service-item:hover {
  border-color:red;
}

.ser-main .service-item:hover .title a {
  color: var(--accent-color);
}

.ser-main h2{
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 30px;
  color:#000;
}

p.fn{
    font-size:18px;
    font-weight:700;
    color:#000;
}
.about-se h4{
     font-size:25px;
    font-weight:700;
    color:#000;
    text-align:start;
}

.ser-detaisl-content {
    margin-top: 17px;
}

.ser-detaisl-content p {
    font-size: 17px;
    line-height: 32px;
}
.coursemap .card-img {
    height: auto;
}

.coursemap .card-text {
    min-height: 219px;
}

.coursemap .card-ser-img {
    text-align: center;
}
.ser-main .service-item .description {
    line-height: 28px;
    font-size: 17px;
    margin: 0;
    color: #000;
    padding-bottom: 10px;
}

.ser-main .service-item .title {
    font-size: 22px;
    color: #000;
}

.service-item ul li {
    color: #000;
    margin-top: 10px;
}

.ser-details.yard p {
    font-size: 18px;
    line-height: 32px;
}

.new-ser .card-img {
    height: 80px!important;
    width: 80px!important;
    padding: 5px;
    border: 1px solid #ccc;
    margin-top: 25px !important;
    margin: auto;
}

.list-o ul li{
    list-style:none;
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.accordion-button:not(.collapsed) {
    color: #d67400;
    background-color: #e5e5e5;
}

.about-home h1{
    color:#000;
    font-weight:800;
}
.about-home p{
    font-size:17px !important;
    line-height:32px;
    margin-bottom:20px;
}
.about-home {
    text-align: left;
}

.ser-home .img-ser {
    height: 350px;
    width: 100%;
    background-color: #fff;
}
.ser-home .img-ser img{
    height:100%;
    width: 100%;
    object-fit: contain;
}

.oo{
   height: 400px;
    width: 100%;  
}

.oo img{
    height:100%;
    width: 100%;
    object-fit: contain;
}

.ratebox h1{
        font-weight: 500;
    margin: 15px 0!important;
    font-size: 50px !important;
    color: #000;
    text-align: left;
}


.ratebox h2{
        font-weight: 500;
    margin: 15px 0!important;
    font-size: 35px !important;
    color: #000;
    text-align: left;
}



.ratebox h3{
        font-weight: 500;
    margin: 15px 0!important;
    font-size: 30px !important;
    color: #000;
    text-align: left;
}

.ratebox ul li ,.ratebox ol li{
    text-align: left;
    margin-top: 15px !important;
    color:#000000;
}

/*===========================Responsive======================*/
@media (max-width: 1400px) {
    
}


@media (max-width: 1200px) {
    
}

@media (max-width: 1023px) {
   #hero p {
    width: 100%;
   }
   #hero h2 {
    font-size: 4rem;
   }
   #call-to-action h3{
       max-width:80%;
   }
}    

@media (max-width: 990px) {
  #hero h2 {
    font-size: 3rem;
   } 
    #call-to-action h3{
       max-width:100%;
       font-size: 45px;
    line-height: 45px;
   }
   .blog-box .container{
       max-width:100%;
       width:100%;
   }
   #call-to-action p {
    color: #fff;
    max-width: 100%;
   }
   #featured-services h3 {
    font-size: 40px;
   }
} 


@media (max-width: 768px) {
 .arrow-right-p i {
    font-size: 43px;
    transform: rotate(90deg) !important;
    margin-top: 26px;
}
#call-to-action h3{
       max-width:100%;
       font-size: 30px;
    line-height: 30px;
   }
.arrow-right-p:after {
    transform: rotate(90deg);
}
.blog-sec{
       height: 100%;
    position: relative;
    flex-direction: column-reverse; 
    margin: 0px 0 0px 0;
}
.blog-text {
    width: 100%;
    padding: 24px 5px 20px 5px;
}
.blog-img {
    width: 100%;
    height: 300px;
}
.left-box-ser h3 {
    font-size: 39px;
}
.left-box-ser p {
    padding-left: 30px;
}
.btn-all-2.px-5 {
    padding: 0 !important;
    padding-left: 28px !important;
}
  #featured-services h3 {
    font-size: 35px;
   }
   #hero h2 {
    font-size: 2.5rem;
}
}

@media (max-width: 425px) {
   .holeser li.style-list{
      width:30%;
  } 
  .blog-text h3 {
    color: #313131;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
}
  #featured-services h3 {
    font-size: 30px;
   }
#hero h2 {
    font-size: 21px;
    line-height: 28px;
}
#hero {
    height: 100vh;
}
#hero p {
    width: 90%;
    margin: 0 auto 30px auto;
    color: #fff;
    font-size: 15px;
}



.navbar a:hover, .navbar .active > a, .navbar li:hover > a {
  color: #bd9c29 !important;
  border-color: #3fbbc0;
}


.style-list a{
    color:#fff !important;
}
#featured-services h1 {
    font-size: 27px;
}
.right-box {
    margin-top: 0;
}
section#blogbox {
    margin-bottom: 25px;
}
#hero {
    height: 60vh;
}
#hero .carousel-container {
    width: 90%;
}
#hero p {
    width: 100%;
}
.aboutus-page p {
    text-align: left;
}
#featured-services h1 {
    text-align: left;
}
.style-tab ul{
    border:0;
}
.arrow-right-p:after{
    display:none;
}
.blog .entry .entry-title {
    font-size: 20px;
    line-height: 25px; 
}
.blog .entry {
    padding: 5px;
    
}
.blog .entry h2 {
    font-size: 18px;
}
.blog .entry .entry-content h3 {
    font-size: 17px;
}
.col-lg-8.entries {
    padding: 5px;
}
.blog .sidebar {
    padding: 6px;
}
.blog .sidebar {
    padding: 6px;
    margin: 0 0 18px 5px;
    
}
    .blog .entry .entry-img {
     width: 100%;
    height: 100%;
        margin: auto;
        margin-bottom:10px;
    
    }
    .entry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.blog {
    padding: 14px 0 20px 0;
}
}




