/**
* Template Name: Arsha - v2.1.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

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

a {
    color: #FD7B33;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #323232;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #323232;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.home-header.scrolled {
    background: rgba(50, 50, 50, 0.9);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.app-header{
    background: rgba(50, 50, 50, 0.9);
}

.main-container{
        margin-top: 72px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #FD7B33;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #209dd8;
    color: #fff;
}
/* ==============================
   HEADER BASE
============================== */
#header {
  transition: all 0.4s ease;
  z-index: 999;
  padding: 15px 0;
}
.header-transparent {
  background: transparent;
  position: absolute;
  top: 0; left: 0;
}
.header-dark {
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ==============================
   LOGO
============================== */
.logo img {
  max-height: 42px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* ==============================
   DESKTOP NAV
============================== */
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: #FD7B33;
}

/* Dropdown */
.nav-menu .menu-item-has-children {
  position: relative;
}
.nav-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
  position: relative; top: -2px;
  transition: transform 0.3s ease, color 0.3s ease;
  opacity: 0.8;
}
.nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(135deg);
  opacity: 1;
  color: #FD7B33;
}

/* Submenu */
.nav-menu .menu-item-has-children ul.sub-menu {
  position: absolute;
  /* top: 135%; */
  top: 150%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 15px;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.nav-menu .menu-item-has-children:hover > ul.sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu .menu-item-has-children ul.sub-menu a {
  color: #333;
  font-size: 14px;
  padding: 10px 15px;
  display: block;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.nav-menu .menu-item-has-children ul.sub-menu a:hover {
  background: #f5f5f5;
  color: #FD7B33;
  transform: translateX(4px);
}

/* Button */
.get-started-btn {
  border: 2px solid #FD7B33;
  color: #fff;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.get-started-btn:hover {
  background: #FD7B33;
  color: #fff;
}

/* ==============================
   MOBILE NAVIGATION
============================== */

/* Mobile Nav Header (logo + close icon inside overlay) */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.mobile-logo img {
  height: 40px;
  max-width: 120px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-nav-close:hover {
  color: #FD7B33;
}


.mobile-nav-toggle {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1100;
  border: none;
  background: transparent;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.mobile-nav-toggle.active i {
  transform: rotate(90deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20, 20, 20, 0.7);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #111;
  color: #fff;
  z-index: 1101;
  /* padding: 10px 70px 25px 40px; */
  padding: 10px 26px 25px 25px;
  overflow-y: auto;
  border-left: 2px solid #FD7B33;
  transition: right 0.4s ease;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  margin-bottom: 15px;
}
.mobile-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: #FD7B33;
}
.mobile-nav .menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  transition: transform 0.3s ease;
}
.mobile-nav .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}
.mobile-nav .menu-item-has-children ul.sub-menu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .menu-item-has-children.open ul.sub-menu {
  display: block;
}

/* Active */
.mobile-nav-active .mobile-nav {
  right: 0;
}
.mobile-nav-active .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}
.get-started-mobile-btn {
  border: 2px solid #FD7B33;
  color: #fff;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.get-started-mobile-btn:hover {
  background: #FD7B33;
  color: #fff;
}

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

#hero {
    width: 100%;
    height: 80vh;
    background: #323232;
}

#hero .container {
    padding-top: 72px;
}

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

.hero-heading {
    font-family: "Jost", sans-serif;
}

#hero h2 {
    color: #ef9836;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

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

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

#hero .btn-watch-video {
    font-size: 16px;
    display: inline-block;
    padding: 10px 0 8px 40px;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    position: relative;
}

#hero .btn-watch-video i {
    color: #fff;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 7px;
    transition: 0.3s;
}

#hero .btn-watch-video:hover i {
    color: #FD7B33;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }

    #hero .btn-watch-video {
        font-size: 16px;
        padding: 10px 0 8px 40px;
        margin-left: 20px;
    }

    #hero .btn-watch-video i {
        font-size: 32px;
        top: 7px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

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

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

.section-bg {
    background-color: #f3f5fa;
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #323232;
    font-family: "Jost", sans-serif;

}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #FD7B33;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/

.cliens {
    padding: 12px 0;
    text-align: center;
}

.cliens img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
}

.cliens img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .cliens img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

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

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #FD7B33;
    line-height: 1;
}

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

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #FD7B33;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #FD7B33;
}

