:root {
  --primary-color: #fcbf58; 
  --secondary-color: #052134; 
  --red: #e40b0b;
 }


 /* Fonts */
 @font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed/AsapCondensed-Bold.ttf');
  font-weight: 700;
 }
 @font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed/AsapCondensed-SemiBold.ttf');
  font-weight: 600;
 }
 @font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed/AsapCondensed-Medium.ttf');
  font-weight: 500;
 }
 @font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed/AsapCondensed-Regular.ttf');
  font-weight: 400;
 }
 @font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed/AsapCondensed-Light.ttf');
  font-weight: 300;
 }



::-webkit-scrollbar {
  width: 5px;
}
body ::-webkit-scrollbar-track {
  background: #e4e4e4;
}
body.darkmode ::-webkit-scrollbar-track {
  background: rgb(86 86 86);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}




 /* Fonts */
/*--------------------------------------------------------------# General  --------------------------------------------------------------*/
.my-6 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
.mb-6 {
  margin-bottom: 100px !important;
}
.mt-6 {
  margin-top: 100px !important;
}
body {
    font-family: 'AsapCondensed';
    font-weight: 400;
    color: var(--secondary-color);
  }

  .logo {
    max-height: 4.5rem;
    padding: 0.3rem 0;
  }
  
  a {
    color: #4ab2b2;
    text-decoration: none;
  }
  
  a:hover {
    color: #104e4e;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'AsapCondensed';
    font-weight: 700;
    color: var(--secondary-color);
  }
  
.btn-primary {
  width: fit-content;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: unset;
  min-height: 50px;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  font-size: 15px;
  letter-spacing: .7px;
  transition: all .2s linear;
  text-transform: uppercase;
  font-family: 'AsapCondensed';
  font-weight: 500;
}

.btn-primary:hover, 
.btn-primary:active,
.btn-primary:focus {
  background: #c36415;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #c36415;
  border-color: #c36415;
}


.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #c36415;
  border-color: #c36415;
  box-shadow: 0 0 0 0.2rem  #c3641540 !important;
}


.img-fluid {
  width: 100%;
}


.form-control {
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid var(--primary-color);
}


.title-primary h1,
.title-primary h2,
.title-primary h3,
.title-primary h4,
.title-primary h5,
.title-primary h6 {
  color: var(--primary-color);
}

