/**
* Template Name: Logis - v1.3.0
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
  }

  /* Colors */
  :root {
    --color-default: #111111;
    --color-primary-transparent: #ef68208a;
    --color-primary: #ef5854;
    --color-secondary: #fbf4e8;
  }

  /* Smooth scroll behavior */
  :root {
    scroll-behavior: smooth;
  }

  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
    font-family: var(--font-default);
    color: var(--color-default);
  }

  a {
    color: var(--color-primary);
    text-decoration: none;
  }

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }

  /*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/
  section {
    /* padding: 80px 0; */
    overflow: hidden;
  }

  .section-header {
    text-align: center;
    padding: 30px 0;
    position: relative;
  }

  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--color-default);
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.06);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 0;
  }

  .section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  @media (max-width: 640px) {
    .section-header h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .section-header span {
      font-size: 38px;
    }
  }

  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs .page-header {
    padding: 140px 0 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .breadcrumbs .page-header:before {
    content: "";
    background-color: rgba(14, 29, 52, 0.8);
    position: absolute;
    inset: 0;
  }

  .breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
  }

  .breadcrumbs .page-header p {
    color: #111111;
  }

  .breadcrumbs nav {
    background-color: #f3f6fc;
    padding: 20px 0;
  }

  .breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
  }

  .breadcrumbs nav ol a {
    color: var(--color-primary);
    transition: 0.3s;
  }

  .breadcrumbs nav ol a:hover {
    text-decoration: underline;
  }

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

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

  /*--------------------------------------------------------------
  # Scroll top button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }

  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }

  .scroll-top:hover {
    opacity: 0.8 !important;
  }

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

  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader, #mini-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }

  #preloader:before,
  #preloader:after,
  #mini-preloader:before,
  #mini-preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }

  #preloader:after,
  #mini-preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }

  @-webkit-keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }

    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }

  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }

    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }

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

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  .header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0 20px 0;
    height: 90px;
  }

    /* #header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100vw;
        background: #7F7F7F2B;
    } */
    /* #header::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 1px;
        width: 100vw;
        background: #7F7F7F2B;
    } */

  .header.sticked {
    background: #faf3e7;
    padding: 15px 0;
    box-shadow: 0px 2px 20px #faf3e71a;
  }

  .header .logo img {
    max-height: 30px;
    margin-right: 6px;
  }

  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-primary);
  }

  /*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
  @media (min-width: 991px) {
    .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: center;
      padding: 10px 0 10px 30px;
      font-family: var(--font-primary);
      font-size: 16px;
      font-weight: 400;
      color: #262524;
      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: rgb(71 61 61 / 60%);
    }

    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
      background: var(--color-primary);
      padding: 8px 20px;
      margin-left: 30px;
      border-radius: 4px;
      color: #fff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
      color: #fff;
      background: var(--color-primary);
    }

    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
      border-radius: 4px;
    }

    .navbar .dropdown ul li {
      min-width: 200px;
    }

    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 400;
      color: var(--color-secondary);
    }

    .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: var(--color-primary);
    }

    .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 (min-width: 991px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }

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

  @media (min-width: 991px) {

    .mobile-nav-show,
    .mobile-nav-hide {
      display: none;
    }
  }

  .login-params {
    margin-right: 16px;
  }

  /*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
  @media (max-width: 991px) {
    .navbar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }

    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 50px 0 10px 0;
      margin: 0;
      background: var(--color-primary);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      font-family: var(--font-primary);
      font-size: 16px;
      font-weight: 500;
      color: var(--color-default);
      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: rgb(71 61 61 / 60%);
    }

    .navbar .get-a-quote,
    .navbar .get-a-quote:focus {
      background: var(--color-primary);
      padding: 8px 20px;
      border-radius: 4px;
      margin: 15px;
      color: #fff;
    }

    .navbar .get-a-quote:hover,
    .navbar .get-a-quote:focus:hover {
      color: #fff;
      background: var(--color-primary-transparent);
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 20px;
      transition: all 0.5s ease-in-out;
      border: 1px solid #19335c;
    }

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

    .mobile-nav-show {
      color: var(--color-default);
      font-size: 28px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      z-index: 9999;
      margin-right: 10px;
    }

    .mobile-nav-hide {
      color: var(--color-default);
      font-size: 32px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      right: 20px;
      top: 20px;
      z-index: 9999;
    }

    .mobile-nav-active {
      overflow: hidden;
    }

    .mobile-nav-active .navbar {
      right: 0;
    }

    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(14, 29, 52, 0.8);
      z-index: 9996;
    }
  }

  @media (min-width : 991px) {
    .login-params {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-left: 50px;
    }
  }

  /*--------------------------------------------------------------
  # Featured Services Section
  --------------------------------------------------------------*/
  .featured-services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
  }

  .featured-services .service-item .icon {
    margin-right: 20px;
  }

  .featured-services .service-item .icon i {
    color: #001f8d;
    font-size: 48px;
    transition: 0.3s;
  }

  .featured-services .service-item:hover .icon {
    background: #fff;
  }

  .featured-services .service-item:hover .icon i {
    color: var(--color-primary);
  }

  .featured-services .service-item .title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--color-secondary);
    transition: 0.3s;
  }

  .featured-services .service-item .description {
    font-size: 15px;
    color: #132848;
    margin-bottom: 10px;
  }

  .featured-services .service-item .readmore {
    display: flex;
    align-items: center;
    color: var(--color-secondary);
    transition: 0.3s;
    font-weight: 700;
    font-size: 14px;
  }

  .featured-services .service-item .readmore i {
    margin-left: 8px;
  }

  .featured-services .service-item:hover .title,
  .featured-services .service-item:hover .readmore,
  .featured-services .service-item:hover .icon i {
    color: var(--color-primary);
  }

  /*--------------------------------------------------------------
  # About Us Section
  --------------------------------------------------------------*/
  .about .content h3 {
    font-weight: 700;
    font-size: 32px;
    font-family: var(--font-secondary);
    color: #001f8d;
  }

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

  .about .content ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
  }

  .about .content ul i {
    flex-shrink: 0;
    font-size: 48px;
    color: var(--color-primary);
    margin-right: 20px;
  }

  .about .content ul h5 {
    font-size: 18px;
    font-weight: 700;
    color: #19335c;
  }

  .about .content ul p {
    font-size: 15px;
  }

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

  .about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--color-primary) 50%, rgba(13, 66, 255, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }

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

  .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: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;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }

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

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

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

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

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

  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .card {
    border: 1px solid rgba(14, 29, 52, 0.15);
    background: #fff;
    position: relative;
    border-radius: 0;
    height: 100%;
  }

  .services .card .card-img {
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 0;
  }

  .services .card .card-img img {
    transition: 0.3s ease-in-out;
  }

  .services .card h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    padding: 10px 30px;
    text-transform: uppercase;
  }

  .services .card a {
    color: #001973;
    transition: 0.3;
  }

  .services .card a:hover {
    color: var(--color-primary);
  }

  .services .card p {
    padding: 0 30px;
    margin-bottom: 30px;
    color: var(--color-secondary);
    font-size: 15px;
  }

  .services .card:hover .card-img img {
    transform: scale(1.1);
  }

  .service:hover {
    background-color: #eee;
  }

  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action {
    background: linear-gradient(rgba(14, 29, 52, 0.6), rgba(14, 29, 52, 0.8)), url("../img/cta-bg.jpg") center center;
    background-size: cover;
    padding: 100px 0;
  }

  @media (min-width: 1365px) {
    .call-to-action {
      background-attachment: fixed;
    }
  }

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

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

  .call-to-action .cta-btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
  }

  .call-to-action .cta-btn:hover {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
  }

  /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
  .features {
    border-top: 2px dashed #7F7F7F2B;;
  }

  .features .features-item+.features-item {
    margin-top: 100px;
  }

  @media (max-width: 640px) {
    .features .features-item+.features-item {
      margin-top: 40px;
    }
  }

  .features .features-item h3 {
    font-weight: 600;
    font-size: 26px;
    color: #001973;
  }

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

  .features .features-item ul li {
    padding-bottom: 10px;
  }

  .features .features-item ul li:last-child {
    padding-bottom: 0;
  }

  .features .features-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
  }

  .features .features-item p:last-child {
    margin-bottom: 0;
  }

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

  .pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--color-default);
  }

  .pricing h4 {
    font-size: 48px;
    color: var(--color-default);
    font-weight: 400;
    font-family: var(--font-primary);
    margin-bottom: 25px;
  }

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

  .pricing h4 span {
    color: rgba(108, 117, 125, 0.8);
    font-size: 18px;
  }

  .pricing ul {
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
  }

  .pricing ul li {
    padding: 2px 0;
    display: flex;
    align-items: center;
  }

  .pricing ul i {
    color: var(--color-primary);
    padding-right: 3px;
  }

  .pricing ul .na {
    color: rgba(108, 117, 125, 0.5);
  }

  .pricing ul .na i {
    color: rgba(108, 117, 125, 0.5);
  }

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

  .pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 4px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: 0.3s;
  }


  .pricing .featured {
    border-top-color: var(--color-primary);
  }

  .pricing .featured .buy-btn {
    background: var(--color-primary);
    color: #fff;
  }

  @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 Section
  --------------------------------------------------------------*/
  /* .faq {
    padding-top: 80px;
  }

  .faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
  }

  .faq .accordion-collapse {
    border: 0;
  }

  .faq .accordion-button {
    padding: 15px 30px 20px 60px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--color-default);
    text-align: left;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
  }

  .faq .accordion-button:focus {
    box-shadow: none;
  }

  .faq .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    border-bottom: 0;
    box-shadow: none;
  }

  .faq .question-icon {
    position: absolute;
    top: 14px;
    left: 25px;
    font-size: 20px;
    color: var(--color-primary);
  }

  .faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .faq .accordion-body {
    padding: 0 30px 25px 60px;
    border: 0;
    background: rgba(14, 29, 52, 0.03);
    border-radius: 5px;
  } */

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

  .testimonial {
    text-align: center;
    padding: 20px;
}

