* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.nav-item a {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 1rem !important;
    border-bottom: 4px solid transparent;
}

.nav-item a:hover {
    border-bottom: 3px solid #2e937a;
    transition: all 1s;
}


.navbar-collapse {
    flex-grow: 1;
}


.navbar-brand img {
    width: 16%;
}

.navbar-brand {
    width: 23%;
}

.active-a a {
    border-bottom: 3px solid #2e937a;
}

.navbar-light .navbar-toggler-icon {
  background-image: url(../img/menu.png);
  width: 30px;
  height: 30px;
}

.form-inline button a{
    color: #009961;
}
.form-inline button:hover a{
    color: #fff;
}
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #009961;
    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: #00c27b;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

a {
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/

#topbar {
    background: #fff;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #444444;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #2e937a;
}

#topbar .contact-info i {
    color: #2e937a;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}

#topbar .contact-info i:first-child {
    margin-left: 0;
}

#topbar .social-links a {
    color: #2f957c;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #2e937a;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

#header {
    /* background: rgba(255, 255, 255, 0.7); */
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    top: 0px;
    box-shadow: 0px 2px 15px rgba(11, 166, 70, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#header.header-scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 40px;
}

/* --------------------------------------Breadcrumb------------------------- */

.breadcrumb {
    background: linear-gradient(360deg, rgba(8, 202, 25, 0.431), rgba(29, 99, 106, 0.397)), url(../img/services.jpg);
    /* padding: 2rem 0; */
    background-size: cover;
    min-height: 70vh;
    background-position-y: center;
    background-attachment: fixed;
}

.breadcrumb li a {
    color: #ffff;
    padding: 2rem 3rem;
    text-align: center;
    border-radius: 8px;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    font-family: 'Raleway', sans-serif !important;

}

.breadcrumb li {
    padding-left: 5rem;
    padding: 10rem 0 0 0;
    margin: 0 auto;
}

.breadcrumb li a span {
    border-bottom: 2px solid #979797;
    padding-bottom: 1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #0f0f0f;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .social-links {
    margin: 0 0 40px 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #009961;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #00b371;
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

#footer .credits a {
    color: #00b371;
    transition: 0.3s;
}

#footer .credits a:hover {
    color: #009961;
}

.foot-logo img {
    width: 10%;
}

@media screen and (max-width: 1200px) {
    html {
      font-size: 0.8rem;
    }
  
    .navbar-brand img {
      width: 30%;
    }

    .navbar-brand{
        width: 20%;
    }
  
    .foot-logo img {
      width: 25%;
    }
}
@media screen and (max-width: 1000px) {
    html {
      font-size: 0.8rem;
    }
  
    .navbar-brand img {
      width: 40%;
    }
  
    .foot-logo img {
      width: 25%;
    }
}
@media screen and (max-width: 770px) {

    html {
      font-size: 0.7rem;
    }
  
    .foot-logo img {
      width: 30%;
    }

    .navbar-brand img {
        width: 50% !important;
    }
  }

@media screen and (max-width: 550px) {
    html {
        font-size: 0.7rem;
    }

    .navbar-brand img {
        width: 50% !important;
    }

    .foot-logo img {
        width: 30% !important;
    }

    .breadcrumb li a {
        font-size: 2.3rem;
    }

    .breadcrumb {
        min-height: 40vh;
        background-position-x: right;
    }

}