.bg_logo {
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 10rem;
}

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #009cea;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #14b1ff;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
  }
  
  #header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #576971;
    text-decoration: none;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
  }
  
  /*--------------------------------------------------------------
  # Header Social Links
  --------------------------------------------------------------*/
  .header-social-links {
    margin: 0 0 0 30px;
  }
  
  @media (max-width: 768px) {
    .header-social-links {
      margin: 0 15px 0 0;
    }
  }
  
  .header-social-links a {
    color: #7b909a;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 10px;
  }
  
  .header-social-links a:hover {
    color: #009cea;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }.navbar ul
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
    list-style-type: none;
  }
  
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 5px 30px;
    font-size: 15px;
    font-family: "AsapCondensed", sans-serif;
    color: #7b909a;
    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: #009cea;
  }
  
  .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;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #003651;
  }
  
  .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: #009cea;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #364146;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 41, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #364146;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #009cea;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #009cea;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    background-image: url("../img/hero-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    margin-top: 70px;
    padding: 60px 0;
  }
  
  #hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #364146;
  }
  
  #hero h2 {
    color: #576971;
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    transition: 0.5s;
    color: #fff;
    background: #009cea;
  }
  
  #hero .btn-get-started:hover {
    background: #008bd1;
  }
  
  #hero .hero-img {
    text-align: center;
  }
  
  #hero .hero-img img {
    width: 70%;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 992px) {
    #hero h1 {
      font-size: 32px;
      line-height: 40px;
    }
  
    #hero h2 {
      font-size: 20px;
    }
  }
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f7f8f9;
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-family: "AsapCondensed", sans-serif;
    color: #627680;
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about {
    padding: 0;
    margin-top: 40px;
  }
  
  .about .container {
    background-color: #f7f8f9;
    padding: 60px 50px;
  }
  
  @media (max-width: 992px) {
    .about .container {
      padding: 30px;
    }
  }
  
  .about .content h3 {
    font-weight: 400;
    font-size: 32px;
    color: #364146;
    font-family: "AsapCondensed", sans-serif;
  }
  
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  
  .about .content ul li {
    padding-bottom: 10px;
  }
  
  .about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #28a745;
  }
  
  .about .content p:last-child {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features {
    padding-bottom: 40px;
  }
  
  .features .nav-tabs {
    border: 0;
  }
  
  .features .nav-link {
    border: 0;
    padding: 20px;
    transition: 0.3s;
    color: #364146;
    transition: 0.3s ease-in-out;
    border-radius: 0;
    border-left: 4px solid #fafbfb;
  }
  
  .features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    color: #576971;
  }
  
  .features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .features .nav-link:hover {
    background: #fafbfb;
  }
  
  .features .nav-link:hover h4 {
    color: #364146;
  }
  
  .features .nav-link.active {
    border-radius: 0;
    border: 0;
    border-left: 4px solid #009cea;
    background: #fafbfb;
  }
  
  .features .nav-link.active h4 {
    color: #009cea;
  }
  
  .features .tab-pane.active {
    animation: slide-down 0.5s ease-out;
  }
  
  .features .tab-content {
    text-align: right;
  }
  
  @keyframes slide-down {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    text-align: center;
    border-bottom: 3px solid #fff;
  }
  
  .services .icon-box:hover {
    transform: translateY(-5px);
  }
  
  .services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color: #111;
  }
  
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  
  .services .icon-box-pink .icon i {
    color: #ff689b;
  }
  
  .services .icon-box-pink:hover {
    border-color: #ff689b;
  }
  
  .services .icon-box-cyan .icon i {
    color: #3fcdc7;
  }
  
  .services .icon-box-cyan:hover {
    border-color: #3fcdc7;
  }
  
  .services .icon-box-green .icon i {
    color: #41cf2e;
  }
  
  .services .icon-box-green:hover {
    border-color: #41cf2e;
  }
  
  .services .icon-box-blue .icon i {
    color: #2282ff;
  }
  
  .services .icon-box-blue:hover {
    border-color: #2282ff;
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    font-family: "AsapCondensed", sans-serif;
  }
  
  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #009cea;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #364146;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: #364146;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #009cea;
    margin: 0 2px;
    font-size: 24px;
    display: inline-block;
    transition: 0.3s;
    background: #eaf8ff;
    border-radius: 50px;
    line-height: 0;
    padding: 6px;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
    background: #009cea;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #009cea;
  }
  
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #009cea;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(54, 65, 70, 0.08);
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Cta
  --------------------------------------------------------------*/
  .cta {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../img/cta-bg.jpg") center center;
    background-size: cover;
    padding: 80px 0;
  }
  
  .cta h3 {
    color: #364146;
    font-size: 28px;
    font-weight: 700;
  }
  
  .cta p {
    color: #576971;
  }
  
  .cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #009cea;
  }
  
  .cta .cta-btn:hover {
    background: #008bd1;
  }
  
  @media (min-width: 1024px) {
    .cta {
      background-attachment: fixed;
    }
  }
  
  @media (min-width: 769px) {
    .cta .cta-btn-container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
  }



  .cards_section_2 h2 {
    font-size: 60px;
  }


  .section_3_description .section_3_description_text {
    display: grid;
    grid-template: auto / 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }

  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: #d8dee1;
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #f4f6f7;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #009cea;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #009cea;
  }
  
  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team {
    background: url("../img/team-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
  }
  
  .team::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9;
  }
  
  .team .container {
    position: relative;
    z-index: 10;
  }
  
  .team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  
  .team .member .pic {
    overflow: hidden;
  }
  
  .team .member .member-info {
    position: absolute;
    top: 85%;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 0;
    color: #364146;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    max-height: 95px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  
  .team .member:hover .member-info {
    max-height: 300px;
  }
  
  .team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #364146;
    position: relative;
    padding-bottom: 10px;
  }
  
  .team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #b5c1c6;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  .team .member .social {
    margin-top: 15px;
  }
  
  .team .member .social a {
    transition: color 0.3s;
    color: #627680;
  }
  
  .team .member .social a:hover {
    color: #009cea;
  }
  
  .team .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }
  
  @media (max-width: 992px) {
    .team .member {
      margin-bottom: 110px;
    }
  }
  
  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients .clients-wrap {
    border-top: 1px solid #eceff0;
    border-left: 1px solid #eceff0;
  }
  
  .clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eceff0;
    border-bottom: 1px solid #eceff0;
    overflow: hidden;
    background: #fff;
    height: 120px;
    padding: 40px;
  }
  
  .clients .client-logo img {
    max-width: 50%;
    filter: grayscale(100);
  }
  
  .clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
  }
  
  .clients img {
    transition: all 0.4s ease-in-out;
  }
  
  /*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e9ecee;
  }
  
  .pricing h3 {
    font-weight: 400;
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 400;
    color: #777777;
  }
  
  .pricing h4 {
    font-size: 36px;
    color: #009cea;
    font-weight: 600;
    font-family: "AsapCondensed", sans-serif;
    margin-bottom: 20px;
  }
  
  .pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }
  
  .pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
  }
  
  .pricing ul li {
    padding-bottom: 16px;
  }
  
  .pricing ul i {
    color: #009cea;
    font-size: 18px;
    padding-right: 4px;
  }
  
  .pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
  }
  
  .pricing .btn-wrap {
    padding: 20px 15px;
    text-align: center;
  }
  
  .pricing .btn-buy {
    background: #009cea;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .pricing .featured {
    background: #009cea;
    border-color: #009cea;
  }
  
  .pricing .featured h3,
  .pricing .featured h4,
  .pricing .featured h4 span,
  .pricing .featured ul,
  .pricing .featured ul .na {
    color: #fff;
  }
  
  .pricing .featured .btn-buy {
    background: #fff;
    color: #009cea;
  }
  
  .pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #009cea;
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
  .faq {
    padding: 60px 0;
  }
  
  .faq .faq-list {
    padding: 0;
    list-style: none;
  }
  
  .faq .faq-list li {
    border-bottom: 1px solid #e3e7e9;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .faq .faq-list .question {
    display: block;
    position: relative;
    font-family: #009cea;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #007ab7;
    transition: 0.3s;
  }
  
  .faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
  }
  
  .faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
  }
  
  .faq .faq-list .icon-show {
    display: none;
  }
  
  .faq .faq-list .collapsed {
    color: black;
  }
  
  .faq .faq-list .collapsed:hover {
    color: #009cea;
  }
  
  .faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
  }
  
  .faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info {
    padding: 30px;
    background: #fff;
    width: 100%;
    border: 2px solid #e9ecee;
    border-radius: 4px;
  }
  
  .contact .info i {
    font-size: 20px;
    color: #009cea;
    float: left;
    width: 44px;
    height: 44px;
    background: #f2f4f5;
    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: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #364146;
  }
  
  .contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #627680;
  }
  
  .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: #009cea;
    color: #fff;
  }
  
  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #009cea;
    color: #fff;
  }
  
  .contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: #fff;
    border: 2px solid #e9ecee;
    border-radius: 4px;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: #009cea;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: #1eb4ff;
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/

  
  .breadcrumbs h2 {
    font-size: 24px;
    font-weight: 600;
  }
  
  .breadcrumbs-navigation {
    background: transparent;
    padding: 0;
  }
  .breadcrumbs-navigation .fa.fa-chevron-left {
    font-size: 10px;
  }
  .breadcrumbs-navigation li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #626262;
  }
  .breadcrumbs-navigation li a {
    color: var(--primary-color);
  }
  .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  

  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #f7f8f9;
    padding: 0 0 30px 0;
    color: #364146;
    font-size: 14px;
  }
  
  #footer .footer-top {
    background: #fff;
    padding: 60px 0 30px 0;
    border-top: 2px solid #e9ecee;
    border-bottom: 2px solid #e9ecee;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #576971;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #e9ecee;
    color: #8a9ca5;
    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: #009cea;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #364146;
    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: #009cea;
    font-size: 18px;
    line-height: 1;
    margin-left: -5px;
  }
  
  #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: #576971;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #009cea;
  }
  
  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e3e7e9;
  }
  
  #footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #009cea;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #007ab7;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
    color: #364146;
  }

  
  /*-----sizing------*/
  .container {
    max-width: 1320px;
  }
  /*---------Header-------*/

  #header {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

