/**
* Template Name: Reveal - v4.6.0
* Template URL: https://bootstrapmade.com/reveal-bootstrap-corporate-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #fff;
    color: #4a4a4a;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

a {
    color: #4a4a4a;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #ff9000;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Montserrat", sans-serif; */
    font-family: 'Roboto Condensed', sans-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: #ff9000;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff9000;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    padding: 0;
    height: 40px;
    
}

#topbar .contact-info i {
    font-style: normal;
    color: #ff9000;
    /*margin-left: 5px;*/
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    /* color: #444; */
    color: #4a4a4d;
    font-family: 'Roboto Condensed', sans-serif;
 
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
   
}

#topbar .contact-info i a:hover {
    color: #ff9000;
}

#topbar .social-links a {
    color: #4a4a4d;
    padding: 0 15px;
    display: inline-block;
    line-height: 1px;
    border-left: 1px solid #e9e9e9;
    font-family: 'Roboto Condensed', sans-serif;
}

#topbar .social-links a:hover {
    color: #50d8af;
}

#topbar .social-links a:first-child {
    border-left: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    /*height: 80px;*/
     height: 110px;
    transition: all 0.5s;
    z-index: 997;
    background: #fff;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
    font-size: 42px;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

#header #logo h1 a {
    color: #0c2e8a;
}

#header #logo h1 a span {
    color: #50d8af;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header {
        height: 95px;
    }
    #header #logo h1 {
        font-size: 34px;
    }
    /*#header #logo img {*/
    /*    max-height: 40px;*/
    /*}*/
}

.scrolled-offset {
    margin-top: 70px;
}


/*--------------------------------------------------------------
# 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: 10px 20px 10px 20px;
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4a4a4d;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.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: #ff9000;
  }
  .navbar .getstarted, .navbar .getstarted:focus {
    background: #8fc04e;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #9bc761;
  }
  .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;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .navbar .dropdown ul a {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #4a4a4d;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
  }
  .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: #ff9000;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    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;
  }
  .menudevider {
    width: 1px;
    height: 28px;
    /* padding-left: 20px; */
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
    float: left;
    /* background-image: url('assets/img/menudevider.jpg'); */
    background-repeat: no-repeat;
    overflow: hidden;
  }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #ff9000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    /*.carousel-indicators{*/
    /*    margin-bottom: 40px;*/
    /*}*/
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000000;
    transition: 0.3s;
    z-index: 999;
    opacity: 1;
}

.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: #4a4a4a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #ff9000;
}

.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: #ff9000;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 80vh;
    position: relative;
    /* background: url("../img/hero-carousel/1.jpg") no-repeat; */
    background-size: cover;
    padding: 0;
    /* margin-left: 120px; */
}

#hero .hero-content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero .hero-content h2 {
    color: #0c2e8a;
    margin-bottom: 30px;
    font-size: 64px;
    font-weight: 700;
}

#hero .hero-content h2 span {
    color: #50d8af;
    text-decoration: underline;
}

@media (max-width: 767px) {
    #hero .hero-content h2 {
        font-size: 34px;
    }
    #hero {
        width: 100%;
        height: 28vh;
        position: relative;
        background-size: cover;
        padding: 0;
       
    }
}

#hero .hero-content .btn-get-started,
#hero .hero-content .btn-projects {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
}

#hero .hero-content .btn-get-started {
    background: #0c2e8a;
    border: 2px solid #0c2e8a;
}

#hero .hero-content .btn-get-started:hover {
    background: none;
    color: #0c2e8a;
}

#hero .hero-content .btn-projects {
    background: #50d8af;
    border: 2px solid #50d8af;
}

#hero .hero-content .btn-projects:hover {
    background: none;
    color: #50d8af;
}

#hero .hero-slider {
    z-index: 8;
    height: 100vh;
}

#hero .hero-slider::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 7;
}

#hero .hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: opacity;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-bottom: 40px;
    cursor:pointer;
}

@media (max-width: 992px) {
    .carousel-indicators li {
        margin-bottom: 0px;
    }
    
}

.carousel-indicators .active {
    background-color: #ff9000;
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    padding: 40px 0;
    overflow: hidden;
}


/* Sections Header
--------------------------------*/

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 20px;
    color: #ff9000;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    /* background: #50d8af; */
    background: #4a4a4a;
    bottom: 0;
    left: 0;
}

.section-header p {
    padding: 0;
    margin: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: #fafafa;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.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;
    }
}


/* About Section
--------------------------------*/

#about {
    padding: 60px 0 30px 0;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    margin-left: -15px;
    max-width: 100%;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }
    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content h2 {
    color: #0c2e8a;
    font-weight: 700;
    font-size: 36px;
    font-family: "Raleway", sans-serif;
}

#about .content h3 {
    color: #555;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #50d8af;
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}


/* Services Section
--------------------------------*/