.testimonial-text {
    font-size: 36px;
    font-style: italic;
    color: #f8f9fa;
    max-width: 80%;
    margin: auto;
}

.testimonial-author {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.testimonial-role {
    font-size: 1rem;
    color: #d1d1d1;
}

  .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: rgba(255, 255, 255, 0.6);
    margin: 0 0 15px 0;
  }

  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
  }

  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }

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

  .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;
    transform: scale(-1, -1);
  }

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

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

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

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
  }

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

  /*--------------------------------------------------------------
  # Stats Counter Section
  --------------------------------------------------------------*/
  .stats-counter .stats-item {
    padding: 30px;
    width: 100%;
  }

  .stats-counter .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .stats-counter .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .stats-counter .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
  }

  /*--------------------------------------------------------------
  # Our Team Section
  --------------------------------------------------------------*/
  .team .member {
    text-align: center;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid rgba(14, 29, 52, 0.15);
  }

  .team .member img {
    margin: -1px -1px 30px -1px;
  }

  .team .member .member-content {
    padding: 0 20px 30px 20px;
  }

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

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

  .team .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #6c757d;
  }

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

  .team .member .social a {
    color: rgba(14, 29, 52, 0.5);
    transition: 0.3s;
  }

  .team .member .social a:hover {
    color: var(--color-primary);
  }

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

  /*--------------------------------------------------------------
  # Horizontal Pricing Section
  --------------------------------------------------------------*/
  .horizontal-pricing {
    background: var(--color-secondary);
  }
  .horizontal-pricing .pricing-item {
    /* padding-bottom: 30px; */
    height: 100%;
    position: relative;
  }

  .horizontal-pricing h3 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 24px;
    color: var(--color-primary);
  }

  .horizontal-pricing h4 {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 400;
    font-family: var(--font-primary);
  }

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

  .horizontal-pricing h4 span {
    color: rgba(108, 117, 125, 0.8);
    font-size: 16px;
    font-weight: 400;
  }

  .horizontal-pricing ul {
    padding: 12px 0;
    list-style: none;
    color: #6c757d;
    text-align: left;
    line-height: 20px;
  }

  .horizontal-pricing ul li {
    padding-top: 15px;
    font-size: 12px !important;
    display: flex;
    align-items: center;
  }

  .horizontal-pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
  }

  .horizontal-pricing ul .na {
    color: rgba(108, 117, 125, 0.5);
  }

  .horizontal-pricing ul .na i {
    color: rgba(108, 117, 125, 0.5);
  }

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

  .horizontal-pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    font-family: var(--font-primary);
  }

  .horizontal-pricing .featured {
    background: var(--color-primary);
  }

  .horizontal-pricing .featured h3,
  .horizontal-pricing .featured h4,
  .horizontal-pricing .featured h4 span,
  .horizontal-pricing .featured ul,
  .horizontal-pricing .featured ul .na,
  .horizontal-pricing .featured ul i,
  .horizontal-pricing .featured ul .na i {
    color: #fff;
  }

  .horizontal-pricing .featured .buy-btn {
    background: var(--color-primary);
    color: #fff;
    border-color: #fff;
  }

  .horizontal-pricing .featured .buy-btn:hover {
    background: #fff;
    color: var(--color-primary);
  }

  /*--------------------------------------------------------------
  # Get a Quote Section
  --------------------------------------------------------------*/
  .get-a-quote .quote-bg {
    min-height: 500px;
    background-size: cover;
    background-position: center;
  }

  .get-a-quote .php-email-form {
    background: #f3f6fc;
    padding: 40px;
    height: 100%;
  }

  @media (max-width: 575px) {
    .get-a-quote .php-email-form {
      padding: 20px;
    }
  }

  .get-a-quote .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .get-a-quote .php-email-form h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0 0 0;
  }

  .get-a-quote .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .get-a-quote .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .get-a-quote .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .get-a-quote .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }

  .get-a-quote .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }

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

  .get-a-quote .php-email-form input:focus,
  .get-a-quote .php-email-form textarea:focus {
    border-color: var(--color-primary);
  }

  .get-a-quote .php-email-form input {
    padding: 12px 15px;
  }

  .get-a-quote .php-email-form textarea {
    padding: 12px 15px;
  }

  .get-a-quote .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }

  .get-a-quote .php-email-form button[type=submit]:hover {
    background: rgba(13, 66, 255, 0.8);
  }

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

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

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

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

  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info-item+.info-item {
    margin-top: 40px;
  }

  .contact .info-item i {
    font-size: 20px;
    background: var(--color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }

  .contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary);
  }

  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(14, 29, 52, 0.8);
  }

  .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: #df1529;
    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: #059652;
    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 #059652;
    border-top-color: #fff;
    -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: 4px;
    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: var(--color-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }

  .contact .php-email-form button[type=submit]:hover {
    background: rgba(13, 66, 255, 0.8);
  }

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

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

  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .services-list {
    padding: 10px 30px;
    border: 1px solid #d3dff3;
    margin-bottom: 20px;
  }

  .service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid #c2cbdf;
    margin: 20px 0;
    color: var(--color-secondary);
    transition: 0.3s;
  }

  .service-details .services-list a.active {
    font-weight: 700;
    border-color: var(--color-primary);
  }

  .service-details .services-list a:hover {
    border-color: var(--color-primary);
  }

  .service-details .services-img {
    margin-bottom: 20px;
  }

  .service-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
  }

  .service-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
  }

  .service-details p {
    font-size: 15px;
  }

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

  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }

  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--color-primary);
  }

  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    width: 100%;
    min-height: 50vh;
    background-color: var(--color-secondary);
    position: relative;
    padding: 90px 0 0px 0;
    color: #111111;
  }

  .sub-hero {
    width: 100%;
    padding-top: 90px;
    background: linear-gradient(180deg, rgba(251,244,232,1) 0%, rgba(253,251,251,1) 50%);
    color: var(--color-default);
  }

  .hero h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 48px;
    font-weight: 700;
  }

  @media (max-width: 575px) {
    .hero h2 {
      font-size: 30px;
    }
  }

  .hero p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
  }

  .hero form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }

  .hero form .form-control {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    margin-right: 10px;
    border: none !important;
    background: none !important;
  }

  .hero form .form-control:hover,
  .hero form .form-control:focus {
    outline: none;
    box-shadow: none;
  }

  /* .hero form .btn-primary {
    padding: 15px 30px;
  } */

    .btn-primary {
        color: white;
        background-color: #111111;
        border: none;
        border-radius: 8px;
        transition : all .2s cubic-bezier(.68,.01,.58,.75)!important;
        font-family: "Inter", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-transform: None;
    }

    .btn-primary:focus {
        background-color: #111111;
        color: #fff;
        border: none;
    }

    .btn-warning {
        color: white;
        background-color: orange;
        border: none;
        border-radius: 8px;
        transition : all .2s cubic-bezier(.68,.01,.58,.75)!important;
        font-family: "Inter", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-transform: None;
    }

    .btn-info {
        color: white;
        border: none;
        border-radius: 8px;
        transition : all .2s cubic-bezier(.68,.01,.58,.75)!important;
        font-family: "Inter", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-transform: None;
    }

    .btn-light {
        color: #111111;
        background-color: white;
        border: none;
        border-radius: 8px;
        transition : all .2s cubic-bezier(.68,.01,.58,.75)!important;
        font-family: "Inter", Sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-transform: None;
    }

 .btn-primary:hover {
    background-color: #ef5854;
    color: white;
    border: none;
  }

  .btn-light:hover {
    background-color: #ef5854;
    color: white;
    border: none;
  }

  .btn-group-sm>.btn, .btn-sm {
        padding: 5px 10px;
        font-size: 12px !important;
        line-height: 1.5;
        border-radius: 3px !important;
    }

  .hero .stats-item {
    padding: 30px;
    width: 100%;
  }

  .hero .stats-item span {
    font-size: 32px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
  }

  .hero .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  .hero .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
  }

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  .footer {
    font-size: 14px;
    background-color: var(--color-secondary);
    padding: 50px 0;
    color: white;
  }

  .footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
  }

  .footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
  }

  .footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary);
  }

  .footer .footer-info p {
    font-size: 14px;
    font-family: var(--font-primary);
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
  }

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

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

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

  .footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(13, 66, 255, 0.8);
    font-size: 12px;
    line-height: 0;
  }

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

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

  .footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }

  .footer .footer-links ul a:hover {
    color: #fff;
  }

  .footer .footer-contact p {
    line-height: 26px;
  }

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

  .footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
  }

  .footer .credits a {
    color: #fff;
  }

  /*--------------------------------------------------------------CUSTOM CSS----------------------------------------------------------*/


  /*--------------------------------------------------------------
  # Scroll Top
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    cursor: pointer;
}

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

.scroll-top i {
    color: #fff;
    font-size: 24px;
    line-height: 0;
}

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

.header-flag-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.rounded-img-20 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.rounded-img-30 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }

.rounded-img-40 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header-profile-avatar {
  cursor: pointer;
}

@media (min-width: 991px) and (max-width: 1280px) {
    .header nav ul {
        gap: 20px !important;
    }
}

@media (max-width: 991px) {

    .header li {
        width: 100%;
    }

    .header .logo img, .header .logo h1 {
        position: fixed;
        left: 10px;
    }

    .mobile-nav-toggle {
    position: fixed;
    right: 10px;
    }

    .header-ul-nav {
        padding-top: 60px;
    }

    .header-li-nav {
    padding: 16px !important;
    transition: all 0.3s;
    }

    .header-li-nav:hover {
        background-color: var(--color-secondary);
    }

    .btn-login {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.container-banner {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  min-height: 400px !important;
}

.banner > .container-banner{
    background-image: url('../images/logos/hero-dot-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .bs-searchbox .form-control {
    height: 38px !important;
}
.banner .dropdown-header {
    font-weight: bold;
    font-size: 14px;
}
.banner .btn.dropdown-toggle.btn-default {
    height: 50px;
    border-radius: 4px;
}
.banner .dropdown-menu.inner {
    max-height: 200px !important;
    overflow-y: auto; /* Add scrolling if content overflows */
}
.banner .dropdown-menu.open {
    width: 100%;
}
.banner #mini-preloader {
    position: relative;
    height: 25vh;
    background: transparent;
}