nav#main-navbar {
  width: 100%;
}

.navbar a, .navbar a:focus {
  color: var(--secondary-color);
  font-weight: 500;
  transition: all .2s linear;
  font-size: 17px;
  padding: 0 0.8rem !important;
}

header .nav-link:hover {
  color: var(--primary-color) !important;
}



nav#main-navbar .second-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
}

nav#main-navbar .second-menu li:first-child a {
    font-weight: 800;
}
nav#main-navbar .second-menu a {
  font-weight: 400;
  font-size: 16px;
}

nav#main-navbar .second-menu a:hover {
  color: var(--primary-color);
}

.contact-section .module-fickle a i,
nav#main-navbar .second-menu a i {
  font-size: 2rem;
  color: var(--primary-color);
}

nav#main-navbar .second-menu a i {
  font-size: 16px;
  margin-right: 0.5rem;
}


.content_hero_grid {
  background: #0005;
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hp_hero > div > .row {
  min-height: calc(100vh - 80px);
  background-size: cover;
  background-position: center;
  display: flex;
}

.content_hero_grid {
  max-width: 90vw;
  margin: auto;
  display: grid;
  grid-template: auto / 1fr 650px;
  gap: 20px;
}

.text_hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	border-left: 2px solid var(--primary-color);
	padding-left: 15px;
	border-radius: 10px;
}
.btn-primary {
  width: fit-content;
}