.about .content .btn-learn-more:hover {
    background: #FD7B33;
    color: #fff;
    text-decoration: none;
}





/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #323232;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
}

.why-us .accordion-list span {
    color: #FD7B33;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #FD7B33;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #323232;
    font-family: "Poppins", sans-serif;
}

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

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

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #FD7B33;
}

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

.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #323232;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #FD7B33;
    font-size: 36px;
    transition: 0.3s;
}

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

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

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

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #FD7B33;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

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

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

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

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

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

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

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
}

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

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

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

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

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

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

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

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

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #323232;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

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

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

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

.team .member .social a+a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #323232;
}

.pricing h4 {
    font-size: 48px;
    color: #323232;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #FD7B33;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 0 0 20px 0;
    list-style: none;
    color: #999;
    text-align: center;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #FD7B33;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #FD7B33;
}

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

.pricing .featured {
    border-top-color: #FD7B33;
}

.pricing .featured .buy-btn {
    background: #FD7B33;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

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

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

.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: #323232;
    transition: 0.3s;
}

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

.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 {
    border-top: 3px solid #FD7B33;
    border-bottom: 3px solid #FD7B33;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #FD7B33;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    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: #323232;
}

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

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #FD7B33;
    color: #fff;
}

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

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #FD7B33;
    border-bottom: 3px solid #FD7B33;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.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;
    -webkit-animation: animate-loading 1s linear infinite;
    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;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #FD7B33;
}

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

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

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

.contact .php-email-form button[type="submit"]:hover {
    background: #209dd8;
}

@-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: #f3f5fa;
    min-height: 40px;
    /*   margin-top: 72px; */
    margin-top: 0px !important;
    padding: 45px 0 5px 0 !important;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #323232;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 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: #4668a2;
    content: "/";
}

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

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

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #FD7B33 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.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: 50px;
}

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

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

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog {
    padding: 40px 0 40px 0;
}

.blog .entry {
    padding: 20px;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    max-height: 400px;
    margin: -20px -20px 20px -20px;
    overflow: hidden;
}

.blog .entry .entry-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #FD7B33;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #c1c8d0;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li+li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 14px;
    padding-right: 4px;
}

.blog .entry .entry-meta a {
    color: #a4afba;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
    font-size: 15px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #FD7B33;
    color: #fff;
    padding: 6px 20px 7px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #FD7B33;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 36px;
    color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #8795a4;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #a4afba;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #FD7B33;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .entry-single .entry-title {
    font-size: 32px;
    line-height: 38px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
}

.blog .blog-author h4 {
    margin-left: 140px;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
}

.blog .blog-author .social-links {
    margin: 0 0 5px 140px;
}

.blog .blog-author .social-links a {
    color: #c1c8d0;
}

.blog .blog-author p {
    margin-left: 140px;
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    width: 50px;
}

.blog .blog-comments .comment h5 {
    margin-left: 65px;
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #FD7B33;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.blog .blog-comments .comment time {
    margin-left: 65px;
    display: block;
    font-size: 14px;
    color: #c1c8d0;
    margin-bottom: 5px;
}

.blog .blog-comments .comment p {
    margin-left: 65px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 0;
    padding: 20px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #ec7e41;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 0;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #ec7e41;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #FD7B33;
}

.blog .blog-pagination {
    color: #8795a4;
}