.banner .star-container {
    position: relative;
    display: inline-block;
    font-size: 20px; /* Adjust the size as needed */
    color: #dad7d7;
}
.banner .star-filled {
    color: goldenrod;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.banner .input-group-btn {
    width: 100%;
}
.banner .mb-1-phone {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner .bs-caret {
    display: none;
}

.banner #count-establishment {
    text-align: center;
}

.banner .flowed::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 33%;
    bottom: 0;
    background: linear-gradient(transparent, #fff);
    z-index: 9;
}

/*.container {*/
/*    border-right: 2px solid #7F7F7F2B;*/
/*    border-left: 2px solid #7F7F7F2B;*/
/*}*/

/* section {
    border-bottom: 2px solid #7F7F7F2B;
} */

.banner .clear-input {
    padding: 0 8px;
    text-decoration: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.banner .data {
    min-height: 170px;
    background: #eeeeee2b;
    border-radius: 16px;
}

@media(max-width: 991px) {
    .banner .col-responsive {
        z-index: 1;
        height: 50px !important;
        width: 100%;
        margin: auto;
    }
    .banner .btn-responsive {
        height: 100% !important;
        width: 100% !important;
    }
    .banner .mb-1-stars {
        display: none;
    }

    .banner .establ-container {
        width: 40% !important;
    }
}

@media (max-width: 768px) {
    .banner .establ-container {
        font-size: 10px !important;
        width: 50%;
    }
    .banner .mb-1-phone {
        display: none !important;
    }
    .banner .mb-name {
        width: 25% !important;
    }
    .banner .title-search {
        font-size: 24px;
    }

    .banner .mb-1.mb-name, .banner .mb-1.mb-1-email {
        font-size: 12px;
    }

    .banner .line {
        gap: 4px !important;
    }

    .banner .container {
        max-width: 100%;
    }

    .socialite-github {
        margin-bottom: 24px;
    }
}

/*--------------------------------------------------------------
# Icon Colors
--------------------------------------------------------------*/

.fa-envelope {
    color: var(--color-primary);
}

.fa-facebook {
    color: #4267B2;
}

.fa-instagram {
    color: #8a3ab9;
}

.fa-linkedin {
    color: #0077B5;
}

.fa-tiktok {
    color: #000;
}

.fa-youtube {
    color: #c4302b;
}

.fa-twitter {
    color: #1DA1F2;
}

.fa-spotify {
    color: #1DB954;
}

.fa-telegram {
    color: #0088cc;
}

.fa-snapchat {
    color: #8b8800;
}

.fa-discord {
    color: #5865f2;
}

.fa-behance {
    color: #1769ff;
}

.fa-slack {
    color: #5100ff;
}

.fa-pinterest {
    color: #bd081c;
}

.fa-reddit {
    color: #ff4500;
}

.fa-google-custom {
    background-image: url('../images/logos/google.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/*--------------------------------------------------------------
# Text Colors & backgrounds
--------------------------------------------------------------*/

.text-secondary {
    color: #74716c !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-gray {
    background-color: #74716c !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-default {
    color: var(--color-default) !important;
}

.text-white {
    color: #fff !important;
}

.text-gray {
    color: #777 !important;
}

.bg-dark {
    background-color: var(--color-secondary) !important;
}

/*--------------------------------------------------------------
# Auth Layout
--------------------------------------------------------------*/

.auth-container {
    min-height: 100vh;
}

.auth-container .left-image, .auth-container .right-content {
    min-height: 100vh;
}

.auth-container .left-image {
    background: var(--color-secondary);
    border-right: 2px solid #e5dfd5;
}

.auth-container .left-content, .auth-container .right-content {
    top: 0;
    left: 0;
}


.auth-container .right-form {
    overflow-y: scroll;
}

@media (min-width: 992px) {
    .auth-container {
        position: absolute;
        overflow: hidden;
    }

    .auth-container .right-form {
        position: relative;
    }

}

@media (max-width: 991px) {
    .auth-container {
        position: relative;
    }

    .auth-container .left-image {
        display: none;
    }

    .auth-container .right-content {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Auth ormsF
--------------------------------------------------------------*/

.auth-container .form-control {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    margin-right: 10px;
    border: none !important;
    background: none !important;
}

.auth-container .form-control:hover,
.auth-container .form-control:focus {
    outline: none;
    box-shadow: none;
}

.auth-container .form-control {
    background: #e8e8e8 !important;
    height: 50px !important;
    border: none !important;
    outline: none !important;
    transition: .5s !important;
}

.auth-container .form-control:focus {
    box-shadow: none !important;
    border: none !important;
    background: #e8e8e8 !important;
}

.auth-container .or-social {
    top: -12px;
    right: 50%;
    transform: translate(50%, 0);
}

@media (max-width: 991px) {
    .auth-container .socialite {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .auth-container .form-content {
        padding: 0 !important;
    }
}


/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/

.register-form .bs-searchbox .form-control {
    height: 38px !important;
}
.egister-form .dropdown-header {
    font-weight: bold;
    font-size: 14px;
}
.register-form .btn.dropdown-toggle.btn-default {
    height: 50px;
    border-radius: 4px;
}
.register-form .dropdown-menu.inner {
    max-height: 200px !important;
    overflow-y: auto; /* Add scrolling if content overflows */
}
.register-form .dropdown-menu.open {
    width: 100%;
}

.register-form .bs-caret {
    display: none;
}


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

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .recent-blog-posts .post-box .post-img {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
  }

  .recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
  }

  .recent-blog-posts .post-box .post-date {
    font-size: 16px;
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
    display: block;
    margin-bottom: 10px;
  }

  .recent-blog-posts .post-box .post-title {
    font-size: 24px;
    color: #012970;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    transition: 0.3s;
  }

  .recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
  }

  .recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
  }

  .recent-blog-posts .post-box:hover .post-title {
    color: #4154f1;
  }

  .recent-blog-posts .post-box:hover .post-img img {
    transform: rotate(6deg) scale(1.2);
  }

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

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

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

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

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

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

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

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

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

  .blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
  }

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

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

  .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: #4154f1;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
  }

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

  .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::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #012970;
    margin-top: 20px;
    margin-bottom: 20px;
  }

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

  .blog .entry .entry-footer i {
    color: #0d64fd;
    display: inline;
  }

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

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

  .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 .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

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

  .blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #012970;
  }

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

  .blog .blog-author .social-links a {
    color: rgba(1, 41, 112, 0.5);
    margin-right: 5px;
  }

  .blog .blog-author p {
    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 {
    margin-right: 14px;
  }

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

  .blog .blog-comments .comment h5 {
    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: #4154f1;
  }

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

  .blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }

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

  .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: 4px;
    padding: 10px 10px;
    font-size: 14px;
  }

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

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

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

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

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

  .blog .blog-pagination {
    color: #024ed5;
  }

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

  .blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
  }

  .blog .blog-pagination li a {
    color: #012970;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog .blog-pagination li.active,
  .blog .blog-pagination li:hover {
    background: #4154f1;
  }

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

  .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: #012970;
    position: relative;
  }

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

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

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

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

  .blog .sidebar .search-form form button i {
    line-height: 0;
  }

  .blog .sidebar .search-form form button:hover {
    background: #5465f2;
  }

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

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

  .blog .sidebar .categories ul a {
    color: #012970;
    transition: 0.3s;
  }

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

  .blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    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: #012970;
    transition: 0.3s;
  }

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

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

  .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: #0257ee;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #d7e6ff;
    display: inline-block;
    transition: 0.3s;
  }

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

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


  /*--------------------------------------------------------------
  # Coming Soon
  --------------------------------------------------------------*/

  .coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.coming-soon-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.coming-soon-input {
    max-width: 300px;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
    color: white;
}

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

