 :root {
      --nursery-green: #1b331a;
      --nursery-light-green: #68a357;
      --nursery-soft-bg: #f8fbf7;
      --nursery-gold: #c5a059;
  }
  body { font-family: 'Manrope', sans-serif; color: #333; overflow-x: hidden; }
  .font-serif { font-family: 'Playfair Display', serif; }
  .bg-nursery-green { background-color: var(--nursery-green); }
  .text-nursery-green { color: var(--nursery-green); }
  .text-nursery-light-green { color: var(--nursery-light-green); }
  .bg-nursery-light-green { background-color: var(--nursery-light-green); }
  .bg-nursery-soft-bg { background-color: var(--nursery-soft-bg); }
  .text-nursery-gold { color: var(--nursery-gold); }
  
  .btn-nursery { background-color: var(--nursery-light-green); color: white; border: none; transition: all 0.3s; font-weight: 600; }
  .btn-nursery:hover { background-color: var(--nursery-green); color: white; transform: translateY(-2px); }
  .btn-outline-white { border: 2px solid white; color: white; transition: all 0.3s; font-weight: 600; }
  .btn-outline-white:hover { background: white; color: var(--nursery-green); }
  
  .header-logo { height: 50px; }

  .btn-call { background-color: var(--nursery-light-green); color: white; border: none; transition: all 0.3s; font-weight: 500; font-size: 14.5px;}
  .btn-call:hover{
    background-color: var(--nursery-gold); 
    /*color: var(--nursery-green);*/
    color: white;
  }
  
  /* Hero Section with Slider */
  .hero-section { 
      min-height: 70vh;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      overflow: hidden;
  }
  .hero-slider-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
  }
  .hero-slider-container .carousel,
  .hero-slider-container .carousel-inner,
  .hero-slider-container .carousel-item {
      height: 100%;
  }
  .hero-slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(27, 51, 26, 0.6), rgba(27, 51, 26, 0.4));
      z-index: 2;
  }
  .hero-content {
      position: relative;
      z-index: 3;
  }
  
  .hero-section .mobile{
      display: none;
  }
  
  .hero-section .desktop{
        display: block;
    }
    .hero-section .con-btn .btn-outline-green{
        border: 1px solid #fff !important;
         color: white;
         font-weight: 700;
    }
    .hero-section .con-btn .btn-outline-green:hover{
        background-color: var(--nursery-green);
    }

  .feature-bar { margin-top: -60px; position: relative; z-index: 10; }
  .feature-card { background: white; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); padding: 30px; }
  
  .category-card { border-radius: 20px; padding: 20px; transition: all 0.3s; border: 1px solid #eee; }
  .category-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
  .category-img-wrapper { height: 200px; margin-bottom: 20px; border-radius: 15px; overflow: hidden; }
  .category-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
  
  .exp-badge { background: var(--nursery-light-green); color: white; padding: 25px; border-radius: 20px; border: 8px solid white; text-align: center; }
  
  /* Stats Parallax Section */
  .stats-section { 
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://lh3.googleusercontent.com/aida-public/AB6AXuAS1CoKM7Y17OXEYoN81Vvi28HCZldYJ71DGQ8We3VR5hQsTRSafc61q03Ph5hilbQ8y3IMIFuDowZvdeLKPOnzs5aR9ElwfmcI-a_yFBcEXovWn1WgSc8VHFV39EbgxY92WHo7ywdMJFORngI2iiP84uZ9RIO2RJCG-o2DedeGCj7ETcwf57suixo8OnA8T7eEJEDEcLWzqz77GmtHWAmYIZAjUyz_c4YyRA8D7JCh2mzAQxtS1XVjf_n8xDTQR6zMlH84fNOfttc');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      color: white; 
      padding: 100px 0; 
      position: relative;
  }

  /* Animations */
  @keyframes soft-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
  }
  
  @keyframes leaf-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
  }

  .leaf-animate {
      animation: leaf-bounce 2s ease-in-out infinite;
      will-change: transform;
  }
  
  @media (prefers-reduced-motion: no-preference) {
      .about-image-animate {
          animation: soft-bounce 5s ease-in-out infinite;
          will-change: transform;
      }
  }
  
  .whatsapp-float { position: fixed; bottom: 15px; left: 20px; background: #25d366; color: white; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; text-decoration: none; transition: 0.3s; }
  .whatsapp-float:hover { transform: scale(1.1); color: white; }
  .aspect-square { aspect-ratio: 1 / 1; }
  .last-border-0:last-child { border-right: none !important; }
  @media (max-width: 768px) { 
      .last-border-0 { border-right: none !important; } 
      .stats-section { background-attachment: scroll; } /* Better mobile performance */
  }
  
  @media (max-width: 580px) { 
      .hero-slider-image{
        object-fit: fill;
      }
    .hero-section .desktop{
          display: none;
     }
     .hero-section .mobile{
      display: block;
      height: unset;
    }
     .hero-section .con-btn{
        margin-top: 190px !important;
        background-color: var(--nursery-light-green);
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .hero-section .con-btn .btn-nursery{
        border: 1px solid #fff !important;
    }
    .hero-section .con-btn .btn-outline-green{
        border: 1px solid #fff !important;
        color: white;
        font-weight: 700;
    }
    .feature-bar{
        margin-top: -60px;
    }
    .hero-section .hero-content{
    	padding-left: 0px !important;
    	padding-right: 0px !important;
        /*padding-top: 100px;*/
    }
  }
  


  /* Carousel Indicator Styling */
  #testimonialCarousel .carousel-indicators {
      bottom: -50px;
  }
  #testimonialCarousel .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--nursery-light-green);
      opacity: 0.25;
      border: none;
      margin: 0 5px;
  }
  #testimonialCarousel .carousel-indicators .active {
      opacity: 1;
  }

   .gallery-img-container {
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
  }
  .gallery-img-container img {
      transition: transform 0.5s ease, filter 0.5s ease;
  }
  .gallery-img-container:hover img {
      transform: scale(1.1);
      filter: brightness(0.9);
  }




