/*
Table of Content:
- fonts
- general
- button
- navbar
- header title
- home intro
- services
- pricing
- portfolio
- testimonial
- contact
- footer
- responsive
*/

/* fonts */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900");

/* general */
body {
    background-color:#FF69B4;
    color: #8a8a8a;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: white;
}

a {
    color: #111;
}

a:hover {
    color: #614cab;
    text-decoration: none;
    transition: .5s ease-out;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

p {
    line-height: 26px;
}

.bg-grey {
    background: #f4f4f6;
}

*:focus {
    outline: none;
}



/* button */
.button {
    background: #ffb005;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 22px;
    display: inline-block;
    border: 2px solid transparent;
}

.button:hover {
    border-color: #ffb005;
    color: white;
    background: black;
    transition: .5s ease-out;
}

.button2 {
    background: transparent;
    border: 2px solid #ffb005;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    color: #222;
    letter-spacing: 1px;
    margin-top: 22px;
    display: inline-block;
}

.button2:hover {
    border-color: #ffb005;
    color: #fff;
    background: #ffb005;
    transition: .5s ease-out;
}

/* ========== Floating Navbar with Smooth Gradient ========== */
.navbar {
    position: fixed; /* Keeps navbar floating */
    top: 10px; /* Adjusted top margin */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: #800080; /* Solid purple color (matching theme) */
    padding: 12px 20px;
    border-radius: 20px; /* Rounded navbar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Floating effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.navbar .container{
    margin: 0 auto;
    padding:  0 0;
    max-width: 960px;
    width: 100%;
}

/* Navbar Logo */
.navbar .navbar-logo {
    width: 130px;
}

/* Navbar Links */
.navbar .navbar-nav .nav-link {
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover {
    color: #ffdeeb !important; /* Light pink hover effect */
}

/* Active Navbar Item */
.navbar .navbar-nav .nav-link.active {
    color: #FF69B4;
}

/* Navbar Toggle Button */
.navbar-toggler {
    border: none;
    color: #fff;
}

.navbar-toggler i {
    font-size: 24px;
}

/* ========== Responsive Styles for Mobile ========== */
@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 10px 15px;
    }

    .navbar .navbar-nav {
        text-align: center;
        background: rgba(106, 13, 173, 0.95);
        border-radius: 15px;
        padding: 10px 0;
    }

    .navbar .nav-link {
        margin: 5px 0;
    }
}



/* haader title */
.header-title {
    margin-top: 90px;
    padding: 65px 0;
    text-align: center;
    background: white;
}

.header-title h3 {
    color: #333;
    font-size: 32px;
    font-weight: 600;
}

.content .h2{
    color: white;
}

/* about us */

/* Section Styling */
#download {
    padding: 50px 15px;
    background-color: #FF69B4;
    text-align: left;
    margin: auto;
}

/* Image Styling */
.feature-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Title and Subtitle */
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F5F5F5;
    margin-bottom: 20px;
}

.hero-img {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


/* Paragraph Styling */
#download p {
    font-size: 1rem;
    line-height: 1.8;
    color: #FFF8F0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #download {
        text-align: center;
    }
    .feature-img {
        margin: auto;
    }
    .hero-title, .hero-subtitle, #download p {
        text-align: center;
    }
}



.feature-about{
    margin-left: 90px;
}

.about-features {
    text-align: center; 
    padding: 20px; 
    background-color: #343446; 
}

.about-features img {
    max-width: 80%; 
    height: auto; 
    margin: 20px auto; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    display: block; 
}




.clear{
    clear: none;
}



.rows{
    margin-right: -15px;
    margin-left: -15px;
}

/* Working Video Section */
#how-works {
    background-color: purple; /* Matches website's color scheme */
    padding: 60px 20px;
    color: white;
    text-align: center;
}

#how-works-vending {
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #D1D1E0;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.inc-video {
    width: 100%;
    height: auto;
    display: block;
}

video {
    background: pink;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}


/*-- Gallery --*/

.pd--100-0 {
    padding: 100px 0;
}

.gallery--section{
    background-color: black;
    color: white;
}

.gallery--section img{
    width: 100%;
}

.gallery--title{
    position: relative;
    margin-top: -7px;
    margin-bottom: 80px;
    padding-bottom: 15px;
    text-align: center;
    z-index: 0;
}

.legend-title{
    color: white;
}



@media screen and (min-width: 320px) and (max-width:460px){
    .gallery--section img{
        height: 300px;
    }
}

@media screen and (min-width: 460px) and (max-width: 540px){
    .gallery--section img{
        height: 400px;
    }
}