@media (max-width: 768px) {
    .countdown-container {
        gap: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
        min-width: 60px;
        padding: 0.75rem 1rem;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }
}


/*--------------------------------------------------------------
  # Not found 404
--------------------------------------------------------------*/

.error-container {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 2rem;
}

.error-404 {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.error-planet {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #FFB6C1, #FF69B4);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    animation: rotate 10s linear infinite;
}

.error-planet::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.error-planet::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 20px;
    right: 20px;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.error-text {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 768px) {
    .error-404 {
        font-size: 5rem;
    }

    .error-planet {
        width: 80px;
        height: 80px;
    }

    .error-planet::before {
        width: 90px;
        height: 20px;
    }

    .error-planet::after {
        width: 25px;
        height: 25px;
        top: 15px;
        right: 15px;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-text {
        font-size: 1rem;
    }
}

/* Add some meteors in the background */
.error-container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    animation: meteor 2s linear infinite;
    top: 20%;
    left: -10%;
    transform: rotate(-45deg);
}

.error-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    animation: meteor 3s linear infinite;
    top: 40%;
    left: 60%;
    transform: rotate(-45deg);
}

@keyframes meteor {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateX(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(-45deg) translateX(-60vh);
    }
}


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

.toggle-monthly-yearly, .toggle-export-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Add spacing between elements */
    padding: 10px 0;
}

