/**
* Template Name: Remember
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/remember-free-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
    text-decoration: none;
    color: #ed8f25;
}

a:hover {
  color: #a7cd74;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ed8f25;
  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: #c36905;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1c1c1c;
  padding: 10px 0;
  font-size: 14px;
  color: #9b9b9b;
}

#topbar .contact-info i {
  font-style: normal;
  color: #ed8f25;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

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

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

#topbar .social-links a {
  color: #9b9b9b;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 999;
    transition: all 0.5s;
    background: rgba(255, 255, 255, .85);
    /*box-shadow: 0 0 5px 5px rgba(255, 255, 255, .9);*/
    backdrop-filter: blur(3px);
    position: relative;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  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 0 10px 30px;
        font-family: "Poppins", sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        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: #ed8f25;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ed8f25;
  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: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 1000;
  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;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #353535;
}

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

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  #topbar {
    position: relative;
    z-index: 1;
  }

  #header {
    position: relative;
    z-index: 1;
  }

  .navbar-mobile {
    z-index: 9999 !important;
  }
}

.navbar-mobile {
  position: fixed;
  /*overflow: hidden;*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.9);
  transition: 0.3s;
  z-index: 9999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

    .navbar-mobile ul {
        display: block;
        position: relative;
        top: 60px;
        right: 10px;
        bottom: 15px;
        left: 10px;
        padding: 10px 0;
        /* border-radius: 8px; */
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
        width: 95%;
        height: 100vh;
    }

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #353535;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 0px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        border-bottom: 1px #ed8f25 solid;
        /*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: #ed8f25;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #ed8f25;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #ed8f25;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs-section {
    background: #ed8f25;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.tabs-section .nav-tabs {
  border-bottom: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs-section .nav-tabs .nav-item {
  margin: 0;
  flex-shrink: 0;
}

.tabs-section .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  margin: 0;
  background: transparent;
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
  position: relative;
}

.tabs-section .nav-tabs .nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.tabs-section .nav-tabs .nav-link.active {
  color: #fff;
  background: transparent;
  border-bottom-color: #fff;
  font-weight: 600;
}

.tabs-section .tab-content {
  padding: 40px 0;
  min-height: 200px;
  background: #fff;
}

.tabs-section .tab-pane {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .tabs-section .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tabs-section .nav-tabs .nav-link {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.manufacturing-bg {
    background-image: url("../img/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.content-box-white {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px 12px 0 0;
    padding: 30px;
    margin-top: 150px;
    /*margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.content-box-white p {
    margin-bottom: 15px;
    color: #444444;
    line-height: 1.8;
}

.content-box-white p:last-child {
    margin-bottom: 0;
}

.solution-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 12px 12px;
    padding: 30px;
    min-height: 200px;
}

.solution-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Filter Options
--------------------------------------------------------------*/
.filter-sidebar {
    position: relative;
}

.filter-toggle {
    display: none;
}

.filter-sidebar-content {
    width: 100%;
}

.filter-options {
    width: 100%;
    padding: 20px;
}

@media (max-width: 575.98px) {
    .filter-toggle {
        display: block;
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: #ed8f25;
        color: #fff;
        border: none;
        padding: 15px 10px;
        border-radius: 0 8px 8px 0;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    }

    .filter-toggle:hover {
        background: #c36905;
    }

    .filter-toggle i {
        display: block;
    }

    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .filter-overlay.active {
        display: block;
        opacity: 1;
    }

    .col-lg-3.col-md-3 {
        padding: 0;
        width: 0;
        overflow: visible;
    }

    .filter-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 280px;
        background: #fff;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        height: 100vh;
    }

    .filter-sidebar.active {
        left: 0;
    }

    .filter-sidebar-content {
        padding: 20px;
    }

    .filter-options {
        width: 100%;
        padding: 0;
    }

    .col-lg-9.col-md-9 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.filter-item:hover {
    background: #fff4e8;
    border-color: #ed8f25;
    color: #ed8f25;
    text-decoration: none;
}

.filter-item span {
    font-size: 16px;
    font-weight: 500;
    color: #353535;
    font-family: "Raleway", sans-serif;
}

.filter-item:hover span {
    color: #ed8f25;
}

.filter-item i {
    font-size: 18px;
    color: #999;
    transition: all 0.3s ease;
}

.filter-item:hover i {
    color: #ed8f25;
    transform: translateX(5px);
}