/*CONTACT US PAGE*/

  /* Hero Section */

       .contactus .hero-section {
            position: relative;
            height: 450px !important;
            min-height: 450px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: #ffffff;
            margin-top: 80px;
        }

       .contactus .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url("../img/Royal-Nursing-Garden-Office-Office-Banner.png");
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

      .contactus  .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(6, 30, 7, 0.4), rgba(6, 30, 7, 0.6));
            z-index: -1;
        }

       .hero-breadcrumb {
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .hero-breadcrumb a {
            color: inherit;
            text-decoration: none;
            font-size: 14px;
        }

       .hero-breadcrumb span.active {
            color: var(--secondary-fixed);
            font-size: 14px;
        }

       .hero-title {
            /*font-size: 72px;*/
            font-size: 35px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        /* Contact Section */
       .contactus .section-padding {
            padding: 70px 0;
        }

       .contactus .info-card {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }

       .contactus .icon-box {
            width: 48px;
            height: 48px;
            /*background-color: var(--surface-container-low);*/
            background-color: #68a357;;
            border: 1px solid rgba(195, 200, 190, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-green);
            transition: all 0.3s ease;
        }

        .contactus .icon-box span{
          color: white;
        }
        .contactus .icon-box:hover {
         background-color: var(--nursery-green) !important;
        }

        .contactus .info-card:hover .icon-box {
            /*background-color: var(--primary-green);*/
            background-color: var(--nursery-green) !important;
            color: #cdebc5;
        }

       .contactus .contact-form-container {
            background-color: var(--surface-container-low);
            padding: 48px;
            border-radius: 8px;
            border: 1px solid #aab891;
            position: relative;
            overflow: hidden;
        }

       .contactus .form-bg-icon {
            position: absolute;
            top: 15px;
            right: 5px;
            font-size: 100px;
            /*color: var(--primary-green);*/
            color: var(--nursery-green);
            opacity: 0.25;
            pointer-events: none;
        }

       .contactus .form-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--on-surface-variant);
            opacity: 0.8;
            margin-bottom: 8px;
        }

        .contactus .form-control, .form-select {
            border: 1px solid rgba(195, 200, 190, 0.4);
            border-radius: 8px;
            padding: 12px 16px;
            background-color: #ffffff;
        }

       .contactus .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 0.25rem rgba(27, 51, 26, 0.1);
            border-color: var(--primary-green);
        }