#services {
    padding: 40px 0;
}

#services p {
    /* font-style: italic; */
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 26px;
    color: #4a4a4d  ;
    text-align: justify;
  }

  .about_us_data{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 26px;
    color: #4a4a4d  ;
    text-align: justify;
  }

#services .card {
    /* padding: 40px; */
    /* box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1); */
    box-shadow: 10 10px 29px 0 rgb(68 88 144 / 10%);
    background: #fff;
   /* transition: 0.4s; */
   transition: all 0.4s ease-in-out;
    height: 100%; 
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    /* text-align: center; */
 } 

#services .card:hover {
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
}

#services .card .icon {
    float: left;
}

#services .card .icon i {
    color: #444;
    font-size: 64px;
    transition: 0.5s;
    line-height: 0;
    margin-top: 34px;
}

#services .card .icon i:before {
    background: #0c2e8a;
    background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .card h4 {
    /* margin-left: 100px; */
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 15px;
    color:#ff9000;
    font-family: 'Roboto Condensed', sans-serif;
}

#services .card h4 a {
    color: #444;
}

#services .card p {
    font-size: 13px;
    /* margin-left: 100px; */
    margin-bottom: 0;
    line-height: 24px;
} 

@media (max-width: 767px) {
    #services .card .card {
        margin-bottom: 20px;
    }
    #services .card .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }
    /* #services .card h4,
    #services .card p {
        margin-left: 0;
        text-align: center;
    } */
}


#services .icon {
    margin: 0 auto 15px auto;
    padding-top: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

/* Clients Section
--------------------------------*/

#clients {
    padding: 30px 0;
}


#clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.1s;
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

#clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ff9000;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ff9000;
}


/* Our Portfolio Section
--------------------------------*/

#portfolio {
    background: #fff;
    padding: 30px 0;
    /*margin-top: 60px;*/
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px 12px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #f7f7f7;
    border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #50d8af;
}

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

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

#portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

 #portfolio .portfolio-item .portfolio-info {
    opacity: 1;
    position: absolute;
    left: 15px;
    right: 15px; 
     bottom: -20px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    /* background: #50d8af; */
    background: #404040;
    padding: 5px 10px;
}

#portfolio .portfolio-item .portfolio-info h4 {
    font-size: 15px;
    /* color: #fff; */
    color:#ff9000;
    font-weight: 600;
}
/*
#portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}*/

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: rgba(255, 255, 255, 0.6);
    transition: ease-in-out 0.3s;
}

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

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


#portfolio .portfolio-item:hover img {
    top: -35px;
    cursor: pointer;
}

#portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: -10;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ff9000;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ff9000;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-family: 'Roboto Condensed', sans-serif;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    font-size: 14px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}


/* Testimonials Section
--------------------------------*/

#testimonials {
    padding: 30px 0;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
    overflow: hidden;
}

#testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px 30px 0 30px;
    margin: 30px 15px;
    text-align: center;
    min-height: 350px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    #testimonials .testimonial-item {
        margin: 30px 10px;
    }
}

#testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

#testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

#testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #50d8af;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #50d8af;
}


/* Call To Action Section
--------------------------------*/

#call-to-action {
    background: #081e5b;
    background-size: cover;
    padding: 40px 0;
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin: 10px;
    border: 3px solid #fff;
    color: #fff;
}

#call-to-action .cta-btn:hover {
    background: #50d8af;
    border: 3px solid #50d8af;
}


/* Our Team Section
--------------------------------*/

#team {
    background: #fff;
    padding: 30px 0 0 0;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
}

#team .member .pic {
    overflow: hidden;
    text-align: center;
}

#team .member .pic img {
    max-width: 100%;
}

#team .member .details {
    background: #50d8af;
    color: #fff;
    padding: 15px;
    border-radius: 0 0 3px 3px;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

#team .member .social {
    margin-top: 5px;
}

#team .member .social a {
    color: #fff;
}

#team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

  .contact .info-box {
    color: #4a4a4a;
    text-align: center;
    box-shadow: rgb(214 215 216 / 60%) 0px 0px 30px;
    padding: 20px 0px 30px;
    margin-bottom: 30px;
}

.contact .info-box i {
    font-size: 32px;
    color: #ff9000;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #ff9000;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 700;
    margin: 10px 0px;
}

.contact .info-box p {
    padding: 0px;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0px;
}

/*.contact .php-email-form {*/
/*    box-shadow: rgb(214 215 216 / 60%) 0px 0px 30px;*/
/*    padding: 30px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.contact .php-email-form input {*/
/*    padding: 10px 15px;*/
/*}*/

/*.contact .php-email-form input, .contact .php-email-form textarea {*/
/*    border-radius: 0px;*/
/*    box-shadow: none;*/
/*    font-size: 14px;*/
/*}*/