.blog .blog-pagination ul {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.blog .blog-pagination li {
    border: 1px solid #edeff1;
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li.active {
    background: white;
}

.blog .blog-pagination li a {
    color: #aaaaaa;
    padding: 7px 16px;
    display: inline-block;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #FD7B33;
    border: 1px solid #FD7B33;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .blog-pagination li.disabled {
    background: #fff;
    border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
    color: #f1f1f1;
    padding: 10px 16px;
    display: inline-block;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #556270;
    padding: 3px 10px;
    position: relative;
    border-radius: 4px;
}

.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #556270;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.blog .sidebar .search-form form button:hover {
    background: #6b7b8d;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #6b7b8d;
}

.blog .sidebar .categories ul a:hover {
    color: #FD7B33;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #c1c8d0;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #292f36;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #FD7B33;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #c1c8d0;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #dee2e6;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #FD7B33;
    background: #FD7B33;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}

.blog .col-lg-4.align-items-stretch .entry .entry-img {
    max-height: 400px;
    margin: -20px -20px 20px -20px;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.blog .col-lg-4.align-items-stretch .entry .entry-img img {
    width: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 14px;
    background: #323232;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #323232;
}

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

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

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

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #209dd8;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #323232;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #323232;
    position: relative;
    padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #FD7B33;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #FD7B33;
}

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

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

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

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

ul.post-categories {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

ul.post-categories li {
    display: inline-block;
}

.comment-respond .comment-reply-title {
    position: relative;
    color: #242424;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 18px;
}

.comment-respond .form-submit button {
    background: #231f20 none repeat scroll 0 0;
    border: medium none;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 50px;
    padding: 15px 45px;
    position: relative;
    text-transform: uppercase;
    width: auto;
    z-index: 1;
}

.comment-respond .comment-form-cookies-consent {
    display: flex;
}

.comment-respond .comment-form-cookies-consent label {
    margin-left: 7px;
}

.comments-area .comment-list {
    position: relative;
    border: 1px solid #eeeeee;
    margin: 0 0 40px;
    padding: 0;
}

.comments-area h2.comments-title {
    position: relative;
    color: #242424;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 18px;
}

.comments-area .comment-list .comment-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom: 1px solid #ebe8e8;
    padding: 20px 20px;
}

.comments-area .comment-list .comment {
    position: relative;
    font-size: 14px;
    min-height: 98px;
    padding: 0 0 0 75px;
}

.comments-area .comment-list .author-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 73px;
    overflow: hidden;
    margin-bottom: 20px;
}

.comments-area .comment-list .comment-box .author-thumb img {
    width: 60px;
    height: 60px;
    display: block;
    border: 1px solid #ddd;
}

.comments-area .comment-list {
    position: relative;
}

.comments-area .comment-list .comment-box:last-child {
    border-bottom: 0px;
}

.comments-area .comment-list .comment-info {
    color: #fd7b33;
    line-height: 24px;
    font-size: 13px;
}

.comments-area .comment-list .comment-box .text p {
    color: #898989;
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 5px;
}

.comments-area .comment-list .comment-box .post-info {
    position: relative;
}

.comments-area .comment-list .comment-box strong {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    line-height: 16px;
    text-transform: capitalize;
}

.comments-area .comment-list .comment-box .post-info li {
    position: relative;
    padding-right: 10px;
    line-height: 1em;
    margin-right: 10px;
    color: #aeaeae;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    border-right: 1px solid #bebebe;
}

.comments-area .comment-list .comment-box .post-info li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.comments-area .comment-list .comment-box .post-info li a {
    color: #fd7b33;
}

.comments-area .comment-list .comment.reply-comment {
    margin-left: 100px;
    margin-top: 30px;
}

.inner-page.blog .entry .entry-img {
    max-height: 200px;
}

.blog .entry .entry-img img {
    width: 100%;
    height: 100%;
}

.pagination {
    padding-left: 15px;
    text-align: center;
    width: 100%;
}

.page-numbers {
    padding: 3px 10px;
    background: #f67b34;
    color: #fff;
    font-weight: 600;
    margin-right: 10px;
}

.page-numbers.current {
    background: #000000;
}

.page-numbers:hover {
    color: #ffffff;
}


/* solution start */
.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 .25rem;
}

.solutions-subtitle {
    color: var(--muted);
    margin: 0 auto;
}

.solution-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto 24px;
}

.solution-tabs .tab {
    border: 2px solid rgba(0, 0, 0, .08);
    background: #efe8d0;
    color: #242424;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.solution-tabs .tab:hover,
.solution-tabs .tab:focus-visible {
    outline: none;
    border-color: #cd6640;
    background: rgba(205, 102, 64, .10);
    transform: translateY(-2px);
}

.solution-tabs .tab.active {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    border-color: transparent;
    outline: none;
    box-shadow: 0 8px 18px rgba(205, 102, 64, .28);
}

.solution-card-wrapper {
    position: relative;
}

.solution-card {
    display: none;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff7f0, #fde2cf);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 24px;
    animation: sol-fade .5s ease;
}

.solution-card.active {
    display: flex;
}

.solution-card .card-text {
    flex: 1;
    min-width: 280px;
}

.solution-card .card-text h3 {
    margin: 0 0 8px;
}

.solution-card .card-text ul {
    margin: 0 0 14px;
    padding-left: 20px;
    color: var(--dark);
}

.solution-card .card-text ul li {
    margin: 6px 0;
}

.solution-card .card-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.solution-card .card-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    border-color: transparent;
}