.title_form_hero {
	border-bottom: 1px solid #0003;
	margin-bottom: 10px;
}
.title_form_hero h2 {
	color: #222;
	font-size: 17px;
	text-transform: uppercase;
}

#rent-form > div.form-container {
	display: grid;
	grid-template: auto / 1fr 1fr 1fr;
	column-gap: 15px;
  
}

#rent-form div.acceptance_container {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 1rem;
}

#rent-form div.acceptance_container .form-group {
  margin: 0;
  padding-right: 2rem;
  position: relative;
}

#rent-form div.acceptance_container label {
  margin: 0;
}

/* #rent-form label {
  color: var(--primary-color);
} */



.help-block {
  background-color: var(--primary-color);
  font-size: 12px;
  color: var(--secondary-color);
  padding: 0 0.5rem;
}


/* .form-group label.control-label {
  position: absolute;
  top: 8px;
  left: 0;
  color: #43454e;
  pointer-events: none;
  transform-origin: left center;
  transition: transform 250ms;
} */

/* .form-group .form-control:focus + .form-group label.control-label,
.form-group .form-control:not(:placeholder-shown) + .form-group label.control-label {
  transform: translateY(-100%) scale(0.75);
} */

/* input:placeholder-shown + button {
  display: none;
} */


.form_header_code {
  display: flex;
  padding: 15px;
  background-color: var(--white);
  margin-top: 5rem;
}

#rent-form-container {
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.item-acceptance {
  color: #fff;
}

.form-group.agreement-radio.item-acceptance {
  padding-left: 10px;
}
.col-12 {
  padding-left: 25px;
}


.module-text p {
  margin: 0;
}

/*----------Section 2-----*/
.module.module-text.section_2_card{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

 .fickle_card .module-fickle {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    justify-content: flex-end;
}

.fickle_card path {
  fill: var(--primary-color);
}

.section_2_card_design::before {
  content: '';
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -4px;
  border-radius: 10px;
  right: -4px;
  z-index: -1;
}

/*-------------Banner---------*/

.banner-section {
  position: relative;
  padding: 13rem 0;
  background-position: center;
}

.banner-section h1,
.banner-section h2,
.banner-section h3 {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1rem;
}

.banner-section:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgb(5,33,52);
  background: linear-gradient(49deg, rgba(5,33,52,1) 35%, rgba(5,33,52,0.10127801120448177) 100%);
}