.category-section {
    scroll-margin-top: 20px;
    margin-bottom: 40px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ed8f25;
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Customer Grid
--------------------------------------------------------------*/
.customer-grid {
    width: 100%;
}

.customer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.customer-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.customer-card img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.customer-card p {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #353535;
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# page Section
--------------------------------------------------------------*/
#page {
    width: 100%;
    height: 30vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

    #page:before {
        content: "";
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #page .page-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    #page h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: #fff;
    }

    #page h2 {
        color: #eee;
        margin-bottom: 50px;
        font-size: 24px;
    }

    #page .btn-get-started {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #ed8f25;
        color: #fff;
    }

        #page .btn-get-started:hover {
            background: #ed8f25;
        }

@media (min-width: 1024px) {
    #page {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #page {
        height: 25vh;
    }

        #page h1 {
            font-size: 28px;
            line-height: 18px;
        }

        #page h2 {
            font-size: 15px;
            line-height: 18px;
            margin-bottom: 10px;
        }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #fff4e8;
  color: #ed8f25;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #ed8f25;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #fff4e8;
  color: #ed8f25;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.about .box-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d6e8bf;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #ed8f25;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #ed8f25;
  border-color: #ed8f25;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #ed8f25;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed8f25 50%, rgba(143, 192, 78, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(70% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 244, 233, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ed8f25;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# About-page
--------------------------------------------------------------*/
.page .box-heading h4 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0 0 15px 0;
    background: #fff4e8;
    color: #ed8f25;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.page .box-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #353535;
    margin-bottom: 15px;
}

.page .icon-box {
    margin-top: 10px;
}

    .page .icon-box .icon {
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 2px solid #d6e8bf;
        border-radius: 50px;
        transition: 0.5s;
    }

        .about .icon-box .icon i {
            color: #ed8f25;
            font-size: 32px;
        }

.page .icon-box:hover .icon {
    background: #ed8f25;
    border-color: #ed8f25;
}

    .page .icon-box:hover .icon i {
        color: #fff;
    }

.page .icon-box .title {
    margin-left: 55px;
    margin-top:5px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 15px;
}

    .page .icon-box .title a {
        color: #343a40;
        transition: 0.3s;
    }

        .page .icon-box .title a:hover {
            color: #ed8f25;
        }

.page .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.page .video-box {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

.page .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ed8f25 50%, rgba(143, 192, 78, 0.4) 52%);
    border-radius: 50%;
    display: block;
    /*position: absolute;*/
    left: calc(50% - 47px);
    top: calc(70% - 47px);
    overflow: hidden;
}

    .page .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .page .play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(255, 244, 233, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .page .play-btn:hover::after {
        border-left: 15px solid #ed8f25;
        transform: scale(20);
    }

    .page .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 5%;
        top: 5%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }


@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}



.page .btn-buy {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    border: 2px solid #ed8f25;
    color: #ed8f25;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    background-color: rgba(198, 16, 0, 0);

}

    .page .btn-buy:hover {
        background: #ed8f25;
        color: #fff;
    }


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ed8f25;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #353535;
}

.why-us .box p {
  color: #919191;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #ed8f25;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #fff;
  padding: 0 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #ed8f25;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed8f25;
  border: 2px solid #ed8f25;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e5f0d5;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        background: #fff4e8;
        border-radius: 50px;
        border: 1px solid #fed9b0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: ease-in-out 0.3s;
    }

.services .icon-box .icon i {
  color: #fed9b0;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #353535;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #ed8f25;
}

.services .icon-box:hover .icon {
  border-color: #ed8f25;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding-bottom: 40px;
}

.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: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #efefef;
  border-radius: 50px;
}

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

.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: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ed8f25;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  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: white;
  transition: ease-in-out 0.3s;
}

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

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

.portfolio .portfolio-item:hover img {
  top: -30px;
}

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

/*--------------------------------------------------------------
# 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 #ed8f25;
}

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

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

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: background-color 0.3s ease;
}

.team .member:hover {
  /*background-color: #999;*/
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

    .team .member .member-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background-color: rgba(0, 0, 0, 0.3);*/
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

.team .member:hover .member-img::after {
  opacity: 1;
}

.team .member .member-img img {
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 0;
}

    .team .member .social {
        position: absolute;
        left: 0;
        bottom: 30px;
        right: 0;
        opacity: 0;
        transition: ease-in-out 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0px 20px;
    }

.team .member .social a {
  transition: color 0.3s;
  color: #353535;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(143, 192, 78, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a:hover {
  background: #ed8f25;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #353535;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
#news {
  background: #fff;
  padding: 60px 0;
}

