/* font */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");
/* variable */
:root {
  --base-color: #009be8;
  --secondary-color: #00d3bf;
  --dark-gray: #252840;
  --black: #05060a;
  --medium-gray: #7d8087;
  --very-light-gray: #f0f2f8;
  --primary-font: "Nunito", sans-serif;
}
/* reset */
body {
  line-height: 29px;
}
/* header */
header .navbar-brand img {
  max-height: 32px;
}
.navbar .navbar-nav .nav-link {
  font-size: 17px;
}
header .btn.btn-rounded.btn-large {
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 500;
}
.sticky .header-transparent .header-button .btn {
  color: var(--white);
  border-color: var(--base-color);
}
.sticky .header-transparent .header-button .btn:hover {
  border-color: var(--base-color);
  color: var(--white);
  background: var(--base-color);
}
header.sticky.sticky-active [data-header-hover="light"] .widget-text i {
  color: var(--white);
}
/* accordion style 02 */
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
  background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.navbar
  .navbar-nav
  .dropdown.dropdown-with-icon-style02
  .dropdown-menu
  li:hover
  a,
.navbar
  .navbar-nav
  .dropdown.dropdown-with-icon-style02
  .dropdown-menu
  li.active
  a {
  opacity: 0.5;
}
/* btn */
[class*="btn-transparent"],
[class*=" btn-transparent"] {
  font-weight: 500;
}
.btn {
  text-transform: none;
  font-family: var(--primary-font);
}
.btn.btn-switch-text.btn-extra-large > span {
  padding: 19px 40px;
}
.btn-gradient-purple-pink {
  background-image: linear-gradient(to right, #0b58cb, #e94037, #0b58cb);
  background-size: 200% auto;
  color: var(--white);
}
/* bg gradient color */
.bg-gradient-dark-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(24, 25, 28, 0.5),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(24, 25, 28, 0.5),
    rgba(255, 255, 255, 0)
  );
}
.bg-gradient-very-light-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(240, 244, 253, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(240, 244, 253, 1),
    rgba(255, 255, 255, 0)
  );
}
.bg-gradient-flamingo-red-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(243, 69, 59, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(243, 69, 59, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
.bg-gradient-base-color-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(15, 89, 201, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(15, 89, 201, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
.bg-gradient-light-gray-transparent {
  background: -webkit-linear-gradient(
    right,
    rgba(222, 230, 244, 1),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to right,
    rgba(222, 230, 244, 1),
    rgba(255, 255, 255, 0)
  );
}
.bg-midnight-blue {
  background-color: #1e2033;
}
/* text */
.text-flamingo {
  color: #e55b53;
}
.text-gradient-orange-sky-blue {
  background-image: linear-gradient(
    to right,
    #5e70f3,
    #6170f1,
    #8074dc,
    #b87bb6,
    #ec8192
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 25px;
}
/* portfolio filter */
.portfolio-filter li {
  padding: 0 18px;
  line-height: 24px;
}
/* blog */
.categories-btn {
  font-size: 11px;
}
/* page title */
.page-title-extra-large h1 {
  font-size: 4rem;
  line-height: 4rem;
}
.page-title-extra-large h2 {
  font-size: 17px;
  line-height: 28px;
  margin: 0 auto;
}
.process-step-style-05 .progress-step-separator {
  bottom: -10px;
  height: 100%;
  z-index: -1;
}
/* height */
.h-72px {
  height: 72px !important;
}
#map {
  height: 650px;
  border-radius: 6px 0 0 6px;
}
/* margin top */
.mt-minus-50px {
  margin-top: -50px;
}
/* line-height */
.lh-200 {
  line-height: 12.5rem;
}
/* bottom */
.bottom-auto {
  bottom: auto;
}
/* footer */
footer .footer-logo img {
  max-height: 35px;
}
footer ul li {
  margin-bottom: 0;
}
.footer-light a:hover,
.footer-navbar li a:hover {
  color: var(--dark-gray);
}
@media (max-width: 1299px) {
  .navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
  header .btn.btn-rounded.btn-large {
    padding: 10px 15px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
  }
  header .btn.btn-rounded.btn-large {
    padding: 10px 10px;
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    width: calc(100% + 30px) !important;
    margin-left: -15px;
    padding: 10px 45px;
    margin-bottom: 0;
    margin-right: -15px;
  }
  .navbar
    .navbar-nav
    .dropdown.dropdown-with-icon-style02
    .dropdown-menu
    li:last-child
    a {
    padding-bottom: 17px;
  }
  [data-mobile-nav-style="full-screen-menu"]
    .navbar-full-screen-menu-inner
    .navbar-nav
    .dropdown.dropdown-with-icon-style02
    .dropdown-menu
    li
    a
    i {
    font-size: 19px;
  }
  header .btn.btn-rounded.btn-large {
    color: var(--dark-gray);
    border-color: var(--extra-medium-gray);
    padding: 10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .portfolio-filter li {
    padding: 0;
  }
}

/* ===================================
   CUSTOM CSS
====================================== */

.gradient-text {
  background: linear-gradient(90deg, #009be8 0%, #12d8fa 50%, #00d3bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bg-gradient-container {
  background: linear-gradient(90deg, #009be8 0%, #12d8fa 50%, #00d3bf 100%);
}

.flexbee-gradient-border {
  background: linear-gradient(90deg, #009be8 0%, #12d8fa 50%, #00d3bf 100%);
  border-radius: 50em;
  border: 4px solid transparent;
}

.flexbee-gradient-border-true {
  background: linear-gradient(90deg, #009be8 0%, #12d8fa 50%, #00d3bf 100%);
  border-radius: 16px;
  padding: 4px;
  display: inline-block;
  height: 100%;
}
.flexbee-gradient-content-inside {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.bg--gray,
.bg-dark-gray:focus {
  background: linear-gradient(90deg, #009be8 0%, #00d3bf 100%);
}

//CUSTOM
.bg-gradient,
.bg-gradient:focus {
  background: linear-gradient(90deg, #009be8 0%, #00d3bf 100%);
}

.glass-box {
  background-color: #565656b3;
  backdrop-filter: blur(5px);

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;

  color: #fff;
  text-align: center;
  padding: 13px;
}

.nav-tabs .tab-item-5-per-row {
  flex: 0 0 20%;
  max-width: 20%;
  text-align: center;
}

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

@media (max-width: 575.98px) {
  .nav-tabs .tab-item-5-per-row {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .nav-tabs .tab-item-5-per-row {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-tabs .tab-item-5-per-row {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .nav-tabs .tab-item-5-per-row {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.nav-tabs .nav-link {
  padding: 10px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

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

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #495057;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.active {
  color: var(--crafto-primary, #007bff);
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: 3px solid var(--crafto-primary, #007bff);
  font-weight: 500;
}

.tab-content {
  padding: 1rem;
}

.nav-tabs.d-flex.flex-wrap .nav-item {
  flex-grow: 1;
  text-align: center;
}

.nav-tabs.d-flex.flex-wrap .nav-link {
  width: 100%;
}


.section-title {
  text-align: center;
  color: #343a40;
  margin-bottom: 50px;
  font-size: 2.5em;
  font-weight: 700;
  width: 100%;
  max-width: 1200px;
}

.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 1450px;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  flex: 0 0 calc(20% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
  border: 2px solid #009be8;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.popular .popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 8px 10px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 10px;
  z-index: 10;
}

.card-header {
  margin-bottom: 25px;
}

.card-plan-name {
  font-size: 1.8em;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 10px;
}
.card-plan-name.basic {
  color: #6a5acd;
}
.card-plan-name.advanced {
  color: #ff8c00;
}
.card-plan-name.pro {
  color: #28a745;
}
.card-plan-name.enterprise {
  color: #007bff;
}
.card-plan-name.customized {
  color: #17a2b8;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  flex-grow: 1;
}

.card-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #495057;
  line-height: 1.4;
}

.feature-icon {
  font-size: 1.1em;
  margin-right: 8px;
  min-width: 20px;
  text-align: center;
}

.feature-icon.checkmark {
  color: #28a745;
}

.feature-icon.crossed {
  color: #dc3545;
}

.feature-icon.custom-checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #6c757d;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
  vertical-align: middle;
  margin-left: 2px;
}

.btn-action {
  display: inline-block;
  padding: 12px 25px;
  background-color: #6a5acd;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  border: none;
}

.btn-action:hover {
  background-color: #534baf;
  transform: translateY(-2px);
}

.btn-get-quote {
  background-color: #fff;
  color: #6a5acd;
  border: 2px solid #6a5acd;
}
.btn-get-quote:hover {
  background-color: #6a5acd;
  color: #fff;
}



@media (min-width: 1400px) {
  .pricing-cards-container {
    max-width: 1420px;
  }
  .pricing-card {
    flex: 0 0 calc(20% - 12px);
  }
}

@media (max-width: 1399px) {
  .pricing-cards-container {
    max-width: 1180px;
    gap: 15px;
  }
  .pricing-card {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 1080px) {
  .pricing-cards-container {
    max-width: 880px;
    gap: 10px;
  }
  .pricing-card {
    flex: 0 0 calc(33.33% - 8px);
  }

  
}

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

  .pricing-cards-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
  }
  .pricing-card {
    flex: 0 0 calc(50% - 10px);
    padding: 15px;
  }
  .card-plan-name {
    font-size: 1.4em;
  }

  .feature-icon {
    font-size: 1em;
    margin-right: 5px;
  }
  .feature-icon.custom-checkbox {
    width: 14px;
    height: 14px;
    border-width: 1px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 350px;
  }
  .pricing-card {
    width: 100%;
    max-width: 350px;
    padding: 20px;
  }
  .card-plan-name {
    font-size: 1.6em;
  }
  .feature-icon {
    font-size: 1.1em;
    margin-right: 8px;
  }
  .feature-icon.custom-checkbox {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}
//