/*
       .contactus .btn-submit {
            background-color: var(--primary-green);
            color: #ffffff;
            border: none;
            padding: 16px 40px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }*/

     /*  .contactus .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            background-color: #2e4d2d;
            color: #ffffff;
        }
*/
        .contactus .btn-submit {
          color: white;
          padding: 9px 0px 9px 35px !important;
          width: 200px;
          display: inline-flex;
            align-items: center;
            text-align: center;
            gap: 12px;
            transition: all 0.3s ease;
         }
        /* Map Section */
       .contactus .map-section {
            position: relative;
            height: 500px;
            width: 100%;
            overflow: hidden;
        }

      .contactus  .map-overlay {
            position: absolute;
            inset: 0;
            background: rgba(27, 51, 26, 0.4);
            pointer-events: none;
            z-index: 10;
            transition: opacity 0.7s ease;
        }

      .contactus  .map-section:hover .map-overlay {
            opacity: 0;
        }

       .contactus .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(1);
            transition: filter 0.7s ease;
        }

       .contactus .map-section:hover iframe {
            filter: grayscale(0);
        }

       

/*ABOUT US PAGE*/

      
        :root {
            --primary-green: #1b331a;
            --dark-green-footer: #0a1a09;
            --surface-color: #f8faf6;
            --secondary-fixed: #fed65b;
            --text-on-surface-variant: #434841;
            --outline-variant: rgba(195, 200, 190, 0.3);
            --transition-speed: 0.3s;
        }

          /* Hero Section */

       .aboutus .hero-section {
            position: relative;
            height: 450px !important;
            min-height: 450px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: #ffffff;
            /*margin-top: 80px;*/
        }

       .aboutus .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url("../img/Royal-Nursing-Garden-Office-Office-Banner.png");
            background-size: cover;
            background-position: center;
            z-index: -2;
        }

     /* .aboutus .hero-section {
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            color: white;
        }*/
       .aboutus .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
       .aboutus .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(6, 30, 7, 0.4), rgba(6, 30, 7, 0.6));
            z-index: -1;
        }
       .aboutus .display-lg {
            font-size: clamp(3rem, 8vw, 5rem);
            line-height: 1.1;
            letter-spacing: -0.02em;
            font-weight: 800;
        }

        .aboutus .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
            40% {transform: translate(-50%, -10px);}
            60% {transform: translate(-50%, -5px);}
        }

        /* Reveal Animation */
       .aboutus .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
       .aboutus .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Story Section */
       .aboutus .section-padding {
            padding-top: 60px;
            padding-bottom: 60px;
        }
      .aboutus  .story-img-container {
            position: relative;
        }
      .aboutus  .story-img {
            aspect-ratio: 4/5;
            object-fit: contain;
            border-radius: 0.125rem;
            /* Added lowBounce animation */
            animation: lowBounce 3.5s ease-in-out infinite;
        }
        
        @keyframes lowBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }

      .aboutus  .experience-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 192px;
            height: 192px;
            background-color: #cdebc5; /* primary-fixed equivalent */
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #082009;
        }

        /* Bento Grid / Pillars */
     .aboutus   .pillars-section {
            background-color: var(--primary-green);
            color: white;
        }
      .aboutus  .value-card {
            background-color: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px;
            height: 100%;
            text-align: center;
        }
      .aboutus  .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

 .aboutus .value-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .aboutus .value-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  }



/*****************************************************/
/***********CUSTOM-STYLES --- STARTS HERE************/
/****************************************************/

.navbar{
    padding-bottom: 0.6rem !important; 
    padding-top: 0.6rem !important;
}
.navbar .header-logo{
    height: 72px;
}
.navbar li .nav-link{
	font-size: 15px;
	font-weight: 600;
	color: white;
    position: relative;
    align-items: center;
      display: flex;
  align-items: center;      /* Vertically centers the text with the line */
  text-align: center;
  text-transform: uppercase;
}
.navbar li .nav-link:hover{
	color: #fcc00d;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
	color: #fcc00d;
    /*text-decoration: underline;*/
}
.nav-link.active:before{
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    right: 0px;
    width: 50px;
    border: 1.5px solid #fcc00d;
    text-align: center;
    align-items: center;
    flex: 1;
    margin: auto;
}

#mobileMenu li a{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.feature-bar .feature-card{
	margin-left: 30px;
	margin-right: 30px;
}

.feature-card h6{
  font-size: 1.1rem;
}
.feature-card p{
  font-size: 14px;
}
.feature-card .fs-2{
  font-size: 1.9rem !important;
}

.hero-section .hero-content{
	padding-left: 50px;
    padding-top: 100px;
}

.stats-section .material-symbols-outlined{
	font-size: 47px;
}
.category-box{
	margin-bottom: 25px;
}

.more-btns {
	background-color: var(--nursery-green);
	padding-left: 28px !important;
	padding-right: 28px !important;
	border-radius: 25px;
}
.more-btns:hover{
	 background-color: var(--nursery-light-green);
}

