/*--------------------------------------------------------------
# BOOTSTRAP VARIABLE OVERRIDES
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto",  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";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --primary-color: #210a72;
  --primary-color-rgb: 33,10,114;
  --accent-color: #0b91da; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-rbg: 11,145,218;
  --accent-color2: #00c6e0; /* use this for darker backgrounds - lighter than accent-color */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0b91da; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0b91da; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
  --background-color: #f3f3f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #210a72;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #0b91da;
  --accent-color:#0b91da;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# MISC STYLES & BOOTSTRAP OVERRIDES
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size:1.15rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight:700;
}
h1,.h1 { font-size:3.5rem; font-weight:700; }
h2,.h2 { font-size:3rem; font-weight:700; }
h3,.h3 { font-size:2.5rem; font-weight:700; }
h4,.h4 { font-size:2rem; font-weight:700; }
h5,.h5 { font-size:1.75rem; font-weight:700; }
h6,.h6 { font-size:1.5rem; font-weight:700; }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 15px 25px 13px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 44px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 20px;
  margin: 0 0 0 30px;
  transition: 0.3s;
  border-radius:10px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1199px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width:574px) {
	.header .logo img {
		max-height:34px;
	}
	.header .btn-getstarted {
		font-size:14px;
	}
}

@media (max-width:439px) {
	.header .logo img {
		max-height:24px;
	}
}


/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: var(--primary-color);
  font-size: 14px;
  position: relative;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}



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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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


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


/*--------------------------------------------------------------
# Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom:100px;
  background-image: url('../img/server-bg.webp');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain; 
  background-color: var(--primary-color);
  color:#fff;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color:#fff;
}

.accent-text {
  color: var(--accent-color);
}
.hero .hero-content h1 .accent-text {
  color: var(--accent-color2);
}

@media (max-width:1399px) {
	.hero { background-blend-mode:lighten; }
}

@media (max-width:1199px) {
	.hero { 
		background-size:cover; 
		background-blend-mode:soft-light;
	}
}

@media (max-width: 991px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 574px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color2), transparent 85%);
  border-radius: 10px;
  color: var(--accent-color2);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.header .btn-getstarted,
.header .btn-getstarted:focus,
.btn-primary,
.hero .btn-primary,
.call-to-action .btn-cta,
.call-to-action-2 .btn-cta {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color); 
  font-weight: 500;
  transition: all 0.3s ease;
  background-image: linear-gradient(to bottom right, var(--accent-color), var(--accent-color2));
  text-shadow:1px 1px 4px rgba(var(--primary-color-rgb),.5);
}

.header .btn-getstarted:hover,
.header .bnt-getstarted:focus:hover,
.btn-primary:hover,
.hero .btn-primary:hover,
.call-to-action .btn-cta:hover,
.call-to-action-2 .btn-cta:hover {
  background-color:var(--accent-color);
  border-color:var(--accent-color);
  color:var(--contrast-color);
  text-shadow:1px 1px 4px rgba(0,0,0,.75);
  background-image:none;
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color2), transparent 85%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color2);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color2);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color:var(--accent-color2);
}

.hero .stat-item .stat-content p {
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}

@media (min-width:768px) and (max-width:991px) {
	.hero .stat-item .stat-icon { display:none; }
}

@media (max-width: 574px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}


/*--------------------------------------------------------------
# BENEFITS
--------------------------------------------------------------*/
.benefits h2 {
  color:#000;
}

.benefits .feature-item .feature-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.benefits .feature-item .feature-icon i {
  font-size: 40px;
  color: #fff;
}

.benefits .feature-item .feature-content h3 {
  font-weight: 600;
  font-size:2.25rem;
  margin-bottom: 10px;
  color:var(--primary-color);
}

.benefits .feature-item .feature-content p {
  margin-bottom: 0;
}

.benefits .servers {
  position: relative;
  padding: 30px 0;
}

.benefits .servers img {
  height: auto;
}

@media (max-width: 991px) {
  .benefits .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .benefits .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .benefits .phone-mockup {
    margin: 3rem 0;
  }
}


/*--------------------------------------------------------------
# SERVICES
--------------------------------------------------------------*/
.services {
  background-color:var(--primary-color);
  background-image:url('../img/clustering-bg2.webp');
  background-repeat:no-repeat;
  background-position:top left;
}

.services h2 { 
	color:#fff; 
}

.services .accent-text { color:var(--accent-color2); }

.services .service-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  background:var(--accent-color);
}

.services .service-card:hover .icon {
  background: var(--primary-color);
  color: #fff;
}

.services .service-card:hover p {
	color:#fff;
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, #fff, transparent 25%);
}

.services .service-card .icon {
  width: 66px;
  height: 66px;
  margin-right: 30px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #fff;
  font-size: 40px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color:var(--primary-color);
}