/* Style the titles */
.toggle-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    vertical-align: top;
    align-self: baseline;
    padding-top: 2px !important; /* Align with the switch */
}

/* Toggle switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2.5px;
    bottom: 2.5px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary); /* Background color when toggled */
}

input:checked + .slider:before {
    transform: translateX(18px); /* Move the toggle circle */
}


/*--------------------------------------------------------------
  # Pay as you go
--------------------------------------------------------------*/

.form-calculator {
    position: relative; /* Establish stacking context */
    z-index: 10; /* Higher than other elements */
    width: 65%;
    display: flex;
    flex-direction: column;
    color: var(--color-default);
    border-right: 1px solid #7F7F7F2B;
    padding: 24px;
    overflow: visible !important;
}

.form-calculator .section-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 24px auto;
    align-items: center;
}

.form-calculator .section-input input {
    border-radius: 5px;
    width: 70%;
}

.form-calculator .total-price {
    font-size: 50px;
    font-weight: bold;
}

.form-calculator .section-submi {
    width: 100%;
    text-align: center;
    margin: 24px;
}

.form-calculator .section-bar {
    position: relative; /* Positioning context for slide-button */
    width: 84%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100px;
}

.form-calculator .progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--color-secondary); /* Light gray background */
    border-radius: 5px;
    z-index: 1;
    overflow: hidden; /* Ensure child elements don't overflow */
}