.banner-section > div.container-fluid {
  max-width: 1600px;
}


.row.builder-row.banner_section {
  background-image: url(/uploads/imagini_site/dube_header.jpg);
  min-height: 50vh;
  background-position-y: center;
  object-fit: cover;
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
}

/* Products style */
.grid-products {
  justify-content: center;
}

.grid-products > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0.5rem;
}

.grid-products .category-item-inner {
  padding: 15px;
  position: relative;
}

.grid-products .category-item-inner:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1010;
  pointer-events: none;
  border: 1px solid var(--primary-color);
  transform: scale(1.05);
  opacity: 0;
  transition: ease-in-out all 0.5s;
}

.grid-products .category-item-inner:hover:before {
  transform: scale(1);
  opacity: 1;
}

.grid-products .categ-image-wrapper {
	position: relative;
	padding-top: 56%;
	overflow: hidden;
}

.grid-products .categ-image-wrapper img {
	width: 100%;
	position: absolute;
	top: 0;
	object-position: center;
	object-fit: contain;
	height: 100%;
  left: 0;
  transition: ease-in-out all 0.5s;
}

.grid-products .category-item-inner:hover .categ-image-wrapper img {
  transform: scale(1.1);
}

.grid-products .btn-primary {
  background-color: var(--primary-color);
  padding: 0;
  min-height: inherit;
  border: 1px solid var(--primary-color);;
}

.grid-products .btn-primary a {
  color: var(--secondary-color);
  padding: 0.5rem 2rem;
}

.grid-products .btn-primary:hover {
  background-color: var(--secondary-color);
}

.grid-products .btn-primary:hover a {
  color: var(--primary-color);
}

.grid-products .btn-primary:hover a svg path {
  fill: var(--primary-color);
}

.grid-products .btn-primary a svg path {
  fill: var(--secondary-color);
}

#rent-form-container .form-group {
  margin-bottom: 5px;
  position: relative;
}
.acceptance_container {
  grid-column: 1/3;
}

/* .single-product-row .single-product-image-col .sticky-inner {  
  position: relative;
}

.single-product-row .single-product-image-col .product-gallery {
  position: sticky;
  top: 0;
} */

.product-summary-desc > section {
  padding: 0;
}

.product-details .card {
  border-color: var(--primary-color);
  border-radius: 0;
}

.product-details .card .card-header {
  background-color: transparent;
  border-color: var(--primary-color);
}


.module.module-text.title_car {
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-lg-12.banner {
  display: flex;
  align-items: center;
  color: white;
  text-transform: uppercase;
  max-width: 90vw;
  margin: auto;
}

.row.builder-row.banner_section::before {
  content: '';
  position: absolute;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
}

.banner .module-text {
  max-width: 850px;
}

.row.builder-row.section_2 {
  margin-top: 49px;
  margin-bottom: 100px;
}

/*-------------btn-card-------*/
svg#nc_icon {
	width: 30px;
	height: 20px;
	margin-bottom: 3px;
}

.btn_card a {
  color: white;
}

.categ-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  flex-direction: column;
}

.categ_title > h2 > a {
  color: #111;
}
.categ_title a:hover {
  color: var(--primary-color);
}

.title_car {
  margin-bottom: 60px;
}

.categ-title-text  {
  font-size: 22px;
  color: #111;
}
.categ-title-text:hover  {
  font-size: 22px;
  color: var(--primary-color);
}

.fickle_info h2 {
	grid-row: 1/2;
	grid-column: 2/4;
  margin: 0;
}

.fickle_info svg {
  width: 30px;
  height: 30px;
  align-self: center;
}

.fickle_info svg path {
  fill: var(--primary-color);
}

