:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

.btn-warning{
  background: var(--brand);
}
.btn-warnings{
  background: #24cc63;
  transition: all 0.5s;
  color: #ffffff;
}
.btn-warnings:hover{
  background: transparent;
  color: #24cc63;
  border: 1px solid #24cc63;
}

.text-warning{
  color: var(--brand) !important;
}

/* Carousel */
.carousel-item {
  height: 100vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

/* Main About Image */
.main-img {
  border-radius: 15px;
  transition: transform 0.5s ease;
}
.main-img:hover {
  transform: scale(1.05);
}

/* Floating Small Image */
.floating-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  border: 5px solid #fff;
  border-radius: 10px;
  transition: transform 0.5s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
.floating-img:hover {
  transform: scale(1.1) rotate(2deg);
}

/* Floating Shape (decorative) */
.floating-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  z-index: -1;
  animation: floatShape 6s ease-in-out infinite;
}

/* Shape Animation */
@keyframes floatShape {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Button Hover */
.btn-warning:hover {
  background: #e0a800;
  color: #fff;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

@media (min-width:992px){
  .about-rgt{
    padding-left: 100px;
  }
}
@media (max-width:992px){
  .about-lft{
    overflow: hidden;
  }
}

/* Mission & Vision Section */
.mission-vision {
  background: #f9f9f9; /* light background */
  padding: 60px 0;
}

.mission-vision .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.mission-vision .section-title span {
  color: var(--brand);
  border-bottom: none; /* removed underline */
}

.mission-vision .section-subtitle {
  font-size: 16px;
  color: black;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.mission-vision h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px;
}

.mission-vision p {
  font-size: 16px;
  color: black;
  line-height: 1.6;
}

/* Mission & Vision Icons */
.mv-icon {
  font-size: 40px; /* size of the icon */
  color: var(--brand) ;
  flex-shrink: 0; /* prevent shrinking */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .mission-vision .section-title {
    font-size: 28px;
  }
  .mv-icon {
    font-size: 32px;
    width: 40px;
  }
}

/* ===== Unique Call Now Section Styles ===== */
.call-now-section {
  background: linear-gradient(135deg, rgba(65, 66, 11, 0.85), rgba(233, 232, 170, 0.85)), 
              url("../img/image-2/img-5.png") center/cover no-repeat fixed;
  /* border-radius: 15px; */
  padding: 120px 30px;
  margin: 50px 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

/* Add subtle animated shapes in the background */
.call-now-section::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite;
}
.call-now-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(20px); }
}

/* Title */
.call-now-title {
  font-family: 'Volkhov', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}
.call-now-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  /* background: rgba(42, 66, 11, 0.85); */
  margin-top: 10px;
  border-radius: 2px;
}

/* Text */
.call-now-text {
  font-family: 'Poppins', sans-serif;
  color: #f0f0f0;
  font-size: 17px;
  line-height: 1.6;
}

/* Button */
.call-now-btn {
  display: inline-block;
  background: var(--brand) ;
  color: #fff;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.call-now-btn:hover {
  background: #fff;
  color: var(--brand) ;
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .call-now-section {
    text-align: center;
    padding: 80px 20px;
  }
  .call-now-btn {
    margin-top: 20px;
  }
}

/* ==================== Why Choose Us Section CSS =================== */
.why-choose-us {
  background: linear-gradient(to right, #eef6f9, #fdfdfd);
  /* background: #1c1c1c; */
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Decorative floating shapes */
.why-choose-us::before,
.why-choose-us::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--brand);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-us::before {
  top: -50px;
  left: -50px;
}

.why-choose-us::after {
  bottom: -50px;
  right: -50px;
}

/* Section Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--brand);
  /* border-bottom: 3px solid var(--brand); */
  padding-bottom: 3px;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.why-choose-us .section-subtitle{
color: black;

}

.section-title:hover span::after {
  width: 100%;
}

.section-subtitle {
  font-size: 16px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}
/* Feature Cards */
.feature-card {
  background:#fff;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--brand);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background: var(--brand) ;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
  background: #1c1c1c;
  transform:  rotate(5deg) scale(1.1);
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand) ;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: black;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
  .feature-card {
    padding: 25px 20px;
  }
}
@media (max-width: 425px) {
  .why-choose-us::before,
.why-choose-us::after {
  background: #f8d0a1ff;
}
}