.services .service-card p {
  margin-bottom: 25px;
  margin-top:10px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

.services .services-intro { text-align:left; }

@media (max-width:991px) {
	.services .services-intro { text-align:center; }
}


/*--------------------------------------------------------------
# PRICING
--------------------------------------------------------------*/
.table { 
  border-radius:20px; 
  box-shadow:2px 2px 8px rgba(var(--primary-color-rgb),.05);
  margin-top:20px; 
  margin-bottom:10px;
}
.table th { border-bottom:none; }
.table th,
.table td { min-height:62px; }
.table th:first-child {  background-color:rgba(var(--accent-color-rbg),.3); }
.table th:last-child { background-color:#ccc; }
.table th.mxmtch-col { 
  background-color:var(--primary-color); 
  padding:0;
}
.table th.mxmtch-col div {
  margin-top:-50px;
  height:110px;
  border-radius:20px 20px 0 0;
  padding-top:30px;
  background-image: linear-gradient(to bottom right, var(--primary-color), #000);
}
.table td.mxmtch-col,
.table tr:last-child td.mxmtch-col div { 
  background-color:var(--accent-color); 
  background-image: linear-gradient(to bottom right, var(--accent-color2), var(--accent-color));
  color:#fff;
}
.table td.mxmtch-col { 
  border-bottom:1px solid rgba(var(--primary-color-rgb),.25); 
  text-shadow:1px 1px 4px rgba(var(--primary-color-rgb),.5);
}
.table tr:last-child td.mxmtch-col { padding:0; }
.table tr:last-child td.mxmtch-col div {
  margin-bottom:-20px;
  background-color:var(--accent-color); 
  background-image: linear-gradient(to bottom right, var(--accent-color2), var(--accent-color));
  height:80px;
  border-radius:0 0 20px 20px;
  padding-top:25px;
}
.table th.mxmtch-col img { max-width:200px; }
.table>:not(caption)>*>* {
  padding:1rem 2rem;
  vertical-align:middle;
}
.table tr:first-child th:first-child { border-top-left-radius:20px; }
.table tr:first-child th:last-child { border-top-right-radius:20px; }
.table tr:last-child td:first-child { border-bottom-left-radius:20px; }
.table tr:last-child td:last-child { border-bottom-right-radius:20px; }
.table tr:last-child td { border-bottom:none; }

.btn { 
	border-radius:10px; 
	padding:0.75rem 2.5rem;
}

.text-left { text-align:left; }
.list-group-item.list-group-item-plain {
  padding:0.5rem 0;
  border:none;
}
.list-group-item-action.list-group-item-plain:focus,
.list-group-item-action.list-group-item-plain:hover {
  background-color:rgba(0,0,0,0);
}

@media (max-width:991px) {
	.table tbody { font-size:16px; }
	.table tr:last-child td.mxmtch-col div {
		margin-bottom:-30px;
		padding-top:15px;
	}
	.table th.mxmtch-col img { max-width:175px; }
}

@media (max-width:767px) {
	.table>:not(caption)>*>* { padding:1rem; }
	.table th.mxmtch-col img { max-width:125px; }
}

@media (max-width:574px) {
	.table tbody { font-size:15px; }
	.table th.mxmtch-col img { max-width:100px; }
}

@media (max-width:468px) {
	.table tbody { font-size:14px; }
	.table th.mxmtch-col img { max-width:80px; }
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--primary-color);
  background-image: linear-gradient(to bottom right, var(--primary-color), #000);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 574px) {
  .call-to-action .container {
    border-radius: 0;
  }
}


/*--------------------------------------------------------------
# FEATURES
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 467px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.features .tab-pane ul li {
  padding-top: 10px;
}

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

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

@media (max-width:991px) {
	.features .tab-pane .img-fluid { max-width:450px; }
}

@media (max-width:767px) {
	.features .tab-pane .img-fluid { max-width:400px; }
}

@media (max-width:574px) {
	.features .tab-pane .img-fluid { max-width:300px; }
}


/*--------------------------------------------------------------
# CTA 2
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
  background-image: linear-gradient(to bottom right, var(--primary-color), #000);
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .btn-cta {
  color: #fff;
}

.call-to-action-2 .btn-cta:hover {
  color: #fff;
}


/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  background-image: linear-gradient(to bottom right, var(--primary-color), var(--accent-color));
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/*--------------------------------------------------------------
# PRIVACY POLICY
--------------------------------------------------------------*/
#privacy-policy p {
  margin-bottom:1.25rem;
}

#privacy-policy ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

#privacy-policy ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#privacy-policy ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# MISC
--------------------------------------------------------------*/
.modal-cta { cursor: pointer; }