.fickle_info {
	background-color: var(--primary-color);
	padding: 15px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	margin-bottom: 17px;
  gap: 5px;
  display: grid;
  grid-template: auto 1fr / 2fr 1fr;
}

.fickle_info .fickle-content {
  grid-column-start: 1;
  grid-column-end: 3;
}

.fickle_info .fickle-item.fickle-text-content {
  max-height: 10rem;
  overflow: auto;
}

.fickle_info .fickle-item.fickle-text-content p {
  grid-column: 1/4;
}

.fickle_info .fickle-icon {
  position: relative;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 2rem;
  top: -2rem;
  right: -2rem;
  display: flex;
}

.fickle_info .fickle-item h3 {
  margin-left: 5rem;
}

/* Single product page */
.product-gallery {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--primary-color);
}

.product-gallery img {
	height: 450px;
	object-fit: contain;
}

.dotari_duba {
  display: grid;
  grid-template: auto / repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
  background: var(--primary-color);
  padding: 15px;
}
.dotare_duba {
	background: #fff;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

.dotare_duba:hover {
  transform: scale(1.05);
}

.dotare_duba svg {
  fill: var(--primary-color);
}

.dotare_duba .static_info h2 {
  font-size: 14px;
  text-align: center;
}

.dotare_duba .dynoamic_info {
  font-size: 14px;
  text-align: center;
  line-height: 1rem;
}

.static_info {
	display: flex;
	flex-direction: column;
	align-items: center;
  gap: 5px;
}
.static_info img {
	height: 60px;
}
.static_info h2 {
  font-size: 16px;
}
.show_more_info {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.request_offer {
	gap: 15px;
}


/* Popup request offer single page product */
.request_offer_fixed_form {
	position: fixed;
	width: calc(100% - 30px);
	background: #fff;
	bottom: 0;
  top: 0;
	max-width: 700px;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 10px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all .4s linear;
  z-index: 9999;
  height: fit-content;
  transform: translateY(500%);
  padding: 1.5rem;
}
.opened_request_offer .request_offer_fixed_form {
  transform: translateY(0);
}
.request_offer_fixed_form #rent-form-container {
	background: transparent;
}
.opened_request_offer {
	position: relative;
	transition: all .2s linear;
}
.opened_request_offer::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0003;
	z-index: 9999;
	backdrop-filter: blur(2px);
}
.close_offer_popup {
	width: fit-content;
	display: flex;
	margin-left: auto;
	border: unset;
	background: var(--primary-color);
	width: 30px;
	height: 30px;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 10px;
	margin-top: 3px;
	margin-right: 3px;
	user-select: none;
}

/*-----------DESPRE NOI-----------*/
.about-hero-section {
	min-height: 194px;
	display: flex;
	align-items: center;
	margin-top: 100px;
	background: #0005;
	margin-bottom: 100px;
}
.col-lg-6.hero-section {
	margin-left: 5vw;
}
.col-lg-6.hero-section h1 {
  color: #fff;
}
.about-section-1-img img {
	border-radius: 0px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*---------------Contact --------*/
.contact_module {
  margin-top: 150px;
}

.fickle-contact-item h4 a{
  color: var(--primary-color);
  font-size: 18px;
}
.fickle-contact-item h4 a i{
  color: var(--primary-color);
}

span.checkbox-text {
  color: #111;
}
.module_code_contact iframe {
	border-radius: 0px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*----------footer-----------*/
footer a {
  color: var(--primary-color);
}
footer a:hover {
  color: white;
}

body footer .logo-footer img {
  height: 7rem;
  width: auto !important;
}

footer .module-social ul {
  display: flex;
  gap: 10px;
}

footer .module-social ul li a {
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--primary-color);
}

footer .module-social ul li a i {
  font-size: 20px;
  color: #000;
}

footer .module-social ul li a:hover {
  background-color: var(--secondary-color);
}

footer .module-social ul li a:hover i {
  color: var(--primary-color);
}



/* GDPR PAGES */


#cookie_notice {
    background-color: var(--secondary-color);
}