.btn-ghost {
    background: #fff;
    color: var(--dark);
}

@keyframes sol-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .solution-card {
        flex-direction: column;
        padding: 18px;
    }
}

.btn-primary {
    background: linear-gradient(90deg, #cd6640, #ef9836);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 10px
}

/* solution end */
/* key challenges start */
.challenges {
    text-align: center;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    /* margin: 10 110px; */
}

.challenge-card {
    background: linear-gradient(135deg, #fff7f0, #fde2cf);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.challenge-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #f9c58d;
}

.challenge-card i {
    font-size: 2rem;
    color: #ffa162;
    margin-bottom: 1rem;
}

.challenge-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-footer {
    text-align: center;
    margin-top: 0rem;
}

.about-footer p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.challenge-btn-learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FD7B33;
    color: #FD7B33;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* key challenges end*/

/* contact form start here */
/* ================================
   CONTACT FORM STYLING
================================== */
/* 
.contact-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form-field label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  padding: 10px 4px;
  font-size: 15px;
  color: #242424;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #aaa;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-bottom: 2px solid #FD7B33; 
  box-shadow: 0 2px 0 0 rgba(239, 152, 54, 0.25);
  outline: none;
}

.contact-form-field .err {
  color: #d9534f;
  font-size: 12px;
  height: 14px;
  margin-top: 4px;
}

.form-actions {
  text-align: center;
  margin-top: 10px;
}

.btn-grad {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef9836, #e76b00);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(239, 152, 54, 0.25);
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239, 152, 54, 0.35);
}

.btn-grad:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 152, 54, 0.25);
} */






.contact-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .08);
    padding: 18px 18px 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.field label {
    font-weight: 700;
    color: #222;
}




.field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #242424;
}

.field .err {
    color: #d9534f;
    font-size: 12px;
    height: 14px;
}

.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #242424;
}

.form-actions {
    text-align: center;
    padding-top: 6px;
}

.contact-form-btn-grad {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #cd6640, #ef9836);
    box-shadow: 0 10px 28px rgba(205, 102, 64, .20);
    transition: transform .15s ease, opacity .2s ease;
}

.contact-form-btn-grad:focus,
.contact-form-btn-grad:active {
  outline: none;
  box-shadow: 0 10px 28px rgba(205, 102, 64, 0.2);
}