/*** Testimonial ***/

/* Container overflow to hide edges */
#testimonial {
  overflow-x: hidden;
  position: relative;
}

/* Gradient overlays on left and right */
.testimonial-carousel::before,
.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 0;
  z-index: 1;
  pointer-events: none;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(to right, #ffff 0%, rgba(255,255,255,0) 100%);
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(to left, #ffff 0%, rgba(255,255,255,0) 100%);
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

/* Testimonial items */
.testimonial-carousel .owl-item .testimonial-item {
  background-color: #f7f7f7ff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
  border: 1px solid transparent;
  transform: scale(.85);
  transition: .5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Centered item style */
.testimonial-carousel .owl-item.center .testimonial-item {
  background-color: var(--brand);
  transform: scale(1);
  border-color: var(--brand);
  box-shadow: none;
}

/* Text inside testimonial */
#testimonial .testimonial-item h6 {
  font-size: 18px;
  font-weight: 700;
  color: #224e18;
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  transition: .5s;
}

#testimonial .testimonial-item small {
  font-size: 14px;
  color: black;
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  transition: .5s;
}

#testimonial .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #5d7e55;
  margin: 10px 0;
  font-family: 'Lato', sans-serif;
  transition: .5s;
}

/* Quote icon */
#testimonial .testimonial-item i.fa-quote-left {
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 0;
  transition: .5s;
}

/* Image */
.testimonial-carousel .owl-item .testimonial-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: white !important;
}

/* Navigation buttons */
.testimonial-carousel .owl-nav {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 300px;
  opacity: 1; /* Always visible */
  transition: .5s;
  z-index: 2;
}

/* Remove hover opacity effect */
.testimonial-carousel:hover .owl-nav {
  width: 350px; /* Optional: keep the slight width expansion on hover */
}

/* Navigation buttons style */
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 50%;
  font-size: 20px;
  transition: .5s;
}

/* Hover effect */
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #fff;
  background: var(--brand);
}

/* Content */
.overview-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}

.overview-content h4 {
  font-family: "poppins" "sans-serif";
  color: #d9dbd9;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.overview-content p {
  color: #fff;
  font-family: "poppins";
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Button */
.overview-content .btn {
  background-color: var(--brand);
  border: none;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  transition: background 0.3s;
}

.overview-content .btn:hover {
  background-color: #e9640c;
  color: #fff;
}


/* Contact Section Background */
#contact {
  background:none ;
  padding: 60px 0;
}

/* Headings */
#contact h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color:var(--brand) ; /* dark grey */
}

#contact h5.section-title {
  color: black;
  font-family: "poppins"; 
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#contact .info-box h5 {
  margin-top: 10px;
  font-weight: 600;
  color: var(--brand); /* strong green */
}

/* #contact .info-box p {
  color: #555;
  margin: 0;
  font-size: 15px;
} */

/* Map Styling */
#contact iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Info Boxes - same height */
#contact .info-box {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 180px; /* ensures equal height */
}

#contact .info-box:hover {
  /* background:#30472a;  */
  transform: translateY(-5px);
}

#contact .info-box h5 {
  margin-top: 10px;
  font-weight: 600;
  color:#fff;
}

#contact .info-box p{
    color:#fff ;  
    margin: 0;
    font-size: 15px;

}
#contact .info-box p a {
    color:#fff ;  
    margin: 0;
    font-size: 15px;                   
   
}