.form-calculator .back-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Start with 0% width */
    height: 100%;
    border-radius: 5px;
    z-index: 2;
    transition: width 0.001s ease;
    background: var(--color-primary);
}

.form-calculator .slide-button-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999; /* Ensures it's on top */
    transition: left 0.001s ease;
}

.form-calculator .slide-button {
    height: 40px;
    width: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
}

.form-calculator .section-total {
    text-align: center;
    margin: 24px;
}

.form-calculator .slide-button .unitary-price {
    position: absolute;
    top: 100%;
    background: white;
    padding: 8px;
    border-radius: 10px;
    transform: translate(0, 25%);
    width: 150px;
    font-size: 12px;
    text-align: center;
}

.form-calculator .slide-button .unitary-price::after {
    content: "";
    height: 10px;
    width: 10px;
    position: absolute;
    border-style: solid;
    border-width: 5px;
    border-color: transparent transparent white transparent;
    bottom: 100%;
    right: 50%;
    transform: translate(40%, 0%);
}

.form-calculator .slide-button .fa-chevron-right,
.form-calculator .fa-chevron-left {
    color: var(--color-primary);
    font-size: 18px !important;
}

/* TARIFS CALCULATOR */
.tarifs-calculator {
    width: 35%;
    display: flex;
    flex-direction: column;
    color:var(--color-default);
    padding: 24px;
    /* background: rgba(253,251,251,1); */
}