/*.contact .php-email-form textarea {*/
/*    padding: 12px 15px;*/
/*}*/

/*.contact .php-email-form .loading {*/
/*    display: none;*/
/*    background: rgb(255, 255, 255);*/
/*    text-align: center;*/
/*    padding: 15px;*/
/*}*/

/*.contact .php-email-form1 .error-message {*/
/*    display: none;*/
/*    color: rgb(255, 255, 255);*/
/*    background: rgb(237, 60, 13);*/
/*    text-align: left;*/
/*    padding: 15px;*/
/*    font-weight: 600;*/
/*}*/

/*.contact .php-email-form1 .sent-message {*/
/*    display: none;*/
/*    color: rgb(255, 255, 255);*/
/*    background: rgb(24, 210, 110);*/
/*    text-align: center;*/
/*    padding: 15px;*/
/*    font-weight: 600;*/
/*}*/

/*.contact .php-email-form button[type="submit"] {*/
/*    background: #ff9000;*/
/*    border: 0px;*/
/*    padding: 10px 24px;*/
/*    color: rgb(255, 255, 255);*/
/*    transition: all 0.4s ease 0s;*/
/*}*/

.contact .php-email-form1 {
    box-shadow: rgb(214 215 216 / 60%) 0px 0px 30px;
    padding: 30px;
    margin-bottom: 30px;
}

.contact .php-email-form1 input {
    padding: 10px 15px;
}

.contact .php-email-form1 input, .contact .php-email-form1 textarea {
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form1 textarea {
    padding: 12px 15px;
}


.contact .php-email-form1 button[type="submit"] {
    background: #ff9000;
    border: 0px;
    padding: 10px 24px;
    color: rgb(255, 255, 255);
    transition: all 0.4s ease 0s;
}

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


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f4f4f4;
    min-height: 40px;
  }
  .breadcrumbs h2 {
    font-size: 18px;
    padding-top: 4px;
    font-weight: 500;
    font-family: 'Roboto Condensed', sans-serif;
  }
  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumbs .page_name{
    /* padding-left: 10px; */
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #ff9000;
  }
  .breadcrumbs ol li + li {
    padding-left: 10px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    /* color: #ff9000; */
  }
  
  .breadcrumbs ol li + li .active{
    color: #ff9000;
  }
  
  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #ff9000;
    content: "/";
  }
  
  @media (max-width: 768px) {
    .breadcrumbs .d-flex {
      display: block !important;
    }
    .breadcrumbs ol {
      display: block;
    }
    .breadcrumbs ol li {
      display: inline-block;
    }
  }





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    margin-top: 60px;
    background: #404040;
    position: relative;
  }
  
  #footer::before {
    content: "";
    /*position: absolute;*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
  }

  #footer .footer-top {
   
    background: #3b3b3b;
    border-top: 1px solid #474747;
    border-bottom: 1px solid #474747;
    padding: 60px 0 30px 0;
  }
  
  #footer  .footer-links {
    margin-bottom: 30px;
  }
  
  #footer h4 {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
  }
  #footer  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer  .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-links ul i {
    padding-right: 2px;
    color: #ff9000;
    font-size: 18px;
    line-height: 1;
  }
  #footer  .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 13px;
  }
   #footer  .footer-links ul a:hover {
    color: #ff9000;
  }
  
  #footer  .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-contact p {
    line-height: 26px;
    font-size: 13px;
  }
  
  #footer  .footer-info {
    margin-bottom: 30px;
  }
  #footer  .footer-info h3 {
    font-size: 13px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  #footer  .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
  }
  
  .mt-3 {
    margin-top: 1rem!important;
  }
  
  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #545454;
    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{
        color:#ff9000;
    }
  
 

  #footer .footer-bottom {
    border-top: 1px solid #282828;
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 10px;
  }
  #footer .footer-bottom .designedBy{
    color: #ff9000;
  }
  #footer .copyright {
    text-align: center;
    float: left;
    font-size: 13px;
  }
 

  @media (min-width: 768px) {
    #footer .credits {
        float: right;
        text-align: center;
        font-size: 13px;
      }
  }

  @media (max-width: 767px) {
    #footer .credits {
         float: right; 
        text-align: center;
        font-size: 13px;
      }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* #whatsup {*/
/*    bottom: 10px;*/
    /* bottom: 10px; */
/*    height: 55px;*/
/*    right: 0px;*/
/*}*/
/*.whatsapp {*/
/*    position: fixed;*/
/*    bottom: 8px;*/
    /* right: 95px; */
/*    right: 92px;*/
/*    height: 100px;*/
/*    width: 150px;*/
    /* padding: 5px 8px; */
/*    text-align: center;*/
/*    overflow: hidden;*/
/*    z-index: 999;*/
/*}*/
/*.whatsapp img {*/
/*    width: 50px;*/
    /* width: 100%; */
/*    height: auto;*/
/*}*/