/* Icons */
#contact .info-box .icon {
  font-size: 30px;
  color: var(--brand);
  margin-bottom: 10px;
}

/* Footer hover effects */
.footer-link:hover {
  color: var(--brand) !important;
  padding-left: 5px;
  transition: all 0.3s ease;
}
footer a:hover i {
  color: var(--brand);
  transition: color 0.3s ease;
}


/* Path */
.banner-area {
    position: relative;
    min-height: 300px;
    color: #fff;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding-top: 450px; */
    /* margin-top: 300px; */
}

/* Gradient overlay */
.banner-area::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(146, 167, 63, 0.6), rgba(94, 83, 47, 0.6));
    z-index: 1;
}


.banner-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 32px;
    }
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
    padding: 0;
    background: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus {
    color: #fff !important;
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.about-box{
    height: 100% !important;
  }
  .about-img{
    width: 100%;
    height: 100%;
  }
  .main-title{
    font-family: 'Dancing Script';
    font-weight: 700;
    color: var(--secondary);
  }

  .about-title{
    color: var(--orange) !important;
  }

  .about-content{
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content h3{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive'; */
    font-weight: 700;
    color: var(--orange);
  }
  .about-content h5{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive'; */
    font-family: "Poppins";
    font-weight: 500;
    font-size: 1rem !important;
    color: var(--secondary);
  }

  @media (max-width:992px) {
    
    /* .about-box-img{
      order: 0 !important;
    }
    .about-box-content{
      order: 1 !important;
    } */

    /* .about-img-one{
      order: 0 !important;
    }
    .abt{
      order: 1 !important;
    } */

    .abt-lg{
      display:none;
    }

  }
  @media (min-width:992px) {
    .abt-md{
      display:none;
    }
  }


   /* ============ products start =============  */
.courses-3 {
  margin-top: -30px;
  position: relative;
  background-color: #fff;
  border-radius: 8px; /* Rounded corners */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  height: 100%; /* Ensures all elements in the row are the same height */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps content aligned neatly */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.courses-3:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 5px 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}
.courses-3 img {
  border-radius: 8px 8px 0 0; /* Image corners match container */
  object-fit: cover;
  height: 200px; /* Ensures images are the same height */
  width: 100%;
}

.courses-3 h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 10px 0;
  color: var(--orange);
  font-family: "Volkhov", "DM Serif Display", 'cursive' !important;
  padding-top: 20px;
}

.courses-3 p {
  /* font-size: 1rem; */
  line-height: 1.6;
  flex-grow: 1; /* Ensures text takes up remaining space */
}

.back-img {
  background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url("../img/image-2/img-7.webp") no-repeat center center;
  background-size: cover;
  color: white;
  /* min-height: 550px; */
  width: 100%;
  border: 5px solid white;
}

@media only screen and (max-width: 760px) {
  .back-img {
    min-height: 450px;
  }
}


.untree_co-section {
    /* padding: 50px 0; */
    position: relative; }
    @media (max-width: 991.98px) {
      .untree_co-section {
        padding: 50px 0; } }
    .untree_co-section .heading h3 {
      font-size: 35px;
      color: #000000; }
    @media (max-width: 991.98px) {
      .untree_co-section .heading {
        font-size: 20px; } }
    .untree_co-section .heading strong {
      font-weight: 700; }



      .item {
        border: none;
        margin-bottom: 30px;
        border-radius: 4px;
        display: block; }
        .item a {
          display: block;
          overflow: hidden;
          position: relative;
          border-radius: 4px;
          display: block; }
          .item a img {
            position: relative;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s all ease-in-out;
            -o-transition: .3s all ease-in-out;
            transition: .3s all ease-in-out; }
        .item .item-wrap {
          display: block;
          position: relative; }
          .item .item-wrap:after {
            z-index: 2;
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            visibility: hidden;
            opacity: 0;
            -webkit-transition: .3s all ease-in-out;
            -o-transition: .3s all ease-in-out;
            transition: .3s all ease-in-out; }
          .item .item-wrap > i {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 3;
            -webkit-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
            color: #ffffff;
            font-size: 1.7rem;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease; }
          .item .item-wrap:hover:after {
            opacity: 1;
            visibility: visible; }
          .item .item-wrap:hover i {
            margin-top: 0px;
            opacity: 1;
            visibility: visible;
            -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1); }
        .item-wrap:hover img {
          -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
          transform: scale(1.05);
          -webkit-transition: .3s all ease-in-out;
          -o-transition: .3s all ease-in-out;
          transition: .3s all ease-in-out; }

          .gallery-button{
            display: flex;
            justify-content: center;
            align-items: center;
          }
           /* Button Container */
.gallery-button {
  text-align: center;
  margin: 20px 0;
}

/* Button Style */
.gallery-button .btn-slider {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  background-color: #007bff; /* Blue background */
  color: #e90c0c; /* White text */
  border: 2px solid #007bff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.gallery-button .btn-slider:hover {
  background-color:rgb(248, 7, 47);
  color: #007bff;
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover Rectangle Out Effect */
.gallery-button .btn-slider.hvr-rectangle-out:hover {
  transform: scale(1.05);
}

/*---------------------
  Project Slider
-----------------------*/

.project {
	padding: 0 15px;
}

.project__slider{
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.project__slider.owl-carousel .owl-nav button {
  z-index: 10;
  display: block !important;
}

.project__slider__item {
  width: 94%;
  height: 300px;
  background: var(--brand);
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  /* padding: 0 10px; */
  box-sizing: border-box;
}

@media (max-width: 425px) {
  .project__slider__item {
  width: 100%;
}
}

.project__slider__item:hover .project__slider__item__hover {
	bottom: 30px;
}

.project__slider__item:hover .project__slider__item__hover span {
	left: 0;
}

.project__slider__item:hover .project__slider__item__hover h5 {
	right: 0;
}

.project__slider.owl-carousel .col-lg-3 {
	max-width: 100%;
}

.project__slider.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 99;
}

.project__slider.owl-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  background: var(--sub);
  font-size: 24px;
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.project__slider.owl-carousel .owl-nav button:hover {
  background-color: var(--brand);
  color: #fff;
}

/* .project__slider.owl-carousel .owl-nav button {
	height: 50px;
	width: 50px;
	background: #ffffff;
	font-size: 28px;
	color: #111111;
	position: absolute;
	left: 35px;
	top: 50%;
	margin-top: -25px;
	line-height: 54px;
	text-align: center;
} */

.project__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 35px;
}

.project__slider__item__hover {
	text-align: center;
	background: #ffffff;
	position: absolute;
	left: 25px;
	bottom: -500px;
	width: calc(100% - 50px);
	padding: 25px 15px;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	overflow: hidden;
}

.project__slider__item__hover span {
	color: #dfa667;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
	position: relative;
	left: 30px;
	-webkit-transition: all, 1s;
	-o-transition: all, 1s;
	transition: all, 1s;
}

.project__slider__item__hover h5 {
	color: #111111;
	font-size: 20px;
	text-transform: uppercase;
	position: relative;
	right: 30px;
	-webkit-transition: all, 1s;
	-o-transition: all, 1s;
	transition: all, 1s;
}

@media only screen and (max-width: 767px) {
  .project__sidebar {
		padding-top: 20px;
	}
  .project {
		padding: 0;
	}
}

@media only screen and (max-width: 479px) {
  .project__slider.owl-carousel .owl-nav button {
		left: 15px;
	}
	.project__slider.owl-carousel .owl-nav button.owl-next {
		right: 15px;
	}
	.project {
		padding: 0;
	}
}

.set-bg {
  margin-left: 10px;
  margin-right: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media (max-width:425px) {
  .set-bg {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.font-one{
  font-weight: 700 !important;
}