#news .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: background-color 0.3s ease;
}

#news .member:hover {
  background-color: #999;
}

#news .member .member-img {
  position: relative;
  overflow: hidden;
}

#news .member .member-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

#news .member:hover .member-img::after {
  opacity: 1;
}

#news .member .member-img img {
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 0;
}

#news .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0px 20px;
}

#news .member .social a {
  transition: color 0.3s;
  color: #fff;
  text-decoration: none;
}

#news .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(2, 2, 2, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #353535;
}

.pricing .box h4 {
  font-size: 42px;
  color: #ed8f25;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #353535;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #ed8f25;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  border: 2px solid #ed8f25;
  color: #ed8f25;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #ed8f25;
  color: #fff;
}

.pricing .recommended {
  border-color: #ed8f25;
}

.pricing .recommended .btn-buy {
  background: #ed8f25;
  color: #fff;
}

    .pricing .recommended .btn-buy:hover {
        background: #c36905;
        border-color: #c36905;
    }

.pricing .recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: #ed8f25;
  color: #fff;
  border-radius: 0 0 25px 25px;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  background: #f5faf0;
}

.faq .section-title h2 {
  background: #e9f3dd;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #cbe1ac;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #ed8f25;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ed8f25;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff4e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353535;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686868;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ed8f25;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ed8f25;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #7aa93c;
}

@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: 24px;
  padding-top: 4px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4f4f;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: url("../img/footer-bg.jpg") center center no-repeat;
    color: #fff;
    font-size: 14px;
    position: relative;
    background-size: cover;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.75);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 60px 0;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-top p {
  font-size: 15;
  font-style: italic;
  margin: 30px 0 0 0;
  padding: 0;
}

#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ed8f25;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #75a239;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ed8f25;
  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 .footer-top .social-links a:hover {
  background: #75a239;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #282828;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .footer-links-policy {
  font-size: 13px;
  text-align: right;
  flex-shrink: 0;
}

#footer .footer-links-policy a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  margin: 0 5px;
}

#footer .footer-links-policy a:hover {
  color: #ed8f25;
}

@media (max-width: 991px) {
  #footer .copyright {
    text-align: center;
    margin-bottom: 10px;
  }
  
  #footer .copyright.d-flex {
    flex-direction: column !important;
  }
  
  #footer .footer-links-policy {
    font-size: 11px;
    text-align: center;
  }
  
  #footer .footer-links-policy a {
    display: inline-block;
    margin: 2px 3px;
  }
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}

.badge {
    font-size:11px;
    padding:5px 10px;
    color: #fff;
    background-color: #ed8f25;
}

/* Footer Links Styles */
#footer .footer-links h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-transform: none;
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  margin-bottom: 10px;
}

#footer .footer-links ul li a {
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

#footer .footer-links ul li a:hover {
  color: #ed8f25;
  padding-left: 5px;
}

#footer .footer-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ed8f25;
  margin-bottom: 20px;
}

#footer .footer-info p {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

#footer .footer-info p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Methodology Section
--------------------------------------------------------------*/
.methodology {
  padding: 80px 0;
  background: #3a4a5a;
}

.methodology .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.methodology .section-title h2 {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  line-height: 1;
  margin: 0 auto 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ed8f25;
  font-family: "Poppins", sans-serif;
  background: #fff4e8;
  border-radius: 20px;
  display: inline-block;
}

.methodology .section-title h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.methodology-card {
  background: #3a4a5a;
  padding: 40px 35px;
  border-radius: 8px;
  height: 100%;
}

.methodology-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.methodology-card .subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
  font-style: italic;
}

.methodology-card .content {
  color: #fff;
}

.methodology-card .content p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}

    .methodology-card .highlight-box {
        border: 5px solid rgba(240, 140, 35, 0.2);
        background: #4a5a6a;
        padding: 20px;
        border-radius: 8px;
        margin: 25px 0;
    }

.methodology-card .highlight-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  margin: 0;
}

.methodology-card .references {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #5a6a7a;
}

.methodology-card .references h5 {
  font-size: 14px;
  font-weight: 600;
  color: #ed8f25;
  margin-bottom: 15px;
}

.methodology-card .references ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.methodology-card .references ul li {
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 0;
}

/*--------------------------------------------------------------
# Milestones Timeline Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Core Team Section
--------------------------------------------------------------*/
.core-team {
  padding: 80px 0;
  background: #fff;
}