#cookie_notice .cookie_notice_container p a {
    color: var(--primary-color);
}

#cookie_notice .cookie_notice_container .btn {
    background-color: var(--primary-color);
    border-radius: 0;
    border: none;
    color: var(--secondary-color);
}

.gdpr_pages {
	margin-top: 150px !important;
}

/* Pagination */
.pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pagination .first.disabled span,
.pagination .prev.disabled,
.pagination .next.disabled,
.pagination .active.disabled,
.pagination .last.disabled,
.pagination a {
  color: #00000099;
  font-family: var(--light);
  font-size: 16px;
  background-color: var(--primary-color);
  height: 35px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  margin: 0 3px;
  color: white;
  transition: var(--transition);
}
.pagination .active.disabled {
  background-color: #fff;
  border: 1px solid var(--primary-color);
}
.pagination .active.disabled span {
  color: var(--primary-color);
}
/* Stilizarea legăturilor "Anterior" și "Următor" */
.pagination a.prev,
.pagination a.next {
  font-size: 14px;
  color: var(--orange);
}
.prev.disabled span, .last.disabled span, .next.disabled span {
color: white;
font-size: 16px;
font-family: var(--light);
}

/* Animarea tranziției între paginile diferite */
.pagination a:hover {
  background-color: #000000;
}


/* ANIMATIONS IN */

@-webkit-keyframes fadeInUpSD {
  0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px)
  }

  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none
  }
}

@keyframes fadeInUpSD {
  0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
      transform: translateY(100px)
  }

  100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none
  }
}

.animate-in {
  opacity: 0;
}

.already-visible,
.come-in {
  animation: fadeInUpSD 1.5s ease forwards;
  opacity: 1
}

.row > div:nth-child(odd) .already-visible,
.row > div:nth-child(odd) .come-in 
{
  animation-duration: 1s
}



/* PAGE HEADER */

.header-section-page {
  padding: 1.5rem 0;
  background: rgb(252,191,88);
  background: linear-gradient(22deg, rgba(252,191,88,1) 22%, rgba(255,173,33,1) 100%);
  margin-top: 4.5rem;
  border-bottom: 8px solid #fcd9a1;
}

.header-section-page h1 {
  display: flex;
  color: transparent;
  justify-content: center;
  min-height: 58px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.header-section-page h1.loaded {
  opacity: 1;
}

.header-section-page h1 > span {
  color: var(--white);
  background-color: var(--secondary-color);
  display: block;
  padding: 0.3rem 0.6rem;
  margin-right: 0.5rem;
  text-transform: uppercase;
  min-width: 3rem;
  text-align: center;
}

.header-section-page h1 > span.empty {
  background-color: transparent;
  min-width: inherit;
}


/* SERVICES LIST */

.services-list .module-fickle {
  display: grid;
  grid-template: auto / 0fr 1fr;
  margin: 1.5rem 0;
}

.services-list .module-fickle .fickle-item * {
  color: var(--white);
}

.services-list .module-fickle .fickle-icon {
  background-color: var(--primary-color);
  padding: 1.5rem;
  grid-row-start: 1;
  grid-row-end: 3;
  max-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-list .module-fickle .fickle-icon i {
  color: var(--secondary-color);
}



/* CAR PRICES */
.car-prices {
  padding: 0;
  margin-bottom: 1rem;
}

.car-prices .builder-row > div {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}

.car-prices .builder-row > div .module-fickle {
  border: 1px solid var(--secondary-color);
}

.car-prices .builder-row > div .module-fickle .fickle-item.fickle-title {
  background-color: var(--secondary-color);
}

.car-prices .builder-row > div .module-fickle .fickle-item.fickle-title * {
  color: var(--white);
  font-size: 18px;
  padding: 0.3rem;
  text-align: center;
}

.car-prices .builder-row > div .module-fickle .fickle-item.fickle-subtitle * {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 20px;
  text-align: center;
  width: 100%;
  display: block;
}

.car-prices .builder-row > div .module-fickle .fickle-text-content * {
  font-size: 13px;
  text-align: center;
  margin: 0;
}