@media screen and (min-width: 540px) and (max-width: 764px){
    .gallery--section img{
        height: 450px;
    }
}

@media screen and (min-width: 764px) and (max-width: 756px){
    .gallery--section img{
        height: 600px;
    }
}

@media screen and (min-width: 756px) and (max-width: 760px){
    .gallery--section img{
        height: 680px;
    }
}



/* ---Section--- */
section{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

.section-title-content{
  margin-bottom: 60px;
}
.section-title{
  font-weight: 600;
}
.section-sub-title{
  margin-top: 16px;
  font-weight: 400;
  /* opacity: 0.5; */
}

/* home intro */
.home-intro {
    background: url('../images/bg-intro.png'), linear-gradient(to right, #6a0dad, #ff69b4);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 70px;
    text-align: center;
    color: white;
}

/* Layout */
.home-intro .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-intro .hero-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.home-intro .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.home-intro .intro-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons a {
    padding: 10px 20px;
    background-color: #FF1493;
    color: white;
    border-radius: 5px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #444444; /* Hover effect */
    color: white;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .home-intro .container {
        flex-direction: column;
    }
    .home-intro .hero-title {
        font-size: 2rem;
    }
    .home-intro .hero-subtitle {
        font-size: 1.5rem;
    }
    .cta-buttons {
        text-align: center;
    }
}


/* services */
.services .content {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 30px;
    cursor: default;
    margin-bottom: 30px;
}

.services .content i {
    font-size: 56px;
    color: #614cab;
}

.services .content h5 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.services .content:hover {
    background: #614cab;
    color: #fff;
    transition: .7s ease-out;
    box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
}

.services .content:hover i {
    color: #fff;
}

.services .content:hover h5 {
    color: #fff;
}

.services .completed {
    background: #fff;
    text-align: center;
    padding: 60px 0;
    border-radius: 15px;
    margin-top: 62px;
    margin-bottom: 10px;
    background: url(../images/bg-service3.png) bottom 18px right 18px, url(../images/bg-service1.png) bottom left, url(../images/bg-service2.png) top right 230px;
    background-repeat: no-repeat;
    background-size: 70px, 300px, 190px;
    background-color: #fff;
}

.services .completed h4 {
    font-size: 58px;
    font-weight: 600;
    color: #614cab;
}

.services .completed span {
    font-size: 24px;
    font-weight: 500;
}

/* pricing */

html {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .background {
    padding: 0 25px 25px;
    position: relative;
    width: 100%;
    background-color: #272B35;;
  }

  .pricing--head{
      font-family: 'Poppins', sans-serif;
      padding-top: 50px;
      text-align: center;
      margin-bottom: 0;
      padding-bottom: 0;
      font-size: 50px;
      background-color:#272B35;
      color: white;
  }
  
  .background::after {
    content: '';
    background: #272B35;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60a9ff', endColorstr='#4394f4',GradientType=0 );
    height: 350px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  @media (min-width: 900px) {
    .background {
      padding: 0 0 25px;
    }
  }
  
  .container {
    margin: 0 auto;
    padding: 50px 0 0;
    max-width: 960px;
    width: 100%;
  }
  
  .panel {
    background-color:purple;
    border-radius: 10px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
  }
  
  .pricing-table {
    box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
  }
  
  @media (min-width: 900px) {
    .pricing-table {
      flex-direction: row;
    }
  }
  
  .pricing-table * {
    text-align: center;
    text-transform: uppercase;
  }
  
  .pricing-plan {
    border-bottom: 1px solid #272B35;
    padding: 25px;
  }
  
  .pricing-plan:last-child {
    border-bottom: none;
  }
  
  @media (min-width: 900px) {
    .pricing-plan {
      border-bottom: none;
      border-right: 1px solid pink;
      flex-basis: 100%;
      padding: 25px 50px;
    }
  
    .pricing-plan:last-child {
      border-right: none;
    }
  }
  
  .pricing-img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  
  .pricing-header {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 45px;
  }

  .pricing-headers {
      font-size: 26px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 0;
  }

  .pricing--header{
      color: white;
      font-size: 26px;
      margin-bottom: 0;
      padding-bottom: 0;
  }
  
  .pricing-features {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 50px 0 25px;
  }
  
  .pricing-features-item {
    border-top: 1px solid #e1f1ff;
    font-size: 17px;
    line-height: 1.5;
    padding: 15px 0;
  }

  .pricing--features-item {
    border-top: 1px solid #e1f1ff;
    border-bottom: 1px solid #e1f1ff;
    font-size: 17px;
    line-height: 1.5;
    padding: 15px 0;
    
  }
  
  .pricing-features-item:last-child {
    border-bottom: 1px solid #e1f1ff;
  }
  
  .pricing-price {
    color: white;
    display: block;
    font-size: 32px;
    font-weight: 700;
  }

  .pricing-prices {
    color: white;
    display: block;
    font-size: 32px;
    font-weight: 700;
    padding-top: 55px;
  }

  .pricing--price {
    color: white;
    display: block;
    font-size: 32px;
    font-weight: 700;
    padding-top: 50px;
  }
  
  .pricing-button {
    border: 1px solid #9dd1ff;
    border-radius: 10px;
    color: white;
    display: inline-block;
    margin: 25px 0;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
  }
  
  .pricing-button:hover,
  .pricing-button:focus {
    background-color: #e1f1ff;
  }
  
  .pricing-button.is-featured {
    background-color: #48aaff;
    color: #fff;
  }
  
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active {
    background-color: #269aff;
  }



/*portfolio*/
.portfolio .row .col-md-4 {
    padding: 15px;
}

.portfolio .portfolio-filter-menu {
    margin-bottom: 30px;
    text-align: center;
}

.portfolio .portfolio-filter-menu ul li {
    display: inline-block;
    margin: 0 10px;
    border: 1px solid #614cab;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    letter-spacing: 1px;
    transition: .4s ease-in-out;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
}

.portfolio .portfolio-filter-menu ul li span {
    z-index: 99;
    position: relative;
}

.portfolio .portfolio-filter-menu ul li.active {
    background: #614cab;
    color: #fff;
}

.portfolio .content-image {
    position: relative;
}

.portfolio .content-image:hover .image-overlay {
    opacity: 0.7;
}

.portfolio .content-image:hover .portfolio-caption {
    opacity: 1;
}

.portfolio .content-image img {
    width: 100%;
    border-radius: 15px;
}

.portfolio .content-image img:visited {
    outline: none;
}

.portfolio .content-image img:focus {
    outline: none;
}

.portfolio .content-image .portfolio-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 40%;
    color: #333;
    text-align: center;
    opacity: 0;
    transition: all .5s ease;
    color: #fff;
}

.portfolio .content-image .portfolio-caption h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    color: #fff;
}

.portfolio .content-image .portfolio-caption .subtitle {
    margin-top: 22px;
    top: 52px;
    position: relative;
    text-align: right;
}

.portfolio .content-image .portfolio-caption ul li {
    display: inline-block;
    margin: 0 5px;
}

.portfolio .content-image .portfolio-caption i {
    width: 30px;
    height: 30px;
    background: #333;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.portfolio .content-image .image-overlay {
    background: #614cab;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    opacity: 0;
    transition: all .5s ease;
    margin: auto;
}

/* Contact Section */

/* Contact Section */
.contact {
    background-color: purple; /* Dark grey */
    color: white;
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white; /* Pink heading */
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #D1D1E0; /* Light grey text */
    margin-bottom: 80px !important; 
    text-align: center;
}

.contact h5 {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white; /* Pink accent color */
}

.contact p {
    margin-bottom: 8px;
    color: #D1D1E0; /* Light grey text */
}

.contact-link {
    color: #D1D1E0;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form */
.contact .form-control {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 100%;
    color: #333;
}

.contact .form-control:focus {
    border-color: #FF69B4;
    outline: none;
}

.contact .btn-primary {
    background-color: #FF1493;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact .btn-primary:hover {
    background-color: #FF1493;
}

/* Responsive */
@media (max-width: 768px) {
    .contact .row {
        flex-direction: column;
    }
}




/* footer bottom */
.footer-bottom {
    background: #302c42;
    text-align: center;
    color: #eee;
    padding: 35px 0 35px;
    border-top: 1px solid #888;
}

/* footer */
footer {
    background: #302c42;
    padding: 90px 0 80px;
}

footer .brand {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

footer .brand img {
    width: 65px;
}

footer h5 {
    color: #fff !important;
    margin-top: 8px;
    margin-bottom: 15px;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #ccc;
}

footer ul li a i {
    margin-right: 10px;
}

footer .social li a i {
    width: 20px;
}

/* Product Section */
.product-section {
    padding: 60px 0;
    background-color: #2E2D4D;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;}

.section-sub-title {
    font-size: 18px;
    color: #DADADA;
    opacity: 0.9;
    margin-bottom: 40px;
}

.section-divider {
    border: none;
    border-top: 2px solid white; /* Pink color for the line */
    margin: 30px 0; /* Space above and below the line */
    width: 100%; /* Line width relative to the page */
    margin-left: auto;
    margin-right: auto; /* Center the line */
}

.product-category {
    margin-bottom: 100px;
}

.product-category-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 65px;
    color: #FFFFFF;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.product-item {
    width: 350px; 
    background: #3B3A5A;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
}

.product-item img {
    display: block !important;
    visibility: visible !important;
}

.product-img-ven {
    width: 100%;
    height: 250px;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #5A5991;
    display: block;
}

.product-img-inc {
    width: 100%;
    height: 380px;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #5A5991;
    display: block;
}

.product-item h3 {
    font-size: 20px;
    color: #F2F2FF;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 16px;
    color: #D1D1E0;
}

.product-image-slider {
    display: flex;
    width: 100%;
    max-height: 250px; /* Adjust as needed */
    position: relative;
}

.product-text {
    padding-top: 250px;
    margin-top: 15px;
    min-height: 60px; /* Adjust to fit your text */
    z-index: 2; /* Ensures text is above images */
}

.product-image-slider img {
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    opacity: 0;
}

.product-image-slider img:first-child {
    opacity: 1;
}

.product-image-slider:hover img:first-child {
    opacity: 0;
}

.product-image-slider:hover img:last-child {
    opacity: 1;
}

/* Button Styles */
.spec-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5A5991;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-align: center;
}

.spec-button:hover {
    background-color: #3F3E75;
}

/* Hidden Content */
.spec-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 10px;
    text-align: center;
}

.spec-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Expandable Logic */
.spec-toggle:hover .spec-content {
    max-height: 500px; /* Adjust to fit the content */
}






/*responsive*/
@media (max-width:980px) {
    .home-intro {
        margin-top: 85px;
    }

    .home-intro h2 {
        letter-spacing: 3px;
        font-size: 48px;
        margin: 12px 0;
    }

    .home-intro .button {
        padding: 13px 20px;
    }

    .home-intro .button2 {
        padding: 13px 20px;
    }

    .home-intro h6 {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .home-intro img {
        margin-top: 95px;
    }

    .home-intro .content {
        padding-top: 0;
    }

    .navbar .navbar-nav li a {
        
        color:white;
    }

    .about h2 {
        margin-top: 30px;
    }

    .about .col-md-6 {
        max-width: 100%;
        flex: 100%;
    }

    .portfolio .content-image .portfolio-caption {
        top: 30%;
    }

}

@media (max-width:767px) {
    .home-intro {
        margin-top: 0;
        padding-bottom: 100px !important;
    }

    .home-intro .content-image {
        padding-left: 0;
    }

    .home-intro .content-image img {
        margin-top: 45px;
        float: none;
    }

    .container {
        padding: 0 15px;
    }

    .navbar-toggler {
        border-radius: 0;
    }

    .navbar-brand {
        margin-left: 15px;
    }

    .navbar-nav {
        background-color:black;
        box-shadow: 0 12px 30px -15px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 15px 15px;
        border-top: 0;
        outline: none;
    }

    .navbar-fixed .navbar-nav {
        background: transparent;
        box-shadow: none;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .about .content {
        margin-bottom: 30px;
    }

    .about .col-md-4:last-child .content {
        margin-bottom: 0;
    }

    .contact form {
        margin-top: 40px;
    }

    .services .completed h4 {
        margin-top: 40px;
    }

    .services .completed .col-md-4:first-child h4 {
        margin-top: 0;
    }

    .portfolio .content-image .portfolio-caption {
        top: 35%;
    }

    .portfolio .portfolio-filter-menu ul li {
        margin: 0 6px;
        padding: 10px 10px;
    }

    footer {
        text-align: center;
    }

    footer span {
        margin-bottom: 6px;
        display: block;
    }

    footer ul {
        text-align: center;
    }

    footer ul li {
        margin: 0 12px;
    }

}

@media (max-width:640px) {
    .navbar-fixed .navbar-nav li {
        padding: 0;
    }

    .navbar .navbar-nav {
        
        padding: 14px 0;
    }

    .navbar-fixed .navbar-nav {
        background: transparent;
        padding: 14px !important;
    }

    .navbar .navbar-nav li a {
        color: white;
    }

    .services .content-left {
        margin-bottom: 75px;
    }

    .services .col-sm-12:last-child .content {
        margin-bottom: 0;
    }

}

@media (max-width:480px) {
    .navbar .navbar-nav {
        margin: 11px;
        margin-left: 11px !important;
    }

    .navbar-fixed .navbar-nav {
        padding: 2px;
    }

    .portfolio .content-image .portfolio-caption {
        top: 40%;
    }

    footer h5 {
        margin-top: 26px;
    }

}

@media (max-width:360px) {
    .portfolio .content-image .portfolio-caption {
        top: 35%;
    }

}