.tarifs-calculator .tarifs {
    width: 100%;
}

.tarifs-calculator .quotas-title {
    font-size: 16px;
}

.tarifs-calculator .quotas {
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background 0.3s ease; /* Smooth background transition */
}

.tarifs-calculator .quotas:hover {
    background: #f1e9de; /* Light gray background on hover */
}

.highlighted-quota {
    background: #ef682024;
    padding: 2px 4px;
    border-radius: 4px;
}

@media(max-width: 1200px) and (min-width: 992px) {
    .tarifs-calculator .unit-prices-quota {
        font-size: 12px;
    }
}

/* Responsive */
@media(max-width: 992px) {
    .form-calculator,
    .tarifs-calculator {
        width: 100%;
    }
    .quota-calculator {
        flex-direction: column;
    }

    .faq .section-content {
        width: 90% !important;
    }
}

@media(max-width: 768px) {
    .card-container {
        width: 100%;
    }

    .section-input h4 {
        text-align: center;
        font-size: 14px;
    }

    .form-calculator #contact-input {
        font-size: 40px;
        max-height: 50px;
        width: 100%;
    }

    .our-minimum {
        font-size: 12px;
    }

    .form-calculator .slide-button .unitary-price {
        width: 90px;
        font-size: 8px;
    }

    .form-calculator .section-input {
        margin: 0 auto 24px;
    }

    .form-calculator .total-price {
        font-size: 36px;
    }

    .section-submit {
        margin: 24px auto 0;
    }
}