.core-team .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.core-team .section-title h2 {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  line-height: 1;
  margin: 0 auto 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ed8f25;
  font-family: "Poppins", sans-serif;
  background: #fff4e8;
  border-radius: 20px;
  display: inline-block;
}

.core-team .section-title h2::after {
  display: none;
}

.core-team .section-title h3 {
  margin: 0 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #353535;
}

.core-team .section-title h3 .highlight {
  color: #ed8f25;
}

.core-team .section-title p {
  margin: 15px 0 0 0;
  font-size: 16px;
  color: #686868;
  text-align: center;
}

.team-member-card {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.team-member-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.team-member-card:hover .member-avatar,
.team-member-card:hover h4,
.team-member-card:hover p {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card .member-avatar,
.team-member-card h4,
.team-member-card p {
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ed8f25;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: "Poppins", sans-serif;
}

.team-member-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #353535;
  font-family: "Raleway", sans-serif;
}

.team-member-card p {
  font-size: 14px;
  color: #686868;
  line-height: 1.6;
  margin: 0;
}

.member-image {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 2;
}

.member-image img {
  /*width: 100%;*/
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-member-card:hover .member-image {
  top: 0;
  opacity: 1;
}

.milestones {
  background: #2a3a4a;
  padding: 80px 0;
  position: relative;
}

.milestones .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.milestones .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.milestones .section-subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
}

.milestones .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.milestones .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ed8f25;
  transform: translateX(-50%);
  z-index: 1;
}

.milestones .timeline-item {
  position: relative;
  margin-bottom: -70px;
  width: 100%;
  padding-bottom: 0;
}

.milestones .timeline-item:nth-child(odd) {
  z-index: 1;
}

.milestones .timeline-item:nth-child(even) {
  z-index: 2;
}

.milestones .timeline-item:first-child {
  margin-top: 0;
}

.milestones .timeline-item:last-child {
  margin-bottom: 0;
}

.milestones .timeline-item::after {
  content: "";
  display: table;
  clear: both;
}

.milestones .timeline-dot {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #ed8f25;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10;
  border: 3px solid #2a3a4a;
  top: calc(22px + 9px);
}

.milestones .timeline-content {
  background: #3a4a5a;
  padding: 22px 28px;
  border-radius: 8px;
  width: calc(46% - 25px);
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 0;
  text-align: left;
  min-height: 140px;
}

.milestones .timeline-item-left {
  text-align: left;
}

.milestones .timeline-item-left .timeline-content {
  float: left;
  margin-right: 0;
  margin-left: 0;
}

.milestones .timeline-item-right {
  text-align: right;
}

.milestones .timeline-item-right .timeline-content {
  float: right;
  margin-left: 0;
  margin-right: 0;
}

.milestones .timeline-year {
  font-size: 18px;
  font-weight: 600;
  color: #ed8f25;
  margin-bottom: 10px;
  line-height: 1.2;
  display: inline-block;
  width: 100%;
}

.milestones .timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.milestones .timeline-description {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .milestones .timeline::before {
    left: 30px;
  }

  .milestones .timeline-item {
    margin-bottom: -70px;
    position: relative;
    min-height: 120px;
  }

  .milestones .timeline-item::after {
    content: "";
    display: table;
    clear: both;
    height: 0;
  }

  .milestones .timeline-dot {
    left: 30px;
    top: calc(22px + 9px);
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
    position: absolute;
  }

  .milestones .timeline-content {
    width: calc(100% - 80px);
    float: right !important;
    margin-left: 80px !important;
    margin-right: 0 !important;
    min-height: 120px;
    position: relative;
  }

  .milestones .section-title {
    font-size: 28px;
  }

  .milestones .section-subtitle {
    font-size: 16px;
  }
}

.f12 {
    font-size:12px;
    color:#9b9b9b;
}

.green {
    color: #4a9b9b;
}

.green_bt {
    background-color: #4a9b9b;
    height: 2px;
    width: 50px
}

.y {
    color: #ed8f25;
}

.y_bt {
    background-color: #ed8f25;
    height: 2px;
    width: 50px
}
/* bottom-to-top */
a.move-top {
    width: 100px;
    height: 100px;
    background: url(/assets/img/p-s.jpeg) no-repeat center #fff;
    background-size: cover;
    display: inline-block;
    position: fixed;
    bottom: 20%;
    right: 2%;
    z-index: 999;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #fff;
}