.more-btns:focus{
		background-color: var(--nursery-green);
		color: white;
}
.btn-explore{
	background-color: var(--nursery-green);
	font-weight: 600;
	padding-top: .6rem !important;
  padding-bottom: .6rem !important;
}

.btn-explore:hover{
	background-color: var(--nursery-light-green);
	color: white;
}
.btn-explore:focus{
		background-color: var(--nursery-green);
		color: white;
}

.stats-section .counter{
	font-size: 1.9rem;
}
.stats-section .tracking-widest{
    font-size: 1.5rem !important;
}

.aboutus .quote{
  color: var(--nursery-light-green) !important;
  /*color: var(--nursery-green) !important;*/
}

footer .text-nursery-gold{
	color: #fcc00d;
}
footer .text-reset{
	color: white !important;
	font-size: 14px;
}
footer .text-reset:hover{
	color: #fcc00d !important;
}
footer p{
	color: white !important;
	font-size: 14px;
}

footer p span{
	font-size: 16px;
}

a.contact{
    color: white;
    text-decoration: none;
}
a.contact:hover{
    color: var(  --nursery-gold);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  /*display: none;*/
  right: 15px;
  bottom: 20px;
  z-index: 99999;
  /*background: #333;*/
/*  background-image: linear-gradient(90deg,#03228f,#0e73e4);*/
  background-color: var(--nursery-green); !important;
  border-radius: 50%;
  border: 0.5px solid var(--nursery-gold);
  /*opacity: 0.6;*/
  width: 40px;
  height: 40px;
  padding-top: 8px;
  transition: all 0.3s linear;
  text-decoration: none;
}


.back-to-top i {
  /*margin-bottom: 10px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  /*width: 40px;
  height: 40px;*/
  /*border-radius: 4px;*/
  /*background: #333;*/
/*  color: #fff;*/
color: var(--nursery-gold);
  transition: all 0.3s;
  /*transition: all 0.4s;*/
}

.back-to-top:hover {
  /*background: #000;*/
  /*border-radius: 50%;*/
/*  color: #000 !important;*/
   /*background: #333;*/
/*  background-image: linear-gradient(90deg,#0e73e4, #03228f);*/
/*  background-color: #bdf347 !important;*/
  border-radius: 50%;
  /*opacity: 1;*/
}

.back-to-top:hover > i{
  transition: all 0.2s;
  transform: translateY(-5px);
/*  color: #000 !important;*/
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
/*  box-shadow: 6px 6px 6px 8px #f2f2f2;
  -webkit-box-shadow: 6px 6px 6px #f2f2f2;*/
  /*border: 1px solid #dca831 !important;*/
 /* background: url(../../assets/img/apple-touch-icon.png);
  background-repeat: no-repeat;*/
}
#preloader img{
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 37px);
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 70px;
  height: 70px;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 45px);
  left: calc(50% - 50px);
  /*top: calc(50%);
  left: calc(50%);*/
  border: 3px solid #dca831;
  border-top-color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
/*  box-shadow: 8px 8px 8px  #f2f2f2;
  -webkit-box-shadow: 8px 8px 8px #f2f2f2;*/
  -webkit-animation: animate-preloader 2s linear infinite;
  animation: animate-preloader 2s linear infinite;
   /*background: url(../../assets/common/img/loader-leaf-icon.png);*/
  background-repeat: no-repeat;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#products{

}
#products .product-box .category-card{
    border: 0.7px solid var(--nursery-light-green) !important;
    /*border-radius: 0px !important;*/
}
#products .product-box .category-card .product-box-bottom{
    background-color: #eeeee4 !important;
}

.gallery{
    margin-bottom: 65px;
}
.gallery .portfolio-item{
    background-color: unset !important;
    border: unset !important;
}
.list-unstyled li{
    font-size: 15px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  /*margin: 0 auto 50px auto;*/
  list-style: none;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 0px;
}

.portfolio #portfolio-flters li {
  margin-top: 20px;
  cursor: pointer;
  display: inline-block;
  padding: 12px 17px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  /*font-family: 'Roboto-slab';*/
  border: 1px solid #81c02c;
  margin-left: 15px; 
  box-shadow: 0 0 10px rgb(214 215 216 / 60%);
/*  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;*/
  background-color: var(--nursery-light-green);
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  /*color: #81c02c;*/
  color: white;
  background-color: var(--nursery-green);
}

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

.portfolio-container{
  margin-top: 75px;
}


.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0.6;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}



/*****************************************************/
/***********CUSTOM-STYLES --- STARTS HERE************/
/****************************************************/