/* Buy Button */
.form-calculator .buy-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    width: 56%;
}


.form-calculator #contact-input {
    font-size: 48px;
    max-height: 60px;
    width: 56%;
    color: var(--color-default);
    text-align: center;
    font-weight: bold;
    outline: none !important;
    border: none;
}

.section-submit {
    width: 100%;
    text-align: center;
    margin: 24px auto;
}

/*--------------------------------
    Drawer
--------------------------------*/

.drawer {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.drawer-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.drawer-item:hover {
    background-color: #f8f9fa;
    color: #333;
    transform: translateX(5px);
}

.drawer-item.active {
    background-color: #e9ecef;
    color: #0d6efd;
    font-weight: 500;
}

.drawer-item i {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.drawer-footer {
    border-top: 1px solid #eee;
}

.account-status .badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Animation for active state */
.drawer-item.active {
    position: relative;
}

.drawer-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #0d6efd;
    border-radius: 0 4px 4px 0;
}

/*--------------------------------
    Profile
--------------------------------*/

.profile-tabs-container {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
}

.profile-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.profile-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.profile-tabs .nav-item {
    margin-bottom: -2px;
}

.profile-tabs .nav-link {
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #666;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.profile-tabs .nav-link:hover {
    color: #333;
    background: #f8f9fa;
}

.profile-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    background: transparent;
}

.profile-tabs .nav-link i {
    font-size: 1.1rem;
}

.profile-tabs-content {
    padding: 2rem 0;
}

.tab-inner-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Animation for tab transitions */
.tab-pane.fade {
    transition: all 0.3s ease-in-out;
}

.tab-pane.fade.show {
    opacity: 1;
    transform: translateY(0);
}

.tab-pane.fade {
    opacity: 0;
    transform: translateY(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-tabs-container {
        padding: 1rem;
    }

    .profile-tabs {
        gap: 0.5rem;
    }

    .profile-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .profile-tabs .nav-link i {
        font-size: 1rem;
    }

    .profile-tabs-content {
        padding: 1rem 0;
    }

    .tab-inner-content {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .profile-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

.accordion-button {
    background-color: white;
    color: #111111;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-icon {
    font-size: 2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 10px;
}

.accordion-button.collapsed .accordion-icon {
    content: "+";
}

.accordion-button.collapsed {
    color: black;
    background-color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) .accordion-icon {
    content: "-";
    background-color: #ff5c8d;
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: gray;
    box-shadow: none;
}

.accordion-body {
    background-color: white;
    padding: 0 20px 20px;
    border-radius: 10px;
    margin-top: 10px;
}