/* contact form end here */


    /* api page css start */
 
 .api_page h1,
 h2,
 h3,
 h4 {
   font-family: 'Montserrat', sans-serif;
   margin: 0
 }
 
 .api_page {
   background: #ffffff;
   color: #242424;
   font-family: 'Inter', system-ui, sans-serif;
   -webkit-font-smoothing: antialiased;
 }
 
 .hero-api {
   padding: 56px 0 28px;
   text-align: center
 }
 
 .hero-api h1 {
   font-size: 40px;
   font-weight: 800;
   letter-spacing: .2px;
   margin-bottom: 10px
 }
 
 .hero-api p {
   max-width: 760px;
   margin: 0 auto;
   color: #6b6b6b;
   line-height: 1.75
 }
 
 .kicker-api {
   display: inline-block;
   background: linear-gradient(90deg, rgba(255, 102, 0, .12), rgba(239, 152, 54, .12));
   color: #b84e00;
   border: 1px solid rgba(255, 102, 0, .25);
   padding: 6px 10px;
   border-radius: 999px;
   font-weight: 700;
   font-size: 12px;
   letter-spacing: .6px;
   text-transform: uppercase;
   margin-bottom: 14px
 }
 
 .toolbar-api {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: center;
   margin: 28px auto 10px;
 }
 
 .search-api {
   display: flex;
   align-items: center;
   gap: 10px;
   background: #fff;
   border: 1px solid #e9ecef;
   border-radius: 12px;
   padding: 10px 14px;
   min-width: 280px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
 }
 
 .search-api input {
   padding: 0px !important;
   border: none;
   outline: none;
   font-size: 15px;
   flex: 1;
   color: #242424;
 }
 
 .search-icon {
   font-size: 16px;
   color: #999;
 }
 
 .chip-api {
   border: 2px solid rgba(0, 0, 0, .06);
   background: #fff;
   color: #242424;
   padding: 10px 14px;
   border-radius: 999px;
   font-weight: 700;
   font-size: 13px;
   cursor: pointer;
   transition: .2s;
   box-shadow: 0 2px 6px rgba(0, 0, 0, .06)
 }
 
 .chip-api:hover {
   transform: translateY(-2px);
   border-color:   #cd6640 !important;

 }
 
 /* .chip-api.active {
   background: linear-gradient(90deg, #cd6640, #ef9836);
   color: #fff;
   border-color: transparent;
   box-shadow: 0 8px 18px rgba(255, 102, 0, .25)
 } */
 
 .divider-api {
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .08), transparent);
   margin: 26px 0
 }
 
 .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 22px;
   margin: 26px 0 60px
 }
 
 .card {
   height: 100%;
   background: linear-gradient(180deg, #ffffff, #fff6ef);
   border: 1px solid rgba(0, 0, 0, .06);
   border-radius: 16px;
   padding: 22px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
   transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
   display: flex;
   flex-direction: column;
   gap: 14px
 }
 
 .card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 36px rgba(255, 102, 0, .18);
   background: linear-gradient(180deg, #fff7f0, #ffe8d6);
 }
 
 .card .icon {
   width: 54px;
   height: 54px;
   border-radius: 14px;
   background: linear-gradient(135deg, rgba(255, 102, 0, .12), rgba(239, 152, 54, .18));
   color: #cd6640;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   box-shadow: inset 0 0 0 1px rgba(255, 102, 0, .22)
 }
 
 .title {
   font-size: 18px;
   font-weight: 800
 }
 
 .desc {
   color: #6b6b6b;
   font-size: 14px;
   line-height: 1.6
 }
 
 .tags-api {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: auto
 }
 
 .tag-api {
   font-size: 11px;
   font-weight: 800;
   letter-spacing: .3px;
   text-transform: uppercase;
   background: #fff;
   border: 1px solid var(--border-color);
   border-radius: 999px;
   padding: 6px 10px;
   color: #7a7a7a
 }
 
 .actions {
   display: flex;
   gap: 10px;
   margin-top: 8px
 }
 
 .btn-primary {
   background: linear-gradient(90deg, #cd6640, #ef9836);
   color: #fff;
   text-decoration: none;
   border: none;
   cursor: pointer;
   font-weight: 800;
   font-size: 13px;
   padding: 10px 12px;
   border-radius: 10px
 }
 
 .aos {
   opacity: 0;
   transform: translateY(14px);
   transition: opacity .6s ease, transform .6s ease
 }
 
 .aos.in {
   opacity: 1;
   transform: none
 }
 
 .footer-up-content {
   background: #1e1e1e;
   padding: 50px 20px;
   text-align: center;
   color: #ddd;
 }
 .newsletter-btn {
  background: #cd6640;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-btn:hover {
  background: #b85333;
  transform: translateY(-1px);
}


/* new added tab based css */
/* === Filter Animation === */
.card {
  transition: all 0.35s ease;
  opacity: 1;
  transform: scale(1);
}

.card:not(.show) {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

/* === Search Input Enhancements === */
.search-api input::placeholder {
  color: #999;
  font-size: 14px;
}

.search-api input:focus {
  outline: none;
  box-shadow: none;
}

/* === Button Hover/Active Consistency === */
.chip-api {
  border: 2px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  color: #242424;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.chip-api:hover {
  transform: translateY(-2px);
  border-color: #cd6640 !important;
}
.chip-api:focus {
  outline: none;            
  box-shadow: none;       
}
.chip-api.active {
  background: linear-gradient(90deg, #cd6640, #ef9836);
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.25);
   box-shadow: 0 0 6px rgba(255, 126, 0, 0.4); /* subtle glow */
}

/* === Smooth Grid Transition === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin: 26px 0 60px;
  transition: all 0.3s ease;
}


 /* api page css end*/
/* ============ Responsive Page Content ============ */

/* Base styles */
.page-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}



/* Mobile view optimizations */
@media (max-width: 768px) {
  .main-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-content {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .page-content img {
    width: 100%;
    height: auto;
  }

  /* Optional: Center titles or headings on mobile */
  .page-content h1,
  .page-content h2,
  .page-content h3 {
    text-align: center;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .page-content {
    font-size: 0.95rem;
